equal
deleted
inserted
replaced
4 - Create a simple importable Python module which will produce parsed |
4 - Create a simple importable Python module which will produce parsed |
5 WHOIS data for a given domain. |
5 WHOIS data for a given domain. |
6 - Able to extract data for all the popular TLDs (com, org, net, ...) |
6 - Able to extract data for all the popular TLDs (com, org, net, ...) |
7 - Query a WHOIS server directly instead of going through an |
7 - Query a WHOIS server directly instead of going through an |
8 intermediate web service like many others do. |
8 intermediate web service like many others do. |
9 - Works with Python 2.4+ and no external dependencies |
9 - Works with Python 2 and 3 |
10 |
10 |
11 |
11 |
12 |
12 |
13 Example |
13 Example |
14 ======= |
14 ======= |
45 |
45 |
46 .. sourcecode:: python |
46 .. sourcecode:: python |
47 |
47 |
48 hg clone https://bitbucket.org/richardpenman/pywhois |
48 hg clone https://bitbucket.org/richardpenman/pywhois |
49 |
49 |
|
50 Note that then you will need to manually install the futures module: |
|
51 |
|
52 |
|
53 .. sourcecode:: bash |
|
54 |
|
55 pip install futures |
|
56 |
|
57 |
50 |
58 |
51 |
59 |
52 Changelog |
60 Changelog |
53 ========= |
61 ========= |
54 |
62 |