This is a namespace package for extra Django packages. Feel free to use it.
Project description
This is just a namespace package for Django-related projects. Feel free to use it.
Does Django even support namespace packages?
It currently doesn’t but you can patch it like so:
import django.core.management
def django_core_management__find_management_module(app_name):
"""
Determines the path to the management module for the given app_name,
without actually importing the application or the management module.
Raises ImportError if the management module cannot be found for any reason.
Supports namespace packages.
"""
import sys
import os.path
parts = app_name.split('.')
parts.append('management')
management_module = __import__(app_name + '.management', fromlist=parts)
path = management_module.__file__
if path.endswith(('__init__.py', '__init__.pyc')):
path = os.path.split(path)[0]
return path
# PATCH: a more generic find_management_module that supports namespace
# packages.
# COMPATIBILITY: Django 1.1.0 - 1.3.0
django.core.management.find_management_module = \
django_core_management__find_management_module
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
dj-0.1.tar.gz
(3.1 kB
view details)
File details
Details for the file dj-0.1.tar.gz.
File metadata
- Download URL: dj-0.1.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
515398094e8a1dfd309cbebfa760cf8608e58cb4dff10579fdad85b10b729385
|
|
| MD5 |
9795f8bea892290a426e20147336e8a2
|
|
| BLAKE2b-256 |
a40213f392e3dc08a07417f7f9e9cb2bb3d736089042f1a55e0b33d4edd433ed
|