quantaroute-geocoding 1.0.4__tar.gz → 1.0.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of quantaroute-geocoding might be problematic. Click here for more details.
- {quantaroute_geocoding-1.0.4/quantaroute_geocoding.egg-info → quantaroute_geocoding-1.0.5}/PKG-INFO +18 -3
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/README.md +17 -2
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/pyproject.toml +1 -1
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding/__init__.py +1 -1
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5/quantaroute_geocoding.egg-info}/PKG-INFO +18 -3
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/setup.py +1 -1
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/LICENSE +0 -0
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/MANIFEST.in +0 -0
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/examples/README.md +0 -0
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/examples/basic_usage.py +0 -0
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/examples/batch_location_lookup.py +0 -0
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/examples/location_lookup_demo.py +0 -0
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding/cli.py +0 -0
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding/client.py +0 -0
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding/csv_processor.py +0 -0
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding/exceptions.py +0 -0
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding/location_lookup.py +0 -0
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding/offline.py +0 -0
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding.egg-info/SOURCES.txt +0 -0
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding.egg-info/dependency_links.txt +0 -0
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding.egg-info/entry_points.txt +0 -0
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding.egg-info/requires.txt +0 -0
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding.egg-info/top_level.txt +0 -0
- {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/setup.cfg +0 -0
{quantaroute_geocoding-1.0.4/quantaroute_geocoding.egg-info → quantaroute_geocoding-1.0.5}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quantaroute-geocoding
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.5
|
|
4
4
|
Summary: Revolutionary Python SDK for QuantaRoute Geocoding API with Location Lookup and offline DigiPin processing
|
|
5
5
|
Home-page: https://github.com/quantaroute/quantaroute-geocoding-python
|
|
6
6
|
Author: QuantaRoute
|
|
@@ -70,6 +70,21 @@ A **revolutionary** Python library for geocoding addresses to DigiPin codes with
|
|
|
70
70
|
pip install quantaroute-geocoding
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
+
## Upgrade
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
pip install --upgrade quantaroute-geocoding
|
|
77
|
+
or
|
|
78
|
+
pip install quantaroute-geocoding==<version>
|
|
79
|
+
or
|
|
80
|
+
pip install --force-reinstall quantaroute-geocoding==1.0.3
|
|
81
|
+
or
|
|
82
|
+
pip cache purge
|
|
83
|
+
pip install --upgrade quantaroute-geocoding
|
|
84
|
+
or
|
|
85
|
+
pip install --no-cache-dir --upgrade quantaroute-geocoding
|
|
86
|
+
```
|
|
87
|
+
|
|
73
88
|
For offline DigiPin processing, also install the official DigiPin library:
|
|
74
89
|
|
|
75
90
|
```bash
|
|
@@ -104,8 +119,8 @@ print(f"Locality: {result['administrative_info']['locality']}")
|
|
|
104
119
|
|
|
105
120
|
# 📊 Get live statistics (36,000+ boundaries)
|
|
106
121
|
stats = client.get_location_statistics()
|
|
107
|
-
print(f"Total Boundaries: {stats['
|
|
108
|
-
print(f"Total States: {stats['
|
|
122
|
+
print(f"Total Boundaries: {stats['totalBoundaries']:,}")
|
|
123
|
+
print(f"Total States: {stats['totalStates']}")
|
|
109
124
|
```
|
|
110
125
|
|
|
111
126
|
### 🌟 **Traditional Geocoding API**
|
|
@@ -26,6 +26,21 @@ A **revolutionary** Python library for geocoding addresses to DigiPin codes with
|
|
|
26
26
|
pip install quantaroute-geocoding
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
+
## Upgrade
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pip install --upgrade quantaroute-geocoding
|
|
33
|
+
or
|
|
34
|
+
pip install quantaroute-geocoding==<version>
|
|
35
|
+
or
|
|
36
|
+
pip install --force-reinstall quantaroute-geocoding==1.0.3
|
|
37
|
+
or
|
|
38
|
+
pip cache purge
|
|
39
|
+
pip install --upgrade quantaroute-geocoding
|
|
40
|
+
or
|
|
41
|
+
pip install --no-cache-dir --upgrade quantaroute-geocoding
|
|
42
|
+
```
|
|
43
|
+
|
|
29
44
|
For offline DigiPin processing, also install the official DigiPin library:
|
|
30
45
|
|
|
31
46
|
```bash
|
|
@@ -60,8 +75,8 @@ print(f"Locality: {result['administrative_info']['locality']}")
|
|
|
60
75
|
|
|
61
76
|
# 📊 Get live statistics (36,000+ boundaries)
|
|
62
77
|
stats = client.get_location_statistics()
|
|
63
|
-
print(f"Total Boundaries: {stats['
|
|
64
|
-
print(f"Total States: {stats['
|
|
78
|
+
print(f"Total Boundaries: {stats['totalBoundaries']:,}")
|
|
79
|
+
print(f"Total States: {stats['totalStates']}")
|
|
65
80
|
```
|
|
66
81
|
|
|
67
82
|
### 🌟 **Traditional Geocoding API**
|
{quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5/quantaroute_geocoding.egg-info}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quantaroute-geocoding
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.5
|
|
4
4
|
Summary: Revolutionary Python SDK for QuantaRoute Geocoding API with Location Lookup and offline DigiPin processing
|
|
5
5
|
Home-page: https://github.com/quantaroute/quantaroute-geocoding-python
|
|
6
6
|
Author: QuantaRoute
|
|
@@ -70,6 +70,21 @@ A **revolutionary** Python library for geocoding addresses to DigiPin codes with
|
|
|
70
70
|
pip install quantaroute-geocoding
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
+
## Upgrade
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
pip install --upgrade quantaroute-geocoding
|
|
77
|
+
or
|
|
78
|
+
pip install quantaroute-geocoding==<version>
|
|
79
|
+
or
|
|
80
|
+
pip install --force-reinstall quantaroute-geocoding==1.0.3
|
|
81
|
+
or
|
|
82
|
+
pip cache purge
|
|
83
|
+
pip install --upgrade quantaroute-geocoding
|
|
84
|
+
or
|
|
85
|
+
pip install --no-cache-dir --upgrade quantaroute-geocoding
|
|
86
|
+
```
|
|
87
|
+
|
|
73
88
|
For offline DigiPin processing, also install the official DigiPin library:
|
|
74
89
|
|
|
75
90
|
```bash
|
|
@@ -104,8 +119,8 @@ print(f"Locality: {result['administrative_info']['locality']}")
|
|
|
104
119
|
|
|
105
120
|
# 📊 Get live statistics (36,000+ boundaries)
|
|
106
121
|
stats = client.get_location_statistics()
|
|
107
|
-
print(f"Total Boundaries: {stats['
|
|
108
|
-
print(f"Total States: {stats['
|
|
122
|
+
print(f"Total Boundaries: {stats['totalBoundaries']:,}")
|
|
123
|
+
print(f"Total States: {stats['totalStates']}")
|
|
109
124
|
```
|
|
110
125
|
|
|
111
126
|
### 🌟 **Traditional Geocoding API**
|
|
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="quantaroute-geocoding",
|
|
8
|
-
version="1.0.
|
|
8
|
+
version="1.0.5",
|
|
9
9
|
author="QuantaRoute",
|
|
10
10
|
author_email="support@quantaroute.com",
|
|
11
11
|
description="Revolutionary Python SDK for QuantaRoute Geocoding API with Location Lookup and offline DigiPin processing",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/examples/batch_location_lookup.py
RENAMED
|
File without changes
|
{quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/examples/location_lookup_demo.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding/csv_processor.py
RENAMED
|
File without changes
|
{quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding/exceptions.py
RENAMED
|
File without changes
|
{quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding/location_lookup.py
RENAMED
|
File without changes
|
{quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding/offline.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|