Skip to main content

Package to manage OAuth 2.0 login for OSM in Python.

Project description

osm-login-python

Package to manage OAuth 2.0 login for OSM in Python.

📖 Documentation

pre-commit.ci status

coverage badge

Install with pip

pip install osm-login-python

Import Auth and initialize class with your credentials

from osm_login_python.core import Auth
osm_auth=Auth(
    osm_url=YOUR_OSM_URL,
    client_id=YOUR_OSM_CLIENT_ID,
    client_secret=YOUR_OSM_CLIENT_SECRET,
    secret_key=YOUR_OSM_SECRET_KEY,
    login_redirect_uri=YOUR_OSM_LOGIN_REDIRECT_URI,
    scope=YOUR_OSM_SCOPE_LIST,
)

Usage

Three functions are provided:

  1. login() -- Returns the login url for OSM.

    • The user must then access this URL and authorize the OAuth application to login.
    • The user will be redirected to the configured login_redirect_uri after successful login with OSM.
    • The web page must then call the callback() function below, sending the current URL to the function (which includes the OAuth authorization code).
  2. callback() -- Returns the encoded and serialized data:

    • user_data a JSON of OSM user data.
    • oauth_token a string OSM OAuth token.
    • Both are encoded and serialized as an additional safety measure when used in URLs.
  3. deserialize_data() -- returns decoded and deserialized data from callback().

[!NOTE] This package is primarily intended to return OSM user data.

It is also possible to obtain the oauth_token as described above, for making authenticated requests against the OSM API from within a secure backend service.

To use the OAuth token in a frontend please use caution and adhere to best practice security, such as embedding in a secure httpOnly cookie (do not store in localStorage, sessionStorage, or unsecure cookies).

Example

In Django:

import json
from django.conf import settings
from osm_login_python.core import Auth
from django.http import JsonResponse

# initialize osm_auth with our credentials
osm_auth = Auth(
    osm_url=YOUR_OSM_URL,
    client_id=YOUR_OSM_CLIENT_ID,
    client_secret=YOUR_OSM_CLIENT_SECRET,
    secret_key=YOUR_OSM_SECRET_KEY,
    login_redirect_uri=YOUR_OSM_LOGIN_REDIRECT_URI,
    scope=YOUR_OSM_SCOPE,
)

def login(request):
    login_url = osm_auth.login()
    return JsonResponse(login_url)

def callback(request):
    # Generating token through osm_auth library method
    token = osm_auth.callback(request.build_absolute_uri())
    return JsonResponse(token)

def get_my_data(request, serialized_user_data: str):
    user_data = osm_auth.deserialize_data(serialized_user_data)
    return JsonResponse(user_data)

Version Control

Use commitizen for version control.

Test Coverage

Generate a coverage badge:

uv sync --extra test
uv run coverage run -m pytest
# uv run coverage report
uv run coverage-badge -o docs/coverage.svg

Contribute

Contributions are welcome!

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

osm_login_python-2.1.0.tar.gz (86.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

osm_login_python-2.1.0-py3-none-any.whl (17.3 kB view details)

Uploaded Python 3

File details

Details for the file osm_login_python-2.1.0.tar.gz.

File metadata

  • Download URL: osm_login_python-2.1.0.tar.gz
  • Upload date:
  • Size: 86.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for osm_login_python-2.1.0.tar.gz
Algorithm Hash digest
SHA256 f47620d96528ba1d01b66f3ddf5904e1d2bce34468f7bbc4cad000072f1738ad
MD5 07733be7de32f8305bf6a41021b31715
BLAKE2b-256 3de947e93128a9ade60612f645f4fef8bd6485862a4fdb4f2e914d9adc42610c

See more details on using hashes here.

File details

Details for the file osm_login_python-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: osm_login_python-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 17.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for osm_login_python-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ad8fce435d438b7d9f3701dc2c365635aeb14159420852fc411147805e1cd22c
MD5 19b398c1d4ce7f20abb3b78e3d91875c
BLAKE2b-256 1fa3fb852310f79a2aa55f961ba441aadb67cb46a22ce5236c0d239b91ed0015

See more details on using hashes here.

Supported by

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