quantaroute-geocoding 1.0.1__tar.gz → 1.0.2__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 (19) hide show
  1. {quantaroute_geocoding-1.0.1/quantaroute_geocoding.egg-info → quantaroute_geocoding-1.0.2}/PKG-INFO +1 -1
  2. {quantaroute_geocoding-1.0.1 → quantaroute_geocoding-1.0.2}/pyproject.toml +1 -1
  3. {quantaroute_geocoding-1.0.1 → quantaroute_geocoding-1.0.2}/quantaroute_geocoding/__init__.py +1 -1
  4. {quantaroute_geocoding-1.0.1 → quantaroute_geocoding-1.0.2}/quantaroute_geocoding/offline.py +2 -2
  5. {quantaroute_geocoding-1.0.1 → quantaroute_geocoding-1.0.2/quantaroute_geocoding.egg-info}/PKG-INFO +1 -1
  6. {quantaroute_geocoding-1.0.1 → quantaroute_geocoding-1.0.2}/setup.py +1 -1
  7. {quantaroute_geocoding-1.0.1 → quantaroute_geocoding-1.0.2}/LICENSE +0 -0
  8. {quantaroute_geocoding-1.0.1 → quantaroute_geocoding-1.0.2}/MANIFEST.in +0 -0
  9. {quantaroute_geocoding-1.0.1 → quantaroute_geocoding-1.0.2}/README.md +0 -0
  10. {quantaroute_geocoding-1.0.1 → quantaroute_geocoding-1.0.2}/quantaroute_geocoding/cli.py +0 -0
  11. {quantaroute_geocoding-1.0.1 → quantaroute_geocoding-1.0.2}/quantaroute_geocoding/client.py +0 -0
  12. {quantaroute_geocoding-1.0.1 → quantaroute_geocoding-1.0.2}/quantaroute_geocoding/csv_processor.py +0 -0
  13. {quantaroute_geocoding-1.0.1 → quantaroute_geocoding-1.0.2}/quantaroute_geocoding/exceptions.py +0 -0
  14. {quantaroute_geocoding-1.0.1 → quantaroute_geocoding-1.0.2}/quantaroute_geocoding.egg-info/SOURCES.txt +0 -0
  15. {quantaroute_geocoding-1.0.1 → quantaroute_geocoding-1.0.2}/quantaroute_geocoding.egg-info/dependency_links.txt +0 -0
  16. {quantaroute_geocoding-1.0.1 → quantaroute_geocoding-1.0.2}/quantaroute_geocoding.egg-info/entry_points.txt +0 -0
  17. {quantaroute_geocoding-1.0.1 → quantaroute_geocoding-1.0.2}/quantaroute_geocoding.egg-info/requires.txt +0 -0
  18. {quantaroute_geocoding-1.0.1 → quantaroute_geocoding-1.0.2}/quantaroute_geocoding.egg-info/top_level.txt +0 -0
  19. {quantaroute_geocoding-1.0.1 → quantaroute_geocoding-1.0.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: quantaroute-geocoding
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Python SDK for QuantaRoute Geocoding API with offline DigiPin processing
5
5
  Home-page: https://github.com/quantaroute/quantaroute-geocoding-python
6
6
  Author: QuantaRoute
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "quantaroute-geocoding"
7
- version = "1.0.1"
7
+ version = "1.0.2"
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.1"
8
+ __version__ = "1.0.2"
9
9
  __author__ = "QuantaRoute"
10
10
  __email__ = "support@quantaroute.com"
11
11
 
@@ -88,8 +88,8 @@ class OfflineProcessor:
88
88
  return {
89
89
  'digipin': digipin_code.strip(),
90
90
  'coordinates': {
91
- 'latitude': result.latitude,
92
- 'longitude': result.longitude
91
+ 'latitude': result[0],
92
+ 'longitude': result[1]
93
93
  },
94
94
  'source': 'offline'
95
95
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: quantaroute-geocoding
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Python SDK for QuantaRoute Geocoding API with offline DigiPin processing
5
5
  Home-page: https://github.com/quantaroute/quantaroute-geocoding-python
6
6
  Author: QuantaRoute
@@ -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.1",
8
+ version="1.0.2",
9
9
  author="QuantaRoute",
10
10
  author_email="support@quantaroute.com",
11
11
  description="Python SDK for QuantaRoute Geocoding API with offline DigiPin processing",