{"id":16421592,"url":"https://github.com/wooyek/django-geocoding","last_synced_at":"2025-06-28T01:34:05.615Z","repository":{"id":57420212,"uuid":"115540252","full_name":"wooyek/django-geocoding","owner":"wooyek","description":"Abstract base models and mixins to store address and GPS coordinates info","archived":false,"fork":false,"pushed_at":"2018-12-21T11:32:55.000Z","size":62,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-05-25T03:37:29.954Z","etag":null,"topics":["pet-project"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wooyek.png","metadata":{"files":{"readme":"README.rst","changelog":"HISTORY.rst","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-12-27T16:48:11.000Z","updated_at":"2023-02-10T12:43:37.000Z","dependencies_parsed_at":"2022-09-10T09:11:35.960Z","dependency_job_id":null,"html_url":"https://github.com/wooyek/django-geocoding","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wooyek/django-geocoding","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wooyek%2Fdjango-geocoding","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wooyek%2Fdjango-geocoding/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wooyek%2Fdjango-geocoding/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wooyek%2Fdjango-geocoding/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wooyek","download_url":"https://codeload.github.com/wooyek/django-geocoding/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wooyek%2Fdjango-geocoding/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262352147,"owners_count":23297642,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["pet-project"],"created_at":"2024-10-11T07:33:55.942Z","updated_at":"2025-06-28T01:34:05.584Z","avatar_url":"https://github.com/wooyek.png","language":"Python","readme":"===========================\nDjango geocoding for models\n===========================\n\n\n.. image:: https://img.shields.io/pypi/v/django-geocoding.svg\n        :target: https://pypi.python.org/pypi/django-geocoding\n\n.. image:: https://img.shields.io/travis/wooyek/django-geocoding.svg\n        :target: https://travis-ci.org/wooyek/django-geocoding\n\n.. image:: https://readthedocs.org/projects/django-geocoding/badge/?version=latest\n        :target: https://django-geocoding.readthedocs.io/en/latest/?badge=latest\n        :alt: Documentation Status\n.. image:: https://coveralls.io/repos/github/wooyek/django-geocoding/badge.svg?branch=develop\n        :target: https://coveralls.io/github/wooyek/django-geocoding?branch=develop\n        :alt: Coveralls.io coverage\n\n.. image:: https://codecov.io/gh/wooyek/django-geocoding/branch/develop/graph/badge.svg\n        :target: https://codecov.io/gh/wooyek/django-geocoding\n        :alt: CodeCov coverage\n\n.. image:: https://api.codeclimate.com/v1/badges/0e7992f6259bc7fd1a1a/maintainability\n        :target: https://codeclimate.com/github/wooyek/django-geocoding/maintainability\n        :alt: Maintainability\n\n.. image:: https://img.shields.io/github/license/wooyek/django-geocoding.svg\n        :target: https://github.com/wooyek/django-geocoding/blob/develop/LICENSE\n        :alt: License\n\n.. image:: https://img.shields.io/twitter/url/https/github.com/wooyek/django-geocoding.svg?style=social\n        :target: https://twitter.com/intent/tweet?text=Wow:\u0026url=https://github.com/wooyek/django-geocoding\n        :alt: Tweet about this project\n\n.. image:: https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg\n        :target: https://saythanks.io/to/wooyek\n\nAbstract base models and mixins to store address and GPS coordinates info\n\n* Free software: MIT license\n* Documentation: https://django-geocoding.readthedocs.io.\n\nFeatures\n--------\n\n* AbstractLocation base model with opencage geocoding support\n\nDemo\n----\n\nTo run an example project for this django reusable app, click the button below and start a demo serwer on Heroku\n\n.. image:: https://www.herokucdn.com/deploy/button.png\n    :target: https://heroku.com/deploy\n    :alt: Deploy Django Opt-out example project to Heroku\n\n\nQuickstart\n----------\n\nInstall Django geocoding for models::\n\n    pip install django-geocoding\n\nAdd it to your `INSTALLED_APPS`:\n\n.. code-block:: python\n\n    INSTALLED_APPS = (\n        ...\n        'django_geocoding.apps.DjangoGeocodingConfig',\n        ...\n    )\n\nAdd Django geocoding for models's URL patterns:\n\n.. code-block:: python\n\n    from django_geocoding import urls as django_geocoding_urls\n\n\n    urlpatterns = [\n        ...\n        url(r'^', include(django_geocoding_urls)),\n        ...\n    ]\n\n\nRunning Tests\n-------------\n\nDoes the code actually work?\n\n::\n    $ pipenv install --dev\n    $ pipenv shell\n    $ tox\n\n\nWe recommend using pipenv_ but a legacy approach to creating virtualenv and installing requirements should also work.\nPlease install `requirements/development.txt` to setup virtual env for testing and development.\n\n\nCredits\n-------\n\nThis package was created with Cookiecutter_ and the `wooyek/cookiecutter-django-app`_ project template.\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`wooyek/cookiecutter-django-app`: https://github.com/wooyek/cookiecutter-django-app\n.. _`pipenv`: https://docs.pipenv.org/install#fancy-installation-of-pipenv\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwooyek%2Fdjango-geocoding","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwooyek%2Fdjango-geocoding","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwooyek%2Fdjango-geocoding/lists"}