Skip to content

Commit

Permalink
Tested with Python 3.12
Browse files Browse the repository at this point in the history
- Updated setup.py for the version number and Python 3.12 compatibility.
- Added gitignore file.
  • Loading branch information
ip2location committed Sep 27, 2024
1 parent a6fe3c2 commit fb7d766
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 2 deletions.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.idea/
.vscode/
.venv*/
venv*/
__pycache__/
dist/
.coverage*
htmlcov/
.tox/
docs/_build/
*.egg-info
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
3.4.1 2024-09-27
* Tested with Python 3.12.

3.4.0 2022-06-23
* Reduced file I/O.

Expand Down
2 changes: 1 addition & 1 deletion PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: IP2Proxy
Version: 3.4.0
Version: 3.4.1
Summary: Python API for IP2Proxy database
Home-page: http://www.ip2location.com
Author: IP2Location
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# IP2Proxy Python Library

![PyPI](https://img.shields.io/pypi/v/IP2Proxy)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/IP2Proxy)
![PyPI - Downloads](https://img.shields.io/pypi/dm/IP2Proxy)

This library allows user to query an IP address if it was being used as VPN servers, open proxies, web proxies, Tor exit nodes, search engine robots, data center ranges, residential proxies, consumer privacy networks, and enterprise private networks. It lookup the proxy IP address from **IP2Proxy BIN Data** file. This data file can be downloaded at

* Free IP2Proxy BIN Data: https://lite.ip2location.com
Expand Down
4 changes: 4 additions & 0 deletions docs/source/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# IP2Proxy Python Library

![PyPI](https://img.shields.io/pypi/v/IP2Proxy)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/IP2Proxy)
![PyPI - Downloads](https://img.shields.io/pypi/dm/IP2Proxy)

This library allows user to query an IP address if it was being used as VPN servers, open proxies, web proxies, Tor exit nodes, search engine robots, data center ranges, residential proxies, consumer privacy networks, and enterprise private networks. It lookup the proxy IP address from **IP2Proxy BIN Data** file. This data file can be downloaded at

* Free IP2Proxy BIN Data: https://lite.ip2location.com
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="IP2Proxy",
version="3.4.0",
version="3.4.1",
author="IP2Location",
author_email="support@ip2location.com",
description="Python API for IP2Proxy database. It can be used to query an IP address if it was being used as open proxy, web proxy, VPN anonymizer and TOR exits.",
Expand All @@ -27,6 +27,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
Expand Down

0 comments on commit fb7d766

Please sign in to comment.