Custom settings loader for standalone django apps
Project description
Django Custom Settings
======================
# FAQ
* What does this do?
> Register your custom standalone app settings into Django conf, so they can be overrided by users of your standalone app.
* How does it work?
> Create a settings.py in your app. Make sure your settings are all caps.
> In your init file for you app, add a call to django-custom-settings and you're done.
# Full Example
```python
# __init__.py
from custom_settings.loader import load_settings
load_settings(__name__)
```
```python
# settings.py
MYAPP_SETTINGS_FOO = "foo"
MYAPP_SETTINGS_BAR = "bar"
myapp_settings_that_wont_be_loaded = "will not be available, because it's not all uppercase"
```
```python
# usage, on views.py, for example
from django.conf import settings
def home(request):
if settings.MYAPP_SETTINGS_FOO == "foo":
return "this is a foo"
else:
return "this is not a foo"
```
History
=======
## 0.1.0 (2016-02-01)
* First release on PyPI.
======================
# FAQ
* What does this do?
> Register your custom standalone app settings into Django conf, so they can be overrided by users of your standalone app.
* How does it work?
> Create a settings.py in your app. Make sure your settings are all caps.
> In your init file for you app, add a call to django-custom-settings and you're done.
# Full Example
```python
# __init__.py
from custom_settings.loader import load_settings
load_settings(__name__)
```
```python
# settings.py
MYAPP_SETTINGS_FOO = "foo"
MYAPP_SETTINGS_BAR = "bar"
myapp_settings_that_wont_be_loaded = "will not be available, because it's not all uppercase"
```
```python
# usage, on views.py, for example
from django.conf import settings
def home(request):
if settings.MYAPP_SETTINGS_FOO == "foo":
return "this is a foo"
else:
return "this is not a foo"
```
History
=======
## 0.1.0 (2016-02-01)
* First release on PyPI.
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
File details
Details for the file django-custom-settings-0.1.4.tar.gz
.
File metadata
- Download URL: django-custom-settings-0.1.4.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1aaf4a9ffd2c90f6009db04b8922ef82bcff688a21251e5f37d6efef0e8e9a6 |
|
MD5 | 5e0b7d5809facc22957d77c60107c872 |
|
BLAKE2b-256 | 79994745f8462defe7197cd6bef909ebc7ac3ef5b2264a3e57dab58dd5f330cc |