Codebase list ipy / c2d0ca4
Imported Upstream version 0.83 SVN-Git Migration 8 years ago
4 changed file(s) with 12 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
0 Version 0.83 (2015-04-04)
1 ------------
2 * Add carrier grade NAT ranges
3 * Unbreak lots of packing systems by not having a letter in the release version
4
05 Version 0.82a (2014-10-07)
16 ------------
27 * Fix version numbers in files
55 https://github.com/haypo/python-ipy
66 """
77
8 __version__ = '0.82a'
8 __version__ = '0.83'
99
1010 import bisect
1111 import collections
1919 '0': 'PUBLIC', # fall back
2020 '00000000': 'PRIVATE', # 0/8
2121 '00001010': 'PRIVATE', # 10/8
22 '0110010001': 'CARRIER_GRADE_NAT', #100.64/10
2223 '01111111': 'PRIVATE', # 127.0/8
2324 '1': 'PUBLIC', # fall back
2425 '1010100111111110': 'PRIVATE', # 169.254/16
00 IPy - class and tools for handling of IPv4 and IPv6 addresses and networks.
11
2 Website: https://github.com/haypo/python-ipy/
2 Website: https://github.com/autocracy/python-ipy/
33
44 Presentation of the API
55 =======================
168168 Compatibility and links
169169 =======================
170170
171 IPy 0.82a works on Python version 2.6 - 3.4.
171 IPy 0.83 works on Python version 2.6 - 3.4.
172172
173173 The IP module should work in Python 2.5 as long as the subtraction operation
174174 is not used. IPSet requires features of the collecitons class which appear
188188 This Python module is under BSD license: see COPYING file.
189189
190190 Further Information might be available at:
191 https://github.com/haypo/python-ipy
191 https://github.com/autocracy/python-ipy
2323 import sys
2424 from distutils.core import setup
2525
26 VERSION = '0.82a'
26 VERSION = '0.83'
2727
2828 options = {}
2929
5353 'Programming Language :: Python',
5454 'Programming Language :: Python :: 3',
5555 ]
56 URL = "https://github.com/haypo/python-ipy"
56 URL = "https://github.com/autocracy/python-ipy"
5757
5858 setup(
5959 name="IPy",