Load your django apps by app name rather than module path.
Project description
djapps allows you to load your django apps by their app names rather than by the module path. This is particularly useful if you don’t know where modules will be installed or if you plan to allow overriding of your apps (eg a user replaces your foo.bar app with myfoo.bar).
Usage
If you have a django app called bar in a package called foo (such that you would add foo.bar to your INSTALLED_APPS) then you can get hold of bar without knowing its full module path:
import djapps.bar
djapps hooks into python’s regular import mechanism so all the normal ways to import things will work:
from djapps.bar import models from djapps.bar.models import MyModel as ThisIsMyModel
Your app names in a django project should all be unqiue, djapps won’t work if they are not (but django won’t like that either).
Installation
Use your favorite install method, for example:
$ pip install djapps
You do not need to add djapps to your INSTALLED_APPS, just start using it.
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
File details
Details for the file djapps-0.1.1.tar.gz
.
File metadata
- Download URL: djapps-0.1.1.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa7c90f592734cc0d9de99f38176177f0020d37b2bd3448ef2bd2f03f9ee5f85 |
|
MD5 | fac135291cc7ead3c71058efc1e7116b |
|
BLAKE2b-256 | b04590265d5647987bed1083f518949fcca42012e6cf589043fb96805850dc2b |