https://github.com/webyneter/django-humble-utils
Django utils for everyday use
https://github.com/webyneter/django-humble-utils
Last synced: about 1 year ago
JSON representation
Django utils for everyday use
- Host: GitHub
- URL: https://github.com/webyneter/django-humble-utils
- Owner: webyneter
- License: mit
- Created: 2017-06-30T09:12:59.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2020-08-04T19:46:23.000Z (almost 6 years ago)
- Last Synced: 2025-02-11T16:37:04.300Z (over 1 year ago)
- Language: Python
- Size: 22.5 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Authors: AUTHORS.rst
Awesome Lists containing this project
README
=============================
Django Humble Utils
=============================
.. image:: https://badge.fury.io/py/django-humble-utils.svg
:target: https://badge.fury.io/py/django-humble-utils
.. image:: https://travis-ci.org/webyneter/django-humble-utils.svg?branch=master
:target: https://travis-ci.org/webyneter/django-humble-utils
.. image:: https://codecov.io/gh/webyneter/django-humble-utils/branch/master/graph/badge.svg
:target: https://codecov.io/gh/webyneter/django-humble-utils
Your project description goes here
Documentation
-------------
The full documentation is at https://django-humble-utils.readthedocs.io.
Quickstart
----------
Install Django Humble Utils::
pip install django-humble-utils
Add it to your `INSTALLED_APPS`:
.. code-block:: python
INSTALLED_APPS = (
...
'django_humble_utils.apps.DjangoHumbleUtilsConfig',
...
)
Add Django Humble Utils's URL patterns:
.. code-block:: python
from django_humble_utils import urls as django_humble_utils_urls
urlpatterns = [
...
url(r'^', include(django_humble_utils_urls)),
...
]
Features
--------
* TODO
Running Tests
-------------
Does the code actually work?
::
source /bin/activate
(myenv) $ pip install tox
(myenv) $ tox
Development commands
---------------------
::
pip install -r requirements_dev.txt
invoke -l
Credits
-------
Tools used in rendering this package:
* Cookiecutter_
* `cookiecutter-djangopackage`_
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage