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.

Files changed (24) hide show
  1. {quantaroute_geocoding-1.0.4/quantaroute_geocoding.egg-info → quantaroute_geocoding-1.0.5}/PKG-INFO +18 -3
  2. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/README.md +17 -2
  3. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/pyproject.toml +1 -1
  4. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding/__init__.py +1 -1
  5. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5/quantaroute_geocoding.egg-info}/PKG-INFO +18 -3
  6. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/setup.py +1 -1
  7. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/LICENSE +0 -0
  8. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/MANIFEST.in +0 -0
  9. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/examples/README.md +0 -0
  10. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/examples/basic_usage.py +0 -0
  11. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/examples/batch_location_lookup.py +0 -0
  12. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/examples/location_lookup_demo.py +0 -0
  13. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding/cli.py +0 -0
  14. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding/client.py +0 -0
  15. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding/csv_processor.py +0 -0
  16. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding/exceptions.py +0 -0
  17. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding/location_lookup.py +0 -0
  18. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding/offline.py +0 -0
  19. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding.egg-info/SOURCES.txt +0 -0
  20. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding.egg-info/dependency_links.txt +0 -0
  21. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding.egg-info/entry_points.txt +0 -0
  22. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding.egg-info/requires.txt +0 -0
  23. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/quantaroute_geocoding.egg-info/top_level.txt +0 -0
  24. {quantaroute_geocoding-1.0.4 → quantaroute_geocoding-1.0.5}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: quantaroute-geocoding
3
- Version: 1.0.4
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['total_boundaries']:,}")
108
- print(f"Total States: {stats['total_states']}")
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['total_boundaries']:,}")
64
- print(f"Total States: {stats['total_states']}")
78
+ print(f"Total Boundaries: {stats['totalBoundaries']:,}")
79
+ print(f"Total States: {stats['totalStates']}")
65
80
  ```
66
81
 
67
82
  ### 🌟 **Traditional Geocoding API**
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "quantaroute-geocoding"
7
- version = "1.0.4"
7
+ version = "1.0.5"
8
8
  authors = [
9
9
  {name = "QuantaRoute", email = "support@quantaroute.com"},
10
10
  ]
@@ -5,7 +5,7 @@ A Python library for geocoding addresses to DigiPin codes with both online API
5
5
  and offline processing capabilities.
6
6
  """
7
7
 
8
- __version__ = "1.0.4"
8
+ __version__ = "1.0.5"
9
9
  __author__ = "QuantaRoute"
10
10
  __email__ = "support@quantaroute.com"
11
11
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: quantaroute-geocoding
3
- Version: 1.0.4
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['total_boundaries']:,}")
108
- print(f"Total States: {stats['total_states']}")
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.4",
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",