# HG changeset patch # User Richard Penman # Date 1439439263 -28800 # Node ID bc23472ae2840b8098fec7df32f5b2f55b9c561d # Parent 7636ed3adf862e319ee59d91447831757075093c converted README from markdown to RST for pypi diff -r 7636ed3adf86 -r bc23472ae284 MANIFEST.in --- a/MANIFEST.in Wed Aug 12 14:14:01 2015 +0800 +++ b/MANIFEST.in Thu Aug 13 12:14:23 2015 +0800 @@ -1,1 +1,2 @@ include whois/data/tlds.txt +include README.rst diff -r 7636ed3adf86 -r bc23472ae284 README.md --- a/README.md Wed Aug 12 14:14:01 2015 +0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,56 +0,0 @@ -# Goal # - * Create a simple importable Python module which will produce parsed WHOIS data for a given domain. - * Able to extract data for all the popular TLDs (com, org, net, ...) - * Query a WHOIS server directly instead of going through an intermediate web service like many others do. - * Works with Python 2.4+ and no external dependencies - - -# Example # - - -``` -#!python - ->>> import whois ->>> w = whois.whois('webscraping.com') ->>> w.expiration_date # dates converted to datetime object -datetime.datetime(2013, 6, 26, 0, 0) ->>> w.text # the content downloaded from whois server -u'\nWhois Server Version 2.0\n\nDomain names in the .com and .net -...' - ->>> print w # print values of all found attributes -creation_date: 2004-06-26 00:00:00 -domain_name: [u'WEBSCRAPING.COM', u'WEBSCRAPING.COM'] -emails: [u'WEBSCRAPING.COM@domainsbyproxy.com', u'WEBSCRAPING.COM@domainsbyproxy.com'] -expiration_date: 2013-06-26 00:00:00 -... - -``` - - - -# Install # -Install from pypi: - - -``` -#!python - -pip install python-whois - -``` - -Or checkout latest version from repository: - -``` -#!python - -hg clone https://code.google.com/p/pywhois/ - -``` - -# Contact # -You can post ideas or patches here: [https://bitbucket.org/richardpenman/pywhois/issues](https://bitbucket.org/richardpenman/pywhois/issues) - -Thanks to the many who have sent patches for additional domains! \ No newline at end of file diff -r 7636ed3adf86 -r bc23472ae284 README.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README.rst Thu Aug 13 12:14:23 2015 +0800 @@ -0,0 +1,52 @@ +Goal +==== + +- Create a simple importable Python module which will produce parsed + WHOIS data for a given domain. +- Able to extract data for all the popular TLDs (com, org, net, ...) +- Query a WHOIS server directly instead of going through an + intermediate web service like many others do. +- Works with Python 2.4+ and no external dependencies + +Example +======= + +.. sourcecode:: python + + >>> import whois + >>> w = whois.whois('webscraping.com') + >>> w.expiration_date # dates converted to datetime object + datetime.datetime(2013, 6, 26, 0, 0) + >>> w.text # the content downloaded from whois server + u'\nWhois Server Version 2.0\n\nDomain names in the .com and .net + ...' + + >>> print w # print values of all found attributes + creation_date: 2004-06-26 00:00:00 + domain_name: [u'WEBSCRAPING.COM', u'WEBSCRAPING.COM'] + emails: [u'WEBSCRAPING.COM@domainsbyproxy.com', u'WEBSCRAPING.COM@domainsbyproxy.com'] + expiration_date: 2013-06-26 00:00:00 + ... + +Install +======= + +Install from pypi: + +.. sourcecode:: python + + pip install python-whois + +Or checkout latest version from repository: + +.. sourcecode:: python + + hg clone https://bitbucket.org/richardpenman/pywhois + +Contact +======= + +You can post ideas or patches here: +https://bitbucket.org/richardpenman/pywhois/issues + +Thanks to the many who have sent patches for additional domains! diff -r 7636ed3adf86 -r bc23472ae284 setup.py --- a/setup.py Wed Aug 12 14:14:01 2015 +0800 +++ b/setup.py Thu Aug 13 12:14:23 2015 +0800 @@ -1,7 +1,7 @@ import sys, os import setuptools -version = '0.3.1' +version = '0.4' setuptools.setup( name='python-whois',