Skip to main content

Project Open Street Map management

Project description

https://badge.fury.io/py/django-osm.svg https://app.travis-ci.com/dcopm999/django-osm.svg?branch=master https://codecov.io/gh/dcopm999/django-osm/branch/master/graph/badge.svg

Project Open Street Map management

Documentation

The full documentation is at https://django-osm.readthedocs.io.

Quickstart

Install django-osm:

pip install django-osm

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    "django.contrib.gis",
    "django_celery_beat",
    "rest_framework",
    "rest_framework_gis",
    "osm",
    ...
)

DATABASE_ROUTERS = [
    ...
    'osm.route_db.Default'
]

DATABASES = {
    ...
    'osm': {
        'ENGINE': 'django.contrib.gis.db.backends.postgis',
        'HOST': 'localhost',
        'NAME': 'geodjango',
    },
}
OSM_REPLICS = ['osm']

If there is OSM database replication, then add the connection parameters to us in the list of databases:

DATABASES = {
    ...
    'osm_replica1': {
        'ENGINE': 'django.contrib.gis.db.backends.postgis',
        'HOST': 'localhost',
        'NAME': 'geodjango',
        },

}

And complete the list of replicas OSM_REPLICS:

OSM_REPLICS = ['osm', 'osm_replica1']

Add django-osm’s URL patterns:

urlpatterns = [
    ...
    path('osm/', include('osm.urls', namespace='osm')),
    ...
]

Add DRF settings:

 REST_FRAMEWORK = {
     "DEFAULT_AUTHENTICATION_CLASSES": (
         "rest_framework.authentication.SessionAuthentication",
         "rest_framework.authentication.TokenAuthentication",
     ),
     "DEFAULT_PERMISSION_CLASSES": ("rest_framework.permissions.IsAuthenticated",),
     'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.LimitOffsetPagination',
     'PAGE_SIZE': 25
}

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Development commands

pip install -r requirements_dev.txt
invoke -l

Credits

Tools used in rendering this package:

History

0.1.0 (2021-01-16)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-osm-0.1.0.tar.gz (14.4 kB view details)

Uploaded Source

Built Distribution

django_osm-0.1.0-py2.py3-none-any.whl (15.1 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-osm-0.1.0.tar.gz.

File metadata

  • Download URL: django-osm-0.1.0.tar.gz
  • Upload date:
  • Size: 14.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.10

File hashes

Hashes for django-osm-0.1.0.tar.gz
Algorithm Hash digest
SHA256 e95e9b2dbdc4174a3b89b284a02c67b57fef42b28450fb4383a2235a6b557f1e
MD5 cd81ef3b9bc37780b9c3a022e45624a1
BLAKE2b-256 374a7db24f1817a0e740684dd31014161db9a5345b77096bcccc8db529d41b72

See more details on using hashes here.

File details

Details for the file django_osm-0.1.0-py2.py3-none-any.whl.

File metadata

  • Download URL: django_osm-0.1.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 15.1 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.10

File hashes

Hashes for django_osm-0.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 83449727f7e31c639517f2385a2d79969c152a2e429a40c56d9a7332c1a09012
MD5 4d2cc9c53c5876470f1d60eca9e62cc4
BLAKE2b-256 86f3c9d248ab24905e44fb129efbd37b98ea47ca9526f04f8a206f4a2e576f14

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page