django-versatileimagefield


Namedjango-versatileimagefield JSON
Version 3.1 PyPI version JSON
download
home_pagehttp://github.com/respondcreate/django-versatileimagefield/
SummaryA drop-in replacement for django's ImageField that provides a flexible, intuitive and easily-extensible interface for creating new images from the one assigned to the field.
upload_time2024-01-21 16:24:31
maintainer
docs_urlNone
authorJonathan Ellenberger
requires_python
licenseMIT License, see LICENSE
keywords django
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ==========================
django-versatileimagefield
==========================

.. image:: https://github.com/respondcreate/django-versatileimagefield/actions/workflows/tests.yml/badge.svg
    :target: https://github.com/respondcreate/django-versatileimagefield/actions/workflows/tests.yml
    :alt: Github Actions Status

.. image:: https://coveralls.io/repos/github/respondcreate/django-versatileimagefield/badge.svg?branch=master
    :target: https://coveralls.io/github/respondcreate/django-versatileimagefield?branch=master
    :alt: Coverage Status

.. image:: https://img.shields.io/pypi/v/django-versatileimagefield.svg?style=flat
    :target: https://pypi.python.org/pypi/django-versatileimagefield/
    :alt: Latest Version

----

A drop-in replacement for django's ``ImageField`` that provides a flexible, intuitive and easily-extensible interface for creating new images from the one assigned to the field.

`Click here for a quick overview <https://django-versatileimagefield.readthedocs.io/en/latest/overview.html>`_ of what it is, how it works and whether or not it's the right fit for your project.

Compatibility
=============

- Python:

  - 3.6
  - 3.7
  - 3.8
  - 3.9

- `Django <https://www.djangoproject.com/>`_:

  - 3.0.x
  - 3.1.x
  - 3.2.x
  - 4.0.x
  - 4.1.x
  - 5.0.x

**NOTE**: The 1.4 release dropped support for Django 1.5.x & 1.6.x.

**NOTE**: The 1.7 release dropped support for Django 1.7.x.

**NOTE**: The 2.1 release dropped support for Django 1.9.x.

**NOTE**: The 3.0 release dropped support for Django 2.x.

- `Pillow <https://pillow.readthedocs.io/en/latest/index.html>`_ >= 6.2.0

- `Django REST Framework <http://www.django-rest-framework.org/>`_:

  - 3.14.x

Documentation
=============

Full documentation available at `Read the Docs <https://django-versatileimagefield.readthedocs.io/en/latest/>`_.

Code
====

``django-versatileimagefield`` is hosted on `github <https://github.com/WGBH/django-versatileimagefield>`_.

Running Tests
=============

If you're running tests on Mac OSX you'll need `libmagic` installed. The recommended way to do this is with ``homebrew``:

.. code-block:: bash

    $ brew install libmagic

Note: Some systems may also be necessary to install the `non-python Pillow build dependencies <https://pillow.readthedocs.io/en/stable/installation.html#external-libraries>`_.

You'll also need ``tox``:

.. code-block:: bash

    $ pip install tox


To run the entire django-versatileimagefield test matrix, that is, run all tests on all supported combination of versions of ``python``, ``django`` and ``djangorestframework``:

.. code-block:: bash

   $ tox

If you just want to run tests against a specific tox environment first, run this command to list all available environments:

.. code-block:: bash

   $ tox -l

Then run this command, substituting ``{tox-env}`` with the environment you want to test:

.. code-block:: bash

   $ tox -e {tox-env}

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/respondcreate/django-versatileimagefield/",
    "name": "django-versatileimagefield",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "django",
    "author": "Jonathan Ellenberger",
    "author_email": "jonathan_ellenberger@wgbh.org",
    "download_url": "https://files.pythonhosted.org/packages/0f/6f/d0e7c144e94e030dea2849273952c898143210c83673186a24d3dd36ff42/django-versatileimagefield-3.1.tar.gz",
    "platform": null,
    "description": "==========================\ndjango-versatileimagefield\n==========================\n\n.. image:: https://github.com/respondcreate/django-versatileimagefield/actions/workflows/tests.yml/badge.svg\n    :target: https://github.com/respondcreate/django-versatileimagefield/actions/workflows/tests.yml\n    :alt: Github Actions Status\n\n.. image:: https://coveralls.io/repos/github/respondcreate/django-versatileimagefield/badge.svg?branch=master\n    :target: https://coveralls.io/github/respondcreate/django-versatileimagefield?branch=master\n    :alt: Coverage Status\n\n.. image:: https://img.shields.io/pypi/v/django-versatileimagefield.svg?style=flat\n    :target: https://pypi.python.org/pypi/django-versatileimagefield/\n    :alt: Latest Version\n\n----\n\nA drop-in replacement for django's ``ImageField`` that provides a flexible, intuitive and easily-extensible interface for creating new images from the one assigned to the field.\n\n`Click here for a quick overview <https://django-versatileimagefield.readthedocs.io/en/latest/overview.html>`_ of what it is, how it works and whether or not it's the right fit for your project.\n\nCompatibility\n=============\n\n- Python:\n\n  - 3.6\n  - 3.7\n  - 3.8\n  - 3.9\n\n- `Django <https://www.djangoproject.com/>`_:\n\n  - 3.0.x\n  - 3.1.x\n  - 3.2.x\n  - 4.0.x\n  - 4.1.x\n  - 5.0.x\n\n**NOTE**: The 1.4 release dropped support for Django 1.5.x & 1.6.x.\n\n**NOTE**: The 1.7 release dropped support for Django 1.7.x.\n\n**NOTE**: The 2.1 release dropped support for Django 1.9.x.\n\n**NOTE**: The 3.0 release dropped support for Django 2.x.\n\n- `Pillow <https://pillow.readthedocs.io/en/latest/index.html>`_ >= 6.2.0\n\n- `Django REST Framework <http://www.django-rest-framework.org/>`_:\n\n  - 3.14.x\n\nDocumentation\n=============\n\nFull documentation available at `Read the Docs <https://django-versatileimagefield.readthedocs.io/en/latest/>`_.\n\nCode\n====\n\n``django-versatileimagefield`` is hosted on `github <https://github.com/WGBH/django-versatileimagefield>`_.\n\nRunning Tests\n=============\n\nIf you're running tests on Mac OSX you'll need `libmagic` installed. The recommended way to do this is with ``homebrew``:\n\n.. code-block:: bash\n\n    $ brew install libmagic\n\nNote: Some systems may also be necessary to install the `non-python Pillow build dependencies <https://pillow.readthedocs.io/en/stable/installation.html#external-libraries>`_.\n\nYou'll also need ``tox``:\n\n.. code-block:: bash\n\n    $ pip install tox\n\n\nTo run the entire django-versatileimagefield test matrix, that is, run all tests on all supported combination of versions of ``python``, ``django`` and ``djangorestframework``:\n\n.. code-block:: bash\n\n   $ tox\n\nIf you just want to run tests against a specific tox environment first, run this command to list all available environments:\n\n.. code-block:: bash\n\n   $ tox -l\n\nThen run this command, substituting ``{tox-env}`` with the environment you want to test:\n\n.. code-block:: bash\n\n   $ tox -e {tox-env}\n",
    "bugtrack_url": null,
    "license": "MIT License, see LICENSE",
    "summary": "A drop-in replacement for django's ImageField that provides a flexible, intuitive and easily-extensible interface for creating new images from the one assigned to the field.",
    "version": "3.1",
    "project_urls": {
        "Homepage": "http://github.com/respondcreate/django-versatileimagefield/"
    },
    "split_keywords": [
        "django"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d274940127fc8aeba9fbb57517484056e0cdf5581c0c4205977b9131f5779962",
                "md5": "070428e2e61d7fb3407b4445778aa54f",
                "sha256": "dfdffa11a0d4c169e44f164481d2b26f94a0a00517216ee85748324c2f96a669"
            },
            "downloads": -1,
            "filename": "django_versatileimagefield-3.1-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "070428e2e61d7fb3407b4445778aa54f",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 54397,
            "upload_time": "2024-01-21T16:24:29",
            "upload_time_iso_8601": "2024-01-21T16:24:29.925166Z",
            "url": "https://files.pythonhosted.org/packages/d2/74/940127fc8aeba9fbb57517484056e0cdf5581c0c4205977b9131f5779962/django_versatileimagefield-3.1-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f6fd0e7c144e94e030dea2849273952c898143210c83673186a24d3dd36ff42",
                "md5": "31558e3db9fb5b2dee58e78a966a7280",
                "sha256": "3390e20048098e897bf299b0360763d10cd089665b7aef8eba900eecbaead0d8"
            },
            "downloads": -1,
            "filename": "django-versatileimagefield-3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "31558e3db9fb5b2dee58e78a966a7280",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 29684,
            "upload_time": "2024-01-21T16:24:31",
            "upload_time_iso_8601": "2024-01-21T16:24:31.974642Z",
            "url": "https://files.pythonhosted.org/packages/0f/6f/d0e7c144e94e030dea2849273952c898143210c83673186a24d3dd36ff42/django-versatileimagefield-3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-21 16:24:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "respondcreate",
    "github_project": "django-versatileimagefield",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "django-versatileimagefield"
}
        
Elapsed time: 0.21983s