django-filer-optimizer


Namedjango-filer-optimizer JSON
Version 0.4.2 PyPI version JSON
download
home_pagehttps://github.com/DLRSP/django-filer-optimizer
SummaryDjango application to extend the "django-filer" application with extra utils like.
upload_time2025-02-10 20:42:21
maintainerNone
docs_urlNone
authorDLRSP
requires_python>=3.8
licenseMIT License
keywords django
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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. Modify `settings.py` by adding the config `THUMBNAIL_DEFAULT_STORAGE`:
    ```python
    # See: https://docs.djangoproject.com/en/4.2/ref/settings/#std-setting-STORAGES
    STORAGES = {
        "default": {
            "BACKEND": "django.core.files.storage.FileSystemStorage",
        },
    }
    THUMBNAIL_DEFAULT_STORAGE = STORAGES["default"]["BACKEND"]
    ```

## 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": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "django",
    "author": "DLRSP",
    "author_email": "dlrsp.dev@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/a7/72/a7cca7b767aef16d2ad8bc33aafb9da7ad9eac7fbe7685acddb3d5942547/django_filer_optimizer-0.4.2.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)\n\n[![PyPi status](https://img.shields.io/pypi/status/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)\n[![PyPi version](https://img.shields.io/pypi/v/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)\n[![PyPi python version](https://img.shields.io/pypi/pyversions/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)\n[![PyPi downloads](https://img.shields.io/pypi/dm/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)\n[![PyPi downloads](https://img.shields.io/pypi/dw/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)\n[![PyPi downloads](https://img.shields.io/pypi/dd/django-filer-optimizer.svg)](https://pypi.python.org/pypi/django-filer-optimizer)\n\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)\n\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)\n\n## Check Demo Project\n* Check the demo repo on [GitHub](https://github.com/DLRSP/example/tree/django-filer-optimizer)\n\n## Requirements\n-   Python 3.8+ supported.\n-   Django 3.2+ supported.\n\n## Setup\n1. Install from **pip**:\n    ```shell\n    pip install django-filer-optimizer\n    ```\n2. Modify `settings.py` by adding the app to `INSTALLED_APPS`:\n    ```python\n    INSTALLED_APPS = [\n        # ...\n        \"filer_optimizer\",\n        # ...\n    ]\n    ```\n3. Modify `settings.py` by adding the config `THUMBNAIL_DEFAULT_STORAGE`:\n    ```python\n    # See: https://docs.djangoproject.com/en/4.2/ref/settings/#std-setting-STORAGES\n    STORAGES = {\n        \"default\": {\n            \"BACKEND\": \"django.core.files.storage.FileSystemStorage\",\n        },\n    }\n    THUMBNAIL_DEFAULT_STORAGE = STORAGES[\"default\"][\"BACKEND\"]\n    ```\n\n## Run Example Project\n\n```shell\ngit clone --depth=50 --branch=django-filer-optimizer https://github.com/DLRSP/example.git DLRSP/example\ncd DLRSP/example\npython manage.py runserver\n```\n\nNow browser the app @ http://127.0.0.1:8000\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Django application to extend the \"django-filer\" application with extra utils like.",
    "version": "0.4.2",
    "project_urls": {
        "Homepage": "https://github.com/DLRSP/django-filer-optimizer"
    },
    "split_keywords": [
        "django"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "faff61aef19f0ee97cbef0af48c1865a876073bdb279a6a925db20dab56214b0",
                "md5": "792c248695fbe360e0f19d2c68e9cbb9",
                "sha256": "6e1133ab40bc6fa63f2c49b71d62ffab3477bcf1b97b26f1db7f005175794d95"
            },
            "downloads": -1,
            "filename": "django_filer_optimizer-0.4.2-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "792c248695fbe360e0f19d2c68e9cbb9",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.8",
            "size": 10481,
            "upload_time": "2025-02-10T20:42:19",
            "upload_time_iso_8601": "2025-02-10T20:42:19.706608Z",
            "url": "https://files.pythonhosted.org/packages/fa/ff/61aef19f0ee97cbef0af48c1865a876073bdb279a6a925db20dab56214b0/django_filer_optimizer-0.4.2-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a772a7cca7b767aef16d2ad8bc33aafb9da7ad9eac7fbe7685acddb3d5942547",
                "md5": "27275215e39cb1a685e79be6451a0f54",
                "sha256": "ce7efe548b70df69dc261b7efed2bd7b6c1bcc2257a1e134bed392ec061aee64"
            },
            "downloads": -1,
            "filename": "django_filer_optimizer-0.4.2.tar.gz",
            "has_sig": false,
            "md5_digest": "27275215e39cb1a685e79be6451a0f54",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 38212,
            "upload_time": "2025-02-10T20:42:21",
            "upload_time_iso_8601": "2025-02-10T20:42:21.526480Z",
            "url": "https://files.pythonhosted.org/packages/a7/72/a7cca7b767aef16d2ad8bc33aafb9da7ad9eac7fbe7685acddb3d5942547/django_filer_optimizer-0.4.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-10 20:42:21",
    "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"
}
        
Elapsed time: 0.40847s