Skip to main content

Some useful database field definitions for Django.

Project description

# django-useful-fields

I found myself copying a few Django database field classes from project to project so I decided to bundle them together and release them as an open source package instead. Here are the fields that are currently included:

  • TimeZoneField

    This field stores a reference to a time zone in the database and automatically instantiates the correct pytz time zone object on retrieval. Useful for recording a user’s default time zone.

  • MarkdownCharField

    This field is meant to be used in collaboration with a regular CharField. The regular CharField stores the Markdown- formatted source text and this field will store the rendered HTML version of that same text. Use the populate_from argument to indicated which field on the same model contains the source text. If the allow_html argument is False (the default), any HTML tags present in the source text will be removed using the [bleach library](https://github.com/mozilla/bleach). The extensions argument can be used to enable any desired [extensions](https://pythonhosted.org/Markdown/extensions/index.html) for the [Markdown library](https://pythonhosted.org/Markdown/). One extension is enabled by default: [SmartyPants](https://pythonhosted.org/Markdown/extensions/smarty.html). SmartyPants is configured to use the correct Unicode characters (e.g. “) rather than HTML entities (e.g. &ldquo;). Since CharFields don’t normally contain paragraphs of text, MarkdownCharField strips the <p></p> tags that Markdown always includes.

  • MarkdownTextField

    This field is meant to be used in collaboration with a regular TextField. The regular TextField stores the Markdown- formatted source text and this field will store the rendered HTML version of that same text. Use the populate_from argument to indicated which field on the same model contains the source text. If the allow_html argument is False (the default), any HTML tags present in the source text will be removed using the [bleach library](https://github.com/mozilla/bleach). The extensions argument can be used to enable any desired [extensions](https://pythonhosted.org/Markdown/extensions/index.html) for the [Markdown library](https://pythonhosted.org/Markdown/). One extension is enabled by default: [SmartyPants](https://pythonhosted.org/Markdown/extensions/smarty.html). SmartyPants is configured to use the correct Unicode characters (e.g. “) rather than HTML entities (e.g. &ldquo;).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-useful-fields-0.0.1.tar.gz (3.3 kB view hashes)

Uploaded Source

Built Distribution

django_useful_fields-0.0.1-py2.py3-none-any.whl (5.6 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page