Coder Social home page Coder Social logo

ayr-ton / django2-isbn-field Goto Github PK

View Code? Open in Web Editor NEW

This project forked from secnot/django-isbn-field

0.0 2.0 0.0 26 KB

Django model field to store and validate ISBN numbers.

License: GNU Lesser General Public License v3.0

Python 100.00%

django2-isbn-field's Introduction

django2-isbn-field Build Status

Provides django model field to store and validate ISBN numbers.

Requirements

It has been tested on

  • Python >= 3.5
  • Django 1.10, 1.11, 2.0

Installation

From Pypi

$ pip install django2-isbn-field

or from the repository

$ git clone https://github.com/ayr-ton/django2-isbn-field
$ python setup.py install

Usage

Add isbn_field to INSTALLED_APPS

# settings.py
INSTALLED_APPS = (
	...
	'isbn_field',
)

Use the field in your model

from django.db import models
from isbn_field import ISBNField

class Book(models.Model):
	isbn = ISBNField()
	...

It will raise a ValidationError when the number provided is invalid.

Further, by default any entered ISBN will be cleaned (dashes and spaces are removed) and stored in this canonical form. You can disable this and store the original form through the clean_isbn flag.

from django.db import models
from isbn_field import ISBNField

class Book(models.Model):
	dirty_isbn = ISBNField(clean_isbn=False)
	...

In case you expect very chaotic input (e.g. more than one space or dash between digits), you might also want to increase the max_length of the field to allow for enough room for the string in the database.

django2-isbn-field's People

Contributors

secnot avatar codezeilen avatar alexander-ae avatar ayr-ton avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.