Skip to content

Commit

Permalink
Merge pull request #13 from secynic/dev
Browse files Browse the repository at this point in the history
0.1.9
  • Loading branch information
secynic committed Sep 18, 2013
2 parents dad0c04 + 81fee6a commit 21ed668
Show file tree
Hide file tree
Showing 7 changed files with 227 additions and 166 deletions.
10 changes: 10 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Changelog
=========

0.1.9 (2013-09-18)
------------------

- Added exceptions to import in __init__.py.
- Added IPWhois.__repr__().
- Moved exceptions to get_*() functions.
- Added exception HostLookupError.
- Various optimizations.
- Added some unit tests.

0.1.8 (2013-09-17)
------------------

Expand Down
6 changes: 4 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
ipwhois
=======

ipwhois is a simple package for retrieving and parsing whois data for IPv4 and IPv6 addresses. This code was quickly thrown together to demonstrate functionality, and is by no means optimized or fully featured.
ipwhois is a simple package for retrieving and parsing whois data for IPv4 and IPv6 addresses.

This version requires Python 3.3+ (for the ipaddress library) and dnspython3. Other Python version support is planned.
The various NICs are pretty inconsistent with formatting Whois results and the information contained within. I am still working through how to parse some of these fields in to standard dictionary keys.

This version requires Python 3.3+ (for the ipaddress library) and dnspython3.

Usage Examples
==============
Expand Down
4 changes: 2 additions & 2 deletions ipwhois/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

__version__ = '0.1.8'
__version__ = '0.1.9'

from .ipwhois import IPWhois
from .ipwhois import IPWhois, IPDefinedError, ASNLookupError, WhoisLookupError, HostLookupError
Loading

0 comments on commit 21ed668

Please sign in to comment.