Skip to main content

PEP 561 type stubs for django-oscar

Project description

django-oscar-stubs

PEP 561 type stubs for django-oscar.

Includes a custom mypy plugin that resolves the return types of oscar's dynamic class loading functions (get_model, get_class, get_classes) to the actual concrete types, including support for forked apps.

Installation

pip install django-oscar-stubs

Configuration

Add mypy_oscar_plugin to your mypy plugins, alongside mypy_django_plugin.main from django-stubs:

# mypy.ini
[mypy]
plugins =
    mypy_django_plugin.main,
    mypy_oscar_plugin

[mypy.plugins.django-stubs]
django_settings_module = myproject.settings

The oscar plugin reads django_settings_module from the django-stubs config section (or the DJANGO_SETTINGS_MODULE environment variable) to detect forked apps. Plugin ordering does not matter, but both plugins must be listed.

What it does

Type-safe dynamic loading

Oscar uses get_model and get_class to dynamically load models and classes. Without the plugin, these return untyped type objects. With the plugin, mypy resolves them to the actual types:

from oscar.core.loading import get_model, get_class, get_classes

# Without plugin: type[Model]
# With plugin:    type[oscar.apps.catalogue.models.Product]
Product = get_model("catalogue", "Product")

# Without plugin: type
# With plugin:    type[oscar.apps.address.forms.UserAddressForm]
UserAddressForm = get_class("address.forms", "UserAddressForm")

# Without plugin: list[type]
# With plugin:    tuple[type[BasketLineForm], type[SavedLineForm]]
BasketLineForm, SavedLineForm = get_classes(
    "basket.forms", ["BasketLineForm", "SavedLineForm"]
)

Forked app support

When your project forks an oscar app, the plugin detects this from INSTALLED_APPS and resolves to your forked types instead of oscar's defaults:

# settings.py
INSTALLED_APPS = [
    ...
    "myproject.catalogue.apps.CatalogueConfig",  # forked from oscar
    "oscar.apps.basket.apps.BasketConfig",        # not forked
    ...
]
# myproject/catalogue/models.py
from oscar.apps.catalogue.abstract_models import AbstractProduct

class Product(AbstractProduct):
    custom_field = models.CharField(max_length=100)
# Resolves to type[myproject.catalogue.models.Product] (with custom_field!)
Product = get_model("catalogue", "Product")
Product.objects.filter(custom_field="foo")  # type-safe

The plugin falls back to oscar's default types for any app that hasn't been forked, or when literal string arguments aren't used.

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_oscar_stubs-4.1.0a5.tar.gz (111.2 kB view details)

Uploaded Source

Built Distribution

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

django_oscar_stubs-4.1.0a5-py3-none-any.whl (102.3 kB view details)

Uploaded Python 3

File details

Details for the file django_oscar_stubs-4.1.0a5.tar.gz.

File metadata

  • Download URL: django_oscar_stubs-4.1.0a5.tar.gz
  • Upload date:
  • Size: 111.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for django_oscar_stubs-4.1.0a5.tar.gz
Algorithm Hash digest
SHA256 6cabfeacfc82c23aedef7edd01d755698d228bdd1c8a11b65245b3fb5d29876f
MD5 ad709baa5d53a7ad2ee42f9ef931ebab
BLAKE2b-256 21dcd234774efde7fab2d4466c19e5f5c463c4e24b678a9d4ef72fb4b4cca11d

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_oscar_stubs-4.1.0a5.tar.gz:

Publisher: .gitlab-ci.yml on thelabnyc/django-oscar-stubs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file django_oscar_stubs-4.1.0a5-py3-none-any.whl.

File metadata

File hashes

Hashes for django_oscar_stubs-4.1.0a5-py3-none-any.whl
Algorithm Hash digest
SHA256 9c5c2fd187a0c5a8795f20bd8e8e75d03bd876f02a70f3a825291865c2ba4a7e
MD5 9c75419f41edf5ec3ae3d7396ba10993
BLAKE2b-256 f553e6b737a30a2d7318f9cac7ff88ca180de7fb9852747b2424ec36342c5f75

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_oscar_stubs-4.1.0a5-py3-none-any.whl:

Publisher: .gitlab-ci.yml on thelabnyc/django-oscar-stubs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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