Skip to main content

Adds time limited price levels to your model.

Project description

https://badge.fury.io/py/django-price-level.png https://travis-ci.org/PetrDlouhy/django-price-level.png?branch=master

Adds time limited price levels to your model class.

Documentation

The full documentation is at https://django-price-level.readthedocs.io.

Quickstart

Install django-price-level:

pip install django-price-level

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'price_level',
    ...
)

Configure in your settings the desired model:

from model_utils import Choices
PRICE_LEVEL_MODEL = 'your.Model'
PRICE_LEVEL_CATEGORY_CHOICES = Choices(('basic', _('Basic')), ('company', _('For companies')))
PRICE_LEVEL_CATEGORY_DEFAULT = 'basic'

Add author middleware in settings:

MIDDLEWARE_CLASSES = [
    ...
    'author.middlewares.AuthorDefaultBackendMiddleware',
    ...
 ]

Use Pricable behavioral mixin to your model:

from price_level.models import Pricable
class Model(Pricable, models.Model):
   ...

Now you can get current price for your category:

price_level = model.get_current_price_level(category='company')

Features

  • Adds PriceLevel models can be bound to your model class

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package:

History

0.1.0 (2017-01-05)

  • First release on PyPI.

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-price-level-1.0.0.tar.gz (16.0 kB view details)

Uploaded Source

File details

Details for the file django-price-level-1.0.0.tar.gz.

File metadata

File hashes

Hashes for django-price-level-1.0.0.tar.gz
Algorithm Hash digest
SHA256 c26dfb3358717974159cdc949e665cc18a42376311f960f71fa287988ded9963
MD5 745781a4f12cb6ea407238323c01f6fc
BLAKE2b-256 809dca63318b79bfe0791f68cc79d348e9359a8a44b780a662578dda97ea5358

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