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:
# pyproject.toml
[tool.mypy]
plugins = [
"mypy_django_plugin.main",
"mypy_oscar_plugin",
]
[tool.django-stubs]
django_settings_module = "myproject.settings"
Or in INI format:
# 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.
Third-party oscar package support
If your project uses third-party packages that extend oscar (e.g., django-oscar-cch, django-oscar-bluelight), the plugin can remap types in those packages too. Configure the package prefixes so the plugin knows which packages to handle:
# pyproject.toml
[tool.django-oscar-stubs]
oscar_third_party_packages = [
"oscarcch",
"oscarbluelight",
"oscarbundles",
"oscarapicheckout",
"cybersource",
]
oscar_local_packages = [
"oscarpnp",
"oscarcsr",
]
Or in INI format (comma-separated or newline-separated):
# mypy.ini
[mypy.plugins.django-oscar-stubs]
oscar_third_party_packages = oscarcch, oscarbluelight, oscarbundles, oscarapicheckout, cybersource
oscar_local_packages = oscarpnp, oscarcsr
Newline-separated values are also supported:
# mypy.ini
[mypy.plugins.django-oscar-stubs]
oscar_third_party_packages =
oscarcch
oscarbluelight
oscarbundles
oscarapicheckout
cybersource
oscar_local_packages =
oscarpnp
oscarcsr
oscar_third_party_packages: Installed packages that use oscar models viaget_model(). The plugin normalizes their base class method signatures so that overrides in your project don't produce spurious[override]errors.oscar_local_packages: Your own project packages (outside the main forked apps) that import oscar models. The plugin remaps oscar types on attribute access within these packages.
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.
Abstract model type remapping
The plugin automatically remaps oscar's abstract model types to their concrete forked equivalents on attribute access. This includes FK fields, method return types, and QuerySet generics:
order: Order = ...
order.basket # type: Basket (your forked Basket, not AbstractBasket)
order.shipping_address # type: ShippingAddress (remapped from AbstractShippingAddress)
order.billing_address # type: BillingAddress (remapped from AbstractBillingAddress)
This works even for abstract models whose concrete counterparts live in a different app (e.g., AbstractShippingAddress is defined in oscar's address app but ShippingAddress lives in the order app).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_oscar_stubs-4.1.0b4.tar.gz.
File metadata
- Download URL: django_oscar_stubs-4.1.0b4.tar.gz
- Upload date:
- Size: 130.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c841a3b84bdf90f44ac8fbeec8af86a5b840fc94946157f329d11e98fa5d0781
|
|
| MD5 |
ff3b2fbd3df65a55eb6b96b4d3ece621
|
|
| BLAKE2b-256 |
c6e548a2182e67ee067b6ee9ad90ac6b13a9bd34bd513d67fdccd2f83f3038aa
|
Provenance
The following attestation bundles were made for django_oscar_stubs-4.1.0b4.tar.gz:
Publisher:
.gitlab-ci.yml on thelabnyc/django-oscar-stubs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_oscar_stubs-4.1.0b4.tar.gz -
Subject digest:
c841a3b84bdf90f44ac8fbeec8af86a5b840fc94946157f329d11e98fa5d0781 - Sigstore transparency entry: 1154032004
- Sigstore integration time:
-
Permalink:
thelabnyc/django-oscar-stubs@93e602edf7974190c81d4722fdd50987163c6c2a -
Branch / Tag:
refs/tags/v4.1.0b4 - Owner: https://gitlab.com/thelabnyc
-
Access:
public
-
Token Issuer:
https://gitlab.com -
Runner Environment:
self-hosted -
Publication workflow:
.gitlab-ci.yml@93e602edf7974190c81d4722fdd50987163c6c2a -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_oscar_stubs-4.1.0b4-py3-none-any.whl.
File metadata
- Download URL: django_oscar_stubs-4.1.0b4-py3-none-any.whl
- Upload date:
- Size: 130.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7dc960ac63fabeeab55bc02fb644a44a336ddf0dad2d7196357dc1f8ad9bd8d
|
|
| MD5 |
b7f14a6c6b12ff48b74ea5823031e656
|
|
| BLAKE2b-256 |
fd88cf3ad75fb0eba74a56da26a5bc657217e8e08557936abf65dab656691df2
|
Provenance
The following attestation bundles were made for django_oscar_stubs-4.1.0b4-py3-none-any.whl:
Publisher:
.gitlab-ci.yml on thelabnyc/django-oscar-stubs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_oscar_stubs-4.1.0b4-py3-none-any.whl -
Subject digest:
f7dc960ac63fabeeab55bc02fb644a44a336ddf0dad2d7196357dc1f8ad9bd8d - Sigstore transparency entry: 1154031930
- Sigstore integration time:
-
Permalink:
thelabnyc/django-oscar-stubs@93e602edf7974190c81d4722fdd50987163c6c2a -
Branch / Tag:
refs/tags/v4.1.0b4 - Owner: https://gitlab.com/thelabnyc
-
Access:
public
-
Token Issuer:
https://gitlab.com -
Runner Environment:
self-hosted -
Publication workflow:
.gitlab-ci.yml@93e602edf7974190c81d4722fdd50987163c6c2a -
Trigger Event:
push
-
Statement type: