django-tinymce


Namedjango-tinymce JSON
Version 3.7.1 PyPI version JSON
download
home_page
SummaryA Django application that contains a widget to render a
upload_time2024-02-06 07:54:41
maintainer
docs_urlhttps://pythonhosted.org/django-tinymce/
author
requires_python>=3.8
licenseMIT License
keywords django widget tinymce
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            django-tinymce
==============

**django-tinymce** is a Django application that contains a widget to render a form field as a TinyMCE editor.

.. image:: https://jazzband.co/static/img/badge.svg
        :target: https://jazzband.co/
        :alt: Jazzband

.. image:: https://img.shields.io/pypi/v/django-tinymce.svg
        :target: https://pypi.python.org/pypi/django-tinymce

.. image:: https://img.shields.io/pypi/pyversions/django-tinymce.svg
        :target: https://pypi.python.org/pypi/django-tinymce

.. image:: https://img.shields.io/pypi/djversions/django-tinymce.svg
        :target: https://pypi.org/project/django-tinymce/

.. image:: https://img.shields.io/pypi/dm/django-tinymce.svg
        :target: https://pypi.python.org/pypi/django-tinymce

.. image:: https://github.com/jazzband/django-tinymce/workflows/Test/badge.svg
   :target: https://github.com/jazzband/django-tinymce/actions
   :alt: GitHub Actions

.. image:: https://codecov.io/gh/jazzband/django-tinymce/branch/master/graph/badge.svg
   :target: https://codecov.io/gh/jazzband/django-tinymce
   :alt: Code coverage


Quickstart
==========

Install django-tinymce:

.. code-block:: bash

    $ pip install django-tinymce

Add tinymce to INSTALLED_APPS in settings.py for your project:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'tinymce',
    )

Add tinymce.urls to urls.py for your project:

.. code-block:: python

    urlpatterns = [
        ...
        path('tinymce/', include('tinymce.urls')),
    ]

In your code:

.. code-block:: python

    from django.db import models
    from tinymce.models import HTMLField

    class MyModel(models.Model):
        ...
        content = HTMLField()

**django-tinymce** uses staticfiles so everything should work as expected, different use cases (like using widget instead of HTMLField) and other stuff is available in documentation.

Releases
========

Latest release is 3.7.1. It supports Python 3.8+ and Django 3.2 to 5.0.

Using TinyMCE 5.10.7.

Previous releases can be found on github, but they are no longer maintained.

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

https://django-tinymce.readthedocs.org/

Support and updates
===================

Use github issues https://github.com/jazzband/django-tinymce/issues

License
=======

Originally written by Joost Cassee.

This program is licensed under the MIT License (see LICENSE.txt)

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "django-tinymce",
    "maintainer": "",
    "docs_url": "https://pythonhosted.org/django-tinymce/",
    "requires_python": ">=3.8",
    "maintainer_email": "R\u00e9my Hubscher <hubscher.remy@gmail.com>, Claude Paroz <claude@2xlibre.net>",
    "keywords": "django,widget,tinymce",
    "author": "",
    "author_email": "Aljosa Mohorovic <aljosa.mohorovic@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/3a/f2/537cf2bafdc5363fe4d105788bd85c8fe49b31a928ce729d6b458887f0bc/django-tinymce-3.7.1.tar.gz",
    "platform": null,
    "description": "django-tinymce\n==============\n\n**django-tinymce** is a Django application that contains a widget to render a form field as a TinyMCE editor.\n\n.. image:: https://jazzband.co/static/img/badge.svg\n        :target: https://jazzband.co/\n        :alt: Jazzband\n\n.. image:: https://img.shields.io/pypi/v/django-tinymce.svg\n        :target: https://pypi.python.org/pypi/django-tinymce\n\n.. image:: https://img.shields.io/pypi/pyversions/django-tinymce.svg\n        :target: https://pypi.python.org/pypi/django-tinymce\n\n.. image:: https://img.shields.io/pypi/djversions/django-tinymce.svg\n        :target: https://pypi.org/project/django-tinymce/\n\n.. image:: https://img.shields.io/pypi/dm/django-tinymce.svg\n        :target: https://pypi.python.org/pypi/django-tinymce\n\n.. image:: https://github.com/jazzband/django-tinymce/workflows/Test/badge.svg\n   :target: https://github.com/jazzband/django-tinymce/actions\n   :alt: GitHub Actions\n\n.. image:: https://codecov.io/gh/jazzband/django-tinymce/branch/master/graph/badge.svg\n   :target: https://codecov.io/gh/jazzband/django-tinymce\n   :alt: Code coverage\n\n\nQuickstart\n==========\n\nInstall django-tinymce:\n\n.. code-block:: bash\n\n    $ pip install django-tinymce\n\nAdd tinymce to INSTALLED_APPS in settings.py for your project:\n\n.. code-block:: python\n\n    INSTALLED_APPS = (\n        ...\n        'tinymce',\n    )\n\nAdd tinymce.urls to urls.py for your project:\n\n.. code-block:: python\n\n    urlpatterns = [\n        ...\n        path('tinymce/', include('tinymce.urls')),\n    ]\n\nIn your code:\n\n.. code-block:: python\n\n    from django.db import models\n    from tinymce.models import HTMLField\n\n    class MyModel(models.Model):\n        ...\n        content = HTMLField()\n\n**django-tinymce** uses staticfiles so everything should work as expected, different use cases (like using widget instead of HTMLField) and other stuff is available in documentation.\n\nReleases\n========\n\nLatest release is 3.7.1. It supports Python 3.8+ and Django 3.2 to 5.0.\n\nUsing TinyMCE 5.10.7.\n\nPrevious releases can be found on github, but they are no longer maintained.\n\nDocumentation\n=============\n\nhttps://django-tinymce.readthedocs.org/\n\nSupport and updates\n===================\n\nUse github issues https://github.com/jazzband/django-tinymce/issues\n\nLicense\n=======\n\nOriginally written by Joost Cassee.\n\nThis program is licensed under the MIT License (see LICENSE.txt)\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "A Django application that contains a widget to render a",
    "version": "3.7.1",
    "project_urls": {
        "Changelog": "https://github.com/jazzband/django-tinymce/blob/master/CHANGELOG.rst",
        "Documentation": "https://django-tinymce.readthedocs.org/",
        "Homepage": "https://github.com/jazzband/django-tinymce"
    },
    "split_keywords": [
        "django",
        "widget",
        "tinymce"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96eb8332a0484e8a13f416f86f948c3da147959213f150f628b3ae574bb7d2ce",
                "md5": "fd784b1453386d283bae97ca7cc106ec",
                "sha256": "beb4d27cdacd4f8b00c90378f02898cb448e9f01a1a8a65eff4c38ca3c8edbc9"
            },
            "downloads": -1,
            "filename": "django_tinymce-3.7.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "fd784b1453386d283bae97ca7cc106ec",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 1123935,
            "upload_time": "2024-02-06T07:54:05",
            "upload_time_iso_8601": "2024-02-06T07:54:05.603574Z",
            "url": "https://files.pythonhosted.org/packages/96/eb/8332a0484e8a13f416f86f948c3da147959213f150f628b3ae574bb7d2ce/django_tinymce-3.7.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3af2537cf2bafdc5363fe4d105788bd85c8fe49b31a928ce729d6b458887f0bc",
                "md5": "ebfefd980692e31d63f29dc5597a3a3d",
                "sha256": "29086daffb337bdd2178413e600693dff846aa4efd557c3924b8c3cba9a37e8c"
            },
            "downloads": -1,
            "filename": "django-tinymce-3.7.1.tar.gz",
            "has_sig": false,
            "md5_digest": "ebfefd980692e31d63f29dc5597a3a3d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 970097,
            "upload_time": "2024-02-06T07:54:41",
            "upload_time_iso_8601": "2024-02-06T07:54:41.594603Z",
            "url": "https://files.pythonhosted.org/packages/3a/f2/537cf2bafdc5363fe4d105788bd85c8fe49b31a928ce729d6b458887f0bc/django-tinymce-3.7.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-06 07:54:41",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jazzband",
    "github_project": "django-tinymce",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "django-tinymce"
}
        
Elapsed time: 0.18516s