Skip to main content

Automatically validates when you call your model’s save()

Project description

Make save call full_clean.

Do you think Django models save method will validate all fields (i.e. call full_clean) before saving or any time at all? Wrong!

I discovered this awful truth when I couldn’t understand why a model object with an email field (without blank=True) could be saved with an empty string as email address.

More info:

Installing

First add the application to your Python path. The easiest way is to use pip:

pip install django-smart-save

You should install by downloading the source and running:

$ python setup.py install

Configuring

Make sure you have django.contrib.auth installed, and add the smart_save application to your INSTALLED_APPS list:

INSTALLED_APPS = (
    ...
    'django.contrib.auth',
    'smart_save',
)

You can specify a different method name in your project settings (default: save_if_valid):

SMART_SAVE_METHOD = ‘my_save’

Usage Overview

It is simple:

>>> user = User(username="chris")
>>> user.save_if_valid()
True
>>> user = User(username="")
>>> user.save_if_valid()
False
>>> user._errors
{'username': ['This field cannot be blank.']}

License

Anyone is free to use or modify this software under the terms of the BSD license.

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-smart-save-0.0.11.tar.gz (2.4 kB view details)

Uploaded Source

File details

Details for the file django-smart-save-0.0.11.tar.gz.

File metadata

File hashes

Hashes for django-smart-save-0.0.11.tar.gz
Algorithm Hash digest
SHA256 8321878e2aced53e02dd44cb56a08f31fc9cba2d54aeacf9528952ce4c4b29b5
MD5 8aa42ca571a6b42ca1423895976e1339
BLAKE2b-256 6a6165d3e655d15ed8d47266d4c6fb702b48b6aae8c643b651e6df81a9a80e0b

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