diff -r fa9650e9ec23 -r 359baebcf0e8 README.rst --- a/README.rst Wed Mar 16 15:08:15 2016 +0100 +++ b/README.rst Wed Mar 16 15:18:36 2016 +0100 @@ -6,7 +6,7 @@ - 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 +- Works with Python 2 & 3 @@ -37,21 +37,34 @@ Install from pypi: -.. sourcecode:: python +.. sourcecode:: bash pip install python-whois Or checkout latest version from repository: -.. sourcecode:: python +.. sourcecode:: bash hg clone https://bitbucket.org/richardpenman/pywhois +Note that then you will need to manually install the futures module, which allows supporting both Python 2 & 3: + + +.. sourcecode:: bash + + pip install futures + + Changelog ========= +0.6 - 2015-03-02: + +* support added for python 3 +* updated TLD list + 0.5 - 2015-09-05: * added native client, which now handles whois requests by default