Skip to main content

Date and time dependend content manipulation

Project description

Date and time dependend content manipulation.

Quick start

  1. Install using pip:

    pip install django-time-wizard
  2. Make sure to follow the installation steps for django-polymorphic

  3. Add to your INSTALLED_APPS:

    'polymorphic',
    'time_wizard',
  4. Include the time_wizard admin URLs in your project urls.py:

    url(^'admin/', include('time_wizard.urls')),
  5. Run python manage.py migrate to create the time_wizard models.

Note

Upgrading from version 0.2.0 to 1.0.0 will delete all the created models of time_wizard!

Usage

You can use the TimeWizard in different ways:

  • use a ForeignKey-relation

    • use one TimeWizardModel-definition for as much models as you want

    • affects your database as the relation needs a new model field

    • example:

      from time_wizard.mixins import TimeWizardMixin
      ...
      class MyModel(TimeWizardMixin, models.Model):
          ...
  • use the PeriodModelInline in the admin, for example:

    • each model of yours can have different time-settings

    • does not effect your database as it works with a generic relationship

    • example:

      from time_wizard.admin import PeriodModelInline
      from polymorphic.admin import PolymorphicInlineSupportMixin
      ...
      class MyModelAdmin(PolymorphicInlineSupportMixin, admin.ModelAdmin):
          inlines = [PeriodModelInline]
          ...

Settings

Django-time-wizard uses the defined countries and provinces/states from holidays. Definitions need to be compatible with holidays. You can also define this yourself for your needs:

TIME_WIZARD_COUNTRIES = ['US', 'UK', 'DE', ...]
TIME_WIZARD_COUNTRY_PROVINCES = {'US': ['AL', 'AK', ...], ...}

Requirements

  • django

  • django-polymorphic

  • holidays

Tests

Setup your test environment with virtualenv and install the requirements with pip install .. Also install tox via pip and simply run tox.

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-time-wizard-1.0.0.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

django_time_wizard-1.0.0-py3-none-any.whl (14.0 kB view details)

Uploaded Python 3

File details

Details for the file django-time-wizard-1.0.0.tar.gz.

File metadata

  • Download URL: django-time-wizard-1.0.0.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.5.3

File hashes

Hashes for django-time-wizard-1.0.0.tar.gz
Algorithm Hash digest
SHA256 d5649387d9c1d57e3cdeb937ff0881fbdeccc1b5b1851bafcf8c08b92b4a5c32
MD5 0ebdc338e14ddd3ec629a344865b31ed
BLAKE2b-256 39d3d071dc824494864f805e730e43187fbb8a9af09dc0099efa53e56ee55cb5

See more details on using hashes here.

File details

Details for the file django_time_wizard-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: django_time_wizard-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 14.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.5.3

File hashes

Hashes for django_time_wizard-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b0d9d9e33166d94f2c8e6e674eae3cfece764b71dee99886404950ab0edef83a
MD5 18cb1856e1dbc27d21c902d7c7abcb1a
BLAKE2b-256 89910f5b2f52a64f60bd296abfb5ed4aaf4425f3db227d9bba25e153f5e24fd6

See more details on using hashes here.

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