jageocoder


Namejageocoder JSON
Version 2.1.6.post1 PyPI version JSON
download
home_pagehttps://github.com/t-sagara/jageocoder/
SummaryA Japanese-address geocoder for Python.
upload_time2024-05-08 05:47:14
maintainerNone
docs_urlNone
authorTakeshi Sagara
requires_python<4.0,>=3.7
licenseThe MIT License
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Jageocoder - A Python Japanese geocoder

日本語版は README_ja.md をお読みください。

This is a Python port of the Japanese-address geocoder `DAMS` used in CSIS at the University of Tokyo's ["Address Matching Service"](https://newspat.csis.u-tokyo.ac.jp/geocode/modules/addmatch/index.php?content_id=1) and [GSI Maps](https://maps.gsi.go.jp/).

# Getting Started

This package provides address-geocoding functionality for Python programs. The basic usage is to specify a dictionary with `init()` then call `search()` to get geocoding results.

```python
>>> import jageocoder
>>> jageocoder.init(url='https://jageocoder.info-proto.com/jsonrpc')
>>> jageocoder.search('新宿区西新宿2-8-1')
{'matched': '新宿区西新宿2-8-', 'candidates': [{'id': 5961406, 'name': '8番', 'x': 139.691778, 'y': 35.689627, 'level': 7, 'note': None, 'fullname': ['東京都', '新宿区', '西新宿', '二丁目', '8番']}]}
```

# How to install

## Prerequisites

Requires Python 3.7.x or later.

All other required packages will be installed automatically.

## Install instructions

- Install the package with `pip install jageocoder`

To use Jageocoder, you need to install the "Dictionary Database" on the same machine or connect to the RPC service provided by [jageocoder-server](https://t-sagara.github.io/jageocoder/server/) .

### Install Dictionary Database

Large amounts of data can be processed at high speed when a dictionary database is installed. A database covering addresses in Japan requires 30 GB or more of storage.

- Download an address database file compatible with that version from [here](https://www.info-proto.com/static/jageocoder/latest/v2/)

      wget https://www.info-proto.com/static/jageocoder/latest/v2/jukyo_all_v21.zip 

- Install the dictionary with `install-dictionary` command

      jageocoder install-dictionary jukyo_all_v21.zip

If you need to know the location of the dictionary directory,
perform `get-db-dir` command as follows. (Or call
`jageocoder.get_db_dir()` in your script)

```bash
jageocoder get-db-dir
```

If you prefer to create the database in another location, set the environment variable `JAGEOCODER_DB2_DIR` before executing `install_dictionary()` to specify the directory.

```bash
export JAGEOCODER_DB2_DIR='/usr/local/share/jageocoder/db2'
install-dictionary <db-file>
```

### Connect to the Jageocoder server

Since dictionary databases are large in size, installing them on multiple machines consumes storage and requires time and effort to update them.
Instead of installing a dictionary database on each machine, you can connect to a Jageocoder server to perform the search process.

If you want to use a server, specify the server endpoint in the environment variable `JAGEOCODER_SERVER_URL`. For a public demonstration server, use the following

```bash
export JAGEOCODER_SERVER_URL=https://jageocoder.info-proto.com/jsonrpc
```

However, the server for public demonstrations cannot withstand the load when accesses are concentrated, so it is limited to one request per second.
If you want to process a large number of requests, please refer to [here](https://t-sagara.github.io/jageocoder/server/) to set up your own Jageocoder server. The endpoint is '/jsonrpc' on the server.

## Uninstall instructions

Remove the directory containing the database, or perform 
`uninstall-dictionary` command as follows.

```bash
jageocoder uninstall-dictionary
```

Then, uninstall the package with `pip` command.

```bash
pip uninstall jageocoder
```

# How to use

## Use from the command line

Jageocoder is intended to be embedded in applications as a library and used by calling the API, but a simple command line interface is also provided.

For example, to geocode an address, execute the following command.

```bash
jageocoder search 新宿区西新宿2-8-1
```

You can check the list of available commands with `--help`.

```bash
jageocoder --help
```

## Using API

First, import jageocoder and initialize it with `init()`.

```python
>>> import jageocoder
>>> jageocoder.init()
```

The parameter `db_dir` of `init()` can be used to specify the directory where the address database is installed. Alternatively, you can specify the endpoint URL of the Jageocoder server with `url`. If it is omitted, the value of the environment variable is used.

### Search for latitude and longitude by address

Use `search()` to search for the address you want to check the longitude and latitude of.

The `search()` function returns a dict with `matched` as
the matched string and `candidates` as the list of search results.
(The results are formatted for better viewing)

Each element of `candidates` contains the information of an address node (AddressNode).

```python
>>> jageocoder.search('新宿区西新宿2-8-1')
{
  'matched': '新宿区西新宿2-8-',
  'candidates': [{
    'id': 12299846, 'name': '8番',
    'x': 139.691778, 'y': 35.689627, 'level': 7, 'note': None,
    'fullname': ['東京都', '新宿区', '西新宿', '二丁目', '8番']
  }]
}
```

The meaning of the items is as follows

- id: ID in the database
- name: Address notation
- x: longitude
- y: latitude
- level: Address level (1:Prefecture, 2:County, 3:City and 23 district,
    4:Ward, 5:Oaza, 6:Aza and Chome, 7:Block, 8:Building)
- note: Notes such as city codes
- fullname: List of address notations from the prefecture level to this node

### Search for addresses by longitude and latitude

You can specify the latitude and longitude of a point and look up the address of that point (so-called reverse geocoding).

When you pass the longitude and latitude of the point you wish to look up to `reverse()`, you can retrieve up to three address nodes surrounding the specified point.

```python
>>> import jageocoder
>>> jageocoder.init()
>>> triangle = jageocoder.reverse(139.6917, 35.6896, level=7)
>>> if len(triangle) > 0:
...     print(triangle[0]['candidate']['fullname'])
...
['東京都', '新宿区', '西新宿', '二丁目', '8番']
```

In the example above, the ``level`` optional parameter is set to 7 to search down to the block (街区・地番) level.

> [!NOTE]
>
> Indexes for reverse geocoding are automatically created the first time you perform reverse geocoding. Note that this process can take a long time.

### Explore the attribute information of an address

Use `searchNode()` to retrieve information about an address.

This function returns a list of type `jageocoder.result.Result` .
You can access the address node from node element of the Result object.

```python
>>> results = jageocoder.searchNode('新宿区西新宿2-8-1')
>>> len(results)
1
>>> results[0].matched
'新宿区西新宿2-8-'
>>> type(results[0].node)
<class 'jageocoder.node.AddressNode'>
>>> node = results[0].node
>>> node.get_fullname()
['東京都', '新宿区', '西新宿', '二丁目', '8番']
```

#### Get GeoJSON representation

You can use the `as_geojson()` method of the Result and AddressNode
objects to obtain the GeoJSON representation.

```python
>>> results[0].as_geojson()
{'type': 'Feature', 'geometry': {'type': 'Point', 'coordinates': [139.691778, 35.689627]}, 'properties': {'id': 12299851, 'name': '8番', 'level': 7, 'note': None, 'fullname': ['東京都', '新宿区', '西新宿', '二丁目', '8番'], 'matched': '新宿区西新宿2-8-'}}
>>> results[0].node.as_geojson()
{'type': 'Feature', 'geometry': {'type': 'Point', 'coordinates': [139.691778, 35.689627]}, 'properties': {'id': 12299851, 'name': '8番', 'level': 7, 'note': None, 'fullname': ['東京都', '新宿区', '西新宿', '二丁目', '8番']}}
```

#### Get the local government codes

There are two types of local government codes: JISX0402 (5-digit) and Local Government Code (6-digit).

You can also obtain the prefecture code JISX0401 (2 digits).

```python
>>> node.get_city_jiscode()  # 5-digit code
'13104'
>>> node.get_city_local_authority_code() # 6-digit code
'131041'
>>> node.get_pref_jiscode()  # prefecture code
'13'
```

#### Get link URLs to maps

Generate URLs to link to GSI and Google maps.

```python
>>> node.get_gsimap_link()
'https://maps.gsi.go.jp/#16/35.689627/139.691778/'
>>> node.get_googlemap_link()
'https://maps.google.com/maps?q=35.689627,139.691778&z=16'
```

#### Traverse the parent node

A "parent node" is a node that represents a level above the address.
Get the node by attribute `parent`.

Now the `node` points to '8番', so the parent node will be '二丁目'.

```python
>>> parent = node.parent
>>> parent.get_fullname()
['東京都', '新宿区', '西新宿', '二丁目']
>>> parent.x, parent.y
(139.691774, 35.68945)
```

#### Traverse the child nodes

A "child node" is a node that represents a level below the address.
Get the node by attribute `children`.

There is one parent node, but there are multiple child nodes.
The actual return is a SQL query object, but it can be looped through
with an iterator or cast to a list.

Now the `parent` points to '二丁目', so the child node will be
the block number (○番) contained therein.

```python
>>> parent.children
<sqlalchemy.orm.dynamic.AppenderQuery object at 0x7fbc08404b38>
>>> [child.name for child in parent.children]
['10番', '11番', '1番', '2番', '3番', '4番', '5番', '6番', '7番', '8番', '9番']
```

## Create your own dictionary

Consider using [jageocoder-converter](https://github.com/t-sagara/jageocoder-converter).

## Contributing

Address notation varies. So suggestions for logic improvements are welcome.
Please submit an issue with examples of address notations in use and how they should be parsed.

## Authors

* **Takeshi SAGARA** - [Info-proto Co.,Ltd.](https://www.info-proto.com/)

## License

This project is licensed under [the MIT License](https://opensource.org/licenses/mit-license.php).

This is not the scope of the dictionary data license. Please follow the license of the respective dictionary data.

## Acknowledgements

We would like to thank CSIS for allowing us to provide address matching services on their institutional website for over 20 years.

We would also like to thank Professor Asanobu Kitamoto of NII for providing us with a large sample of areas using the older address system and for his many help in confirming the results of our analysis.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/t-sagara/jageocoder/",
    "name": "jageocoder",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "Takeshi Sagara",
    "author_email": "sagara@info-proto.com",
    "download_url": "https://files.pythonhosted.org/packages/0a/8f/2500623485012569f10746d03803baf63dfc0ac77e26afc40f981ca53b53/jageocoder-2.1.6.post1.tar.gz",
    "platform": null,
    "description": "# Jageocoder - A Python Japanese geocoder\n\n\u65e5\u672c\u8a9e\u7248\u306f README_ja.md \u3092\u304a\u8aad\u307f\u304f\u3060\u3055\u3044\u3002\n\nThis is a Python port of the Japanese-address geocoder `DAMS` used in CSIS at the University of Tokyo's [\"Address Matching Service\"](https://newspat.csis.u-tokyo.ac.jp/geocode/modules/addmatch/index.php?content_id=1) and [GSI Maps](https://maps.gsi.go.jp/).\n\n# Getting Started\n\nThis package provides address-geocoding functionality for Python programs. The basic usage is to specify a dictionary with `init()` then call `search()` to get geocoding results.\n\n```python\n>>> import jageocoder\n>>> jageocoder.init(url='https://jageocoder.info-proto.com/jsonrpc')\n>>> jageocoder.search('\u65b0\u5bbf\u533a\u897f\u65b0\u5bbf2-8-1')\n{'matched': '\u65b0\u5bbf\u533a\u897f\u65b0\u5bbf2-8-', 'candidates': [{'id': 5961406, 'name': '8\u756a', 'x': 139.691778, 'y': 35.689627, 'level': 7, 'note': None, 'fullname': ['\u6771\u4eac\u90fd', '\u65b0\u5bbf\u533a', '\u897f\u65b0\u5bbf', '\u4e8c\u4e01\u76ee', '8\u756a']}]}\n```\n\n# How to install\n\n## Prerequisites\n\nRequires Python 3.7.x or later.\n\nAll other required packages will be installed automatically.\n\n## Install instructions\n\n- Install the package with `pip install jageocoder`\n\nTo use Jageocoder, you need to install the \"Dictionary Database\" on the same machine or connect to the RPC service provided by [jageocoder-server](https://t-sagara.github.io/jageocoder/server/) .\n\n### Install Dictionary Database\n\nLarge amounts of data can be processed at high speed when a dictionary database is installed. A database covering addresses in Japan requires 30 GB or more of storage.\n\n- Download an address database file compatible with that version from [here](https://www.info-proto.com/static/jageocoder/latest/v2/)\n\n      wget https://www.info-proto.com/static/jageocoder/latest/v2/jukyo_all_v21.zip \n\n- Install the dictionary with `install-dictionary` command\n\n      jageocoder install-dictionary jukyo_all_v21.zip\n\nIf you need to know the location of the dictionary directory,\nperform `get-db-dir` command as follows. (Or call\n`jageocoder.get_db_dir()` in your script)\n\n```bash\njageocoder get-db-dir\n```\n\nIf you prefer to create the database in another location, set the environment variable `JAGEOCODER_DB2_DIR` before executing `install_dictionary()` to specify the directory.\n\n```bash\nexport JAGEOCODER_DB2_DIR='/usr/local/share/jageocoder/db2'\ninstall-dictionary <db-file>\n```\n\n### Connect to the Jageocoder server\n\nSince dictionary databases are large in size, installing them on multiple machines consumes storage and requires time and effort to update them.\nInstead of installing a dictionary database on each machine, you can connect to a Jageocoder server to perform the search process.\n\nIf you want to use a server, specify the server endpoint in the environment variable `JAGEOCODER_SERVER_URL`. For a public demonstration server, use the following\n\n```bash\nexport JAGEOCODER_SERVER_URL=https://jageocoder.info-proto.com/jsonrpc\n```\n\nHowever, the server for public demonstrations cannot withstand the load when accesses are concentrated, so it is limited to one request per second.\nIf you want to process a large number of requests, please refer to [here](https://t-sagara.github.io/jageocoder/server/) to set up your own Jageocoder server. The endpoint is '/jsonrpc' on the server.\n\n## Uninstall instructions\n\nRemove the directory containing the database, or perform \n`uninstall-dictionary` command as follows.\n\n```bash\njageocoder uninstall-dictionary\n```\n\nThen, uninstall the package with `pip` command.\n\n```bash\npip uninstall jageocoder\n```\n\n# How to use\n\n## Use from the command line\n\nJageocoder is intended to be embedded in applications as a library and used by calling the API, but a simple command line interface is also provided.\n\nFor example, to geocode an address, execute the following command.\n\n```bash\njageocoder search \u65b0\u5bbf\u533a\u897f\u65b0\u5bbf\uff12\uff0d\uff18\uff0d\uff11\n```\n\nYou can check the list of available commands with `--help`.\n\n```bash\njageocoder --help\n```\n\n## Using API\n\nFirst, import jageocoder and initialize it with `init()`.\n\n```python\n>>> import jageocoder\n>>> jageocoder.init()\n```\n\nThe parameter `db_dir` of `init()` can be used to specify the directory where the address database is installed. Alternatively, you can specify the endpoint URL of the Jageocoder server with `url`. If it is omitted, the value of the environment variable is used.\n\n### Search for latitude and longitude by address\n\nUse `search()` to search for the address you want to check the longitude and latitude of.\n\nThe `search()` function returns a dict with `matched` as\nthe matched string and `candidates` as the list of search results.\n(The results are formatted for better viewing)\n\nEach element of `candidates` contains the information of an address node (AddressNode).\n\n```python\n>>> jageocoder.search('\u65b0\u5bbf\u533a\u897f\u65b0\u5bbf\uff12\uff0d\uff18\uff0d\uff11')\n{\n  'matched': '\u65b0\u5bbf\u533a\u897f\u65b0\u5bbf\uff12\uff0d\uff18\uff0d',\n  'candidates': [{\n    'id': 12299846, 'name': '8\u756a',\n    'x': 139.691778, 'y': 35.689627, 'level': 7, 'note': None,\n    'fullname': ['\u6771\u4eac\u90fd', '\u65b0\u5bbf\u533a', '\u897f\u65b0\u5bbf', '\u4e8c\u4e01\u76ee', '8\u756a']\n  }]\n}\n```\n\nThe meaning of the items is as follows\n\n- id: ID in the database\n- name: Address notation\n- x: longitude\n- y: latitude\n- level: Address level (1:Prefecture, 2:County, 3:City and 23 district,\n    4:Ward, 5:Oaza, 6:Aza and Chome, 7:Block, 8:Building)\n- note: Notes such as city codes\n- fullname: List of address notations from the prefecture level to this node\n\n### Search for addresses by longitude and latitude\n\nYou can specify the latitude and longitude of a point and look up the address of that point (so-called reverse geocoding).\n\nWhen you pass the longitude and latitude of the point you wish to look up to `reverse()`, you can retrieve up to three address nodes surrounding the specified point.\n\n```python\n>>> import jageocoder\n>>> jageocoder.init()\n>>> triangle = jageocoder.reverse(139.6917, 35.6896, level=7)\n>>> if len(triangle) > 0:\n...     print(triangle[0]['candidate']['fullname'])\n...\n['\u6771\u4eac\u90fd', '\u65b0\u5bbf\u533a', '\u897f\u65b0\u5bbf', '\u4e8c\u4e01\u76ee', '8\u756a']\n```\n\nIn the example above, the ``level`` optional parameter is set to 7 to search down to the block (\u8857\u533a\u30fb\u5730\u756a) level.\n\n> [!NOTE]\n>\n> Indexes for reverse geocoding are automatically created the first time you perform reverse geocoding. Note that this process can take a long time.\n\n### Explore the attribute information of an address\n\nUse `searchNode()` to retrieve information about an address.\n\nThis function returns a list of type `jageocoder.result.Result` .\nYou can access the address node from node element of the Result object.\n\n```python\n>>> results = jageocoder.searchNode('\u65b0\u5bbf\u533a\u897f\u65b0\u5bbf\uff12\uff0d\uff18\uff0d\uff11')\n>>> len(results)\n1\n>>> results[0].matched\n'\u65b0\u5bbf\u533a\u897f\u65b0\u5bbf\uff12\uff0d\uff18\uff0d'\n>>> type(results[0].node)\n<class 'jageocoder.node.AddressNode'>\n>>> node = results[0].node\n>>> node.get_fullname()\n['\u6771\u4eac\u90fd', '\u65b0\u5bbf\u533a', '\u897f\u65b0\u5bbf', '\u4e8c\u4e01\u76ee', '8\u756a']\n```\n\n#### Get GeoJSON representation\n\nYou can use the `as_geojson()` method of the Result and AddressNode\nobjects to obtain the GeoJSON representation.\n\n```python\n>>> results[0].as_geojson()\n{'type': 'Feature', 'geometry': {'type': 'Point', 'coordinates': [139.691778, 35.689627]}, 'properties': {'id': 12299851, 'name': '8\u756a', 'level': 7, 'note': None, 'fullname': ['\u6771\u4eac\u90fd', '\u65b0\u5bbf\u533a', '\u897f\u65b0\u5bbf', '\u4e8c\u4e01\u76ee', '8\u756a'], 'matched': '\u65b0\u5bbf\u533a\u897f\u65b0\u5bbf\uff12\uff0d\uff18\uff0d'}}\n>>> results[0].node.as_geojson()\n{'type': 'Feature', 'geometry': {'type': 'Point', 'coordinates': [139.691778, 35.689627]}, 'properties': {'id': 12299851, 'name': '8\u756a', 'level': 7, 'note': None, 'fullname': ['\u6771\u4eac\u90fd', '\u65b0\u5bbf\u533a', '\u897f\u65b0\u5bbf', '\u4e8c\u4e01\u76ee', '8\u756a']}}\n```\n\n#### Get the local government codes\n\nThere are two types of local government codes: JISX0402 (5-digit) and Local Government Code (6-digit).\n\nYou can also obtain the prefecture code JISX0401 (2 digits).\n\n```python\n>>> node.get_city_jiscode()  # 5-digit code\n'13104'\n>>> node.get_city_local_authority_code() # 6-digit code\n'131041'\n>>> node.get_pref_jiscode()  # prefecture code\n'13'\n```\n\n#### Get link URLs to maps\n\nGenerate URLs to link to GSI and Google maps.\n\n```python\n>>> node.get_gsimap_link()\n'https://maps.gsi.go.jp/#16/35.689627/139.691778/'\n>>> node.get_googlemap_link()\n'https://maps.google.com/maps?q=35.689627,139.691778&z=16'\n```\n\n#### Traverse the parent node\n\nA \"parent node\" is a node that represents a level above the address.\nGet the node by attribute `parent`.\n\nNow the `node` points to '8\u756a', so the parent node will be '\u4e8c\u4e01\u76ee'.\n\n```python\n>>> parent = node.parent\n>>> parent.get_fullname()\n['\u6771\u4eac\u90fd', '\u65b0\u5bbf\u533a', '\u897f\u65b0\u5bbf', '\u4e8c\u4e01\u76ee']\n>>> parent.x, parent.y\n(139.691774, 35.68945)\n```\n\n#### Traverse the child nodes\n\nA \"child node\" is a node that represents a level below the address.\nGet the node by attribute `children`.\n\nThere is one parent node, but there are multiple child nodes.\nThe actual return is a SQL query object, but it can be looped through\nwith an iterator or cast to a list.\n\nNow the `parent` points to '\u4e8c\u4e01\u76ee', so the child node will be\nthe block number (\u25cb\u756a) contained therein.\n\n```python\n>>> parent.children\n<sqlalchemy.orm.dynamic.AppenderQuery object at 0x7fbc08404b38>\n>>> [child.name for child in parent.children]\n['10\u756a', '11\u756a', '1\u756a', '2\u756a', '3\u756a', '4\u756a', '5\u756a', '6\u756a', '7\u756a', '8\u756a', '9\u756a']\n```\n\n## Create your own dictionary\n\nConsider using [jageocoder-converter](https://github.com/t-sagara/jageocoder-converter).\n\n## Contributing\n\nAddress notation varies. So suggestions for logic improvements are welcome.\nPlease submit an issue with examples of address notations in use and how they should be parsed.\n\n## Authors\n\n* **Takeshi SAGARA** - [Info-proto Co.,Ltd.](https://www.info-proto.com/)\n\n## License\n\nThis project is licensed under [the MIT License](https://opensource.org/licenses/mit-license.php).\n\nThis is not the scope of the dictionary data license. Please follow the license of the respective dictionary data.\n\n## Acknowledgements\n\nWe would like to thank CSIS for allowing us to provide address matching services on their institutional website for over 20 years.\n\nWe would also like to thank Professor Asanobu Kitamoto of NII for providing us with a large sample of areas using the older address system and for his many help in confirming the results of our analysis.\n\n",
    "bugtrack_url": null,
    "license": "The MIT License",
    "summary": "A Japanese-address geocoder for Python.",
    "version": "2.1.6.post1",
    "project_urls": {
        "Documentation": "https://jageocoder.readthedocs.io/",
        "Homepage": "https://github.com/t-sagara/jageocoder/",
        "Repository": "https://github.com/t-sagara/jageocoder/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4649a433ab019f22a2f10b372e2c80098178e83876729db802b2056a723f2b7",
                "md5": "34098c68b0a3a421d9691df4d9322777",
                "sha256": "32d1bd688dc6c4c223c7d991949ee624dc5ea3bac9567ab53601225e58b19693"
            },
            "downloads": -1,
            "filename": "jageocoder-2.1.6.post1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "34098c68b0a3a421d9691df4d9322777",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.7",
            "size": 65063,
            "upload_time": "2024-05-08T05:47:12",
            "upload_time_iso_8601": "2024-05-08T05:47:12.300524Z",
            "url": "https://files.pythonhosted.org/packages/f4/64/9a433ab019f22a2f10b372e2c80098178e83876729db802b2056a723f2b7/jageocoder-2.1.6.post1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a8f2500623485012569f10746d03803baf63dfc0ac77e26afc40f981ca53b53",
                "md5": "1c9c0dd71812ed815d87c7c8bbc414e8",
                "sha256": "7518a302e721acf63c842abeb21ea37fb6a8ceb1ac13cc72025049dbd355f918"
            },
            "downloads": -1,
            "filename": "jageocoder-2.1.6.post1.tar.gz",
            "has_sig": false,
            "md5_digest": "1c9c0dd71812ed815d87c7c8bbc414e8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.7",
            "size": 62235,
            "upload_time": "2024-05-08T05:47:14",
            "upload_time_iso_8601": "2024-05-08T05:47:14.910683Z",
            "url": "https://files.pythonhosted.org/packages/0a/8f/2500623485012569f10746d03803baf63dfc0ac77e26afc40f981ca53b53/jageocoder-2.1.6.post1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-08 05:47:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "t-sagara",
    "github_project": "jageocoder",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "jageocoder"
}
        
Elapsed time: 0.29678s