# django-filer-optimizer [![PyPi license](https://img.shields.io/pypi/l/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)
[![PyPi status](https://img.shields.io/pypi/status/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)
[![PyPi version](https://img.shields.io/pypi/v/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)
[![PyPi python version](https://img.shields.io/pypi/pyversions/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)
[![PyPi downloads](https://img.shields.io/pypi/dm/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)
[![PyPi downloads](https://img.shields.io/pypi/dw/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)
[![PyPi downloads](https://img.shields.io/pypi/dd/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)
## GitHub ![GitHub release](https://img.shields.io/github/tag/DLRSP/django-filer-optimizer.svg) ![GitHub release](https://img.shields.io/github/release/DLRSP/django-filer-optimizer.svg)
## Test [![codecov.io](https://codecov.io/github/DLRSP/django-filer-optimizer/coverage.svg?branch=main)](https://codecov.io/github/DLRSP/django-filer-optimizer?branch=main) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/DLRSP/django-filer-optimizer/main.svg)](https://results.pre-commit.ci/latest/github/DLRSP/django-filer-optimizer/main) [![gitthub.com](https://github.com/DLRSP/django-filer-optimizer/actions/workflows/ci.yaml/badge.svg)](https://github.com/DLRSP/django-filer-optimizer/actions/workflows/ci.yaml)
## Check Demo Project
* Check the demo repo on [GitHub](https://github.com/DLRSP/example/tree/django-filer-optimizer)
## Requirements
- Python 3.8+ supported.
- Django 3.2+ supported.
## Setup
1. Install from **pip**:
```shell
pip install django-filer-optimizer
```
2. Modify `settings.py` by adding the app to `INSTALLED_APPS`:
```python
INSTALLED_APPS = [
# ...
"filer_optimizer",
# ...
]
```
3. Finally, modify your project `urls.py` with handlers for all errors:
```python
# ...other imports...
urlpatterns = [
# ...other urls...
]
```
4. Execute Django's command `migrate` inside your project's root:
```shell
python manage.py migrate
Running migrations:
Applying filer_optimizer.0001_initial... OK
```
## Run Example Project
```shell
git clone --depth=50 --branch=django-filer-optimizer https://github.com/DLRSP/example.git DLRSP/example
cd DLRSP/example
python manage.py runserver
```
Now browser the app @ http://127.0.0.1:8000
Raw data
{
"_id": null,
"home_page": "https://github.com/DLRSP/django-filer-optimizer",
"name": "django-filer-optimizer",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": "",
"keywords": "django",
"author": "DLRSP",
"author_email": "dlrsp.dev@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/46/f5/bc8dc81f8e49a86d168c6de40cdc594b799f34d72b9cb6b4ed231089e29f/django-filer-optimizer-0.1.1.tar.gz",
"platform": null,
"description": "# django-filer-optimizer [![PyPi license](https://img.shields.io/pypi/l/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)\r\n\r\n[![PyPi status](https://img.shields.io/pypi/status/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)\r\n[![PyPi version](https://img.shields.io/pypi/v/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)\r\n[![PyPi python version](https://img.shields.io/pypi/pyversions/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)\r\n[![PyPi downloads](https://img.shields.io/pypi/dm/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)\r\n[![PyPi downloads](https://img.shields.io/pypi/dw/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)\r\n[![PyPi downloads](https://img.shields.io/pypi/dd/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)\r\n\r\n## GitHub ![GitHub release](https://img.shields.io/github/tag/DLRSP/django-filer-optimizer.svg) ![GitHub release](https://img.shields.io/github/release/DLRSP/django-filer-optimizer.svg)\r\n\r\n## Test [![codecov.io](https://codecov.io/github/DLRSP/django-filer-optimizer/coverage.svg?branch=main)](https://codecov.io/github/DLRSP/django-filer-optimizer?branch=main) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/DLRSP/django-filer-optimizer/main.svg)](https://results.pre-commit.ci/latest/github/DLRSP/django-filer-optimizer/main) [![gitthub.com](https://github.com/DLRSP/django-filer-optimizer/actions/workflows/ci.yaml/badge.svg)](https://github.com/DLRSP/django-filer-optimizer/actions/workflows/ci.yaml)\r\n\r\n## Check Demo Project\r\n* Check the demo repo on [GitHub](https://github.com/DLRSP/example/tree/django-filer-optimizer)\r\n\r\n## Requirements\r\n- Python 3.8+ supported.\r\n- Django 3.2+ supported.\r\n\r\n## Setup\r\n1. Install from **pip**:\r\n ```shell\r\n pip install django-filer-optimizer\r\n ```\r\n2. Modify `settings.py` by adding the app to `INSTALLED_APPS`:\r\n ```python\r\n INSTALLED_APPS = [\r\n # ...\r\n \"filer_optimizer\",\r\n # ...\r\n ]\r\n ```\r\n3. Finally, modify your project `urls.py` with handlers for all errors:\r\n ```python\r\n # ...other imports...\r\n \r\n urlpatterns = [\r\n # ...other urls...\r\n ]\r\n ```\r\n4. Execute Django's command `migrate` inside your project's root:\r\n ```shell\r\n python manage.py migrate\r\n Running migrations:\r\n Applying filer_optimizer.0001_initial... OK\r\n ```\r\n\r\n## Run Example Project\r\n\r\n```shell\r\ngit clone --depth=50 --branch=django-filer-optimizer https://github.com/DLRSP/example.git DLRSP/example\r\ncd DLRSP/example\r\npython manage.py runserver\r\n```\r\n\r\nNow browser the app @ http://127.0.0.1:8000\r\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "Django application to extend the \"django-filer\" application with extra utils like.",
"version": "0.1.1",
"project_urls": {
"Homepage": "https://github.com/DLRSP/django-filer-optimizer"
},
"split_keywords": [
"django"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "6cf54bf5ae01154ef74f82a176252f9a69d8c3f79ab62d12636b69c6039ee067",
"md5": "1cf4d91f93db502edc815417a0ce2d92",
"sha256": "43b23463c00ec30ffd5efdf3ccf45a379f463cc81d25732c55cf13a6275dcb75"
},
"downloads": -1,
"filename": "django_filer_optimizer-0.1.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1cf4d91f93db502edc815417a0ce2d92",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=3.8",
"size": 6094,
"upload_time": "2023-12-23T22:31:10",
"upload_time_iso_8601": "2023-12-23T22:31:10.247231Z",
"url": "https://files.pythonhosted.org/packages/6c/f5/4bf5ae01154ef74f82a176252f9a69d8c3f79ab62d12636b69c6039ee067/django_filer_optimizer-0.1.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46f5bc8dc81f8e49a86d168c6de40cdc594b799f34d72b9cb6b4ed231089e29f",
"md5": "0f7a3bfc8d6e0fc9c808117ed42c8b2e",
"sha256": "329ba98567c6109ab429dd6a751dba3772211fd5e49440b1d4c2b54f5d4c147b"
},
"downloads": -1,
"filename": "django-filer-optimizer-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "0f7a3bfc8d6e0fc9c808117ed42c8b2e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 143930,
"upload_time": "2023-12-23T22:31:11",
"upload_time_iso_8601": "2023-12-23T22:31:11.957847Z",
"url": "https://files.pythonhosted.org/packages/46/f5/bc8dc81f8e49a86d168c6de40cdc594b799f34d72b9cb6b4ed231089e29f/django-filer-optimizer-0.1.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-12-23 22:31:11",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "DLRSP",
"github_project": "django-filer-optimizer",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "django-filer-optimizer"
}