/usr/lib/python3/dist-packages/cymruwhois-1.6.egg-info/PKG-INFO is in python3-cymruwhois 1.6-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | Metadata-Version: 1.1
Name: cymruwhois
Version: 1.6
Summary: Client for the whois.cymru.com service
Home-page: http://packages.python.org/cymruwhois/
Author: Justin Azoff
Author-email: justin@bouncybouncy.net
License: MIT
Download-URL: http://github.com/JustinAzoff/python-cymruwhois/tree/master
Description-Content-Type: UNKNOWN
Description:
Perform lookups by ip address and return ASN, Country Code, and Netblock Owner::
>>> import socket
>>> ip = socket.gethostbyname("www.google.com")
>>> from cymruwhois import Client
>>> c=Client()
>>> r=c.lookup(ip)
>>> print r.asn
15169
>>> print r.owner
GOOGLE - Google Inc.
Keywords: ASN
Platform: UNKNOWN
Classifier: Topic :: System :: Networking
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Development Status :: 5 - Production/Stable
|