Credential validation
Project description
Account credentials checker
This package takes care of verifing the credentials serverside.
Download
You can pip install by
pip3 install Credentials-Validator
Usage
You can import the pakage by typing
from Credentials_Validator import UsernameValidator, PasswordValidator
The general usage is:
from Credentials_Validator import UsernameValidator
user = UsernameValidator([4], # length range
[1], # number of lower-case chars range
[1], # number of upper-case chars range
[1,3], # number of numbers range
[0,0], # number of symbols range
)
The use of range is:
[2, 5] # minimum 2, maximum 5 characters
[1] # at least one
[0] # not necessary, not denied
[0, 4] # not necessary, maximum 4 characters
[0, 0] # denied
Validation
In order to validate a text (Username or password) you have to call the method Validator.verify(text).
It returns two objects:
- a
boolean(Trueif the text is valid,Falseif there is one or more errors) - a
string, that can be:''empty, if there are no errors'length'if thetextis too short or too long'lower'if there are too few or too many lower-case characters'upper'if there are too few or too many upper-case characters'digit'if there are too few or too many numbers'symbols'if there are too few or too many allowed symbols
from Credentials_Validator import UsernameValidator
user = UsernameValidator([4, 10], [1], [2], [0], [1],)
is_valid, error = user.verify('PasswOrd!')
print((is_valid, error))
#returns (True, '')
is_valid, error = user.verify('PasswOrd3')
print((is_valid, error))
#returns (False, 'symbols')
is_valid, error = user.verify('Password!')
print((is_valid, error))
#returns (False, 'upper')
is_valid, error = user.verify('th1sPasswOrdist00long')
print((is_valid, error))
#returns (False, 'length')
Differences between UsernameValidator and PasswordValidator
UsernameValidator
The UsernameValidator comes with a special argument called django_model.
It can be used to automatically check if the username is already taken in the Django User model, if it is taken, it will return the error 'existing'
In this example the default User model is passed:
from django.contrib.auth.models import User
from Credentials_Validator import UsernameValidator
user = UsernameValidator([4,10], [1], [1], [2], [0,0], django_model=User)
If you are using a custom Django User model:
from django.contrib.auth import get_user_model
from Credentials_Validator import UsernameValidator
user = UsernameValidator([4,10], [1], [1], [2], [0,0], django_model=get_user_model())
PasswordValidator
The PasswordValidator comes with a special argument called username.
It checks if the password is the same as the username, in which case it returns the 'equal' error.\
from Credentials_Validator import PasswordValidator
username = 'myusername'
password = PasswordValidator([8,12], [2], [2], [2], [1], username=username)
Extra features
Customization
The default symbols are: !"#$%&'()*+,-./:;<=>?@[\]^_{|}~.
You can customize the simbols by passing your custom list (string) as a keyword argument:
from Credentials_Validator import UsernameValidator
my_symbols = '!?$%&@#'
user = UsernameValidator([4, 10], [1], [1], [0], [1], symbols_list=my_symbols)
Inheritance
You can add your custom verification function by inheriting the Validator class and overriding the __init__ method to add keyword arguments and extra_validation one to add your validatin function.
The __init__ should look like this:
from Credentials_Validator import Validator
class MyValidator(Validator):
def __init__(self, length, chars, Chars, nums, symbols, **kwargs):
super().__init__(length, chars, Chars, nums, symbols, **kwargs) # DON'T EDIT THIS!
self.myargument = kwargs.get('mykeyword', None) # Edit 'myargument' and 'mykeyword'
The extra_validation should return None if the text is valid, if it is not, False and myerrormessage (can be anything)
def extra_validation(self, text): # text is the .verify() argument
if self.myargument in text: # can be any condition
return False, 'myerror'
return None
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file Credentials_Validator-0.0.4.tar.gz.
File metadata
- Download URL: Credentials_Validator-0.0.4.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.14.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b94436c823f93ba3fabb8d20c465314fc5742bc8564f0431654f88713efb8703
|
|
| MD5 |
8c03ec591ca6c85a8e246d7755df9af1
|
|
| BLAKE2b-256 |
e7f6558a82787dc6d856cc4dd41ce852580b8c53370790c010db4b5f82d267f7
|
File details
Details for the file Credentials_Validator-0.0.4-py3-none-any.whl.
File metadata
- Download URL: Credentials_Validator-0.0.4-py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.14.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd87b5c99f8c6af8ee094353080f80655e292b6e541047f5bda5206083489ca9
|
|
| MD5 |
c97c1a186294a5b7283badb9669800f3
|
|
| BLAKE2b-256 |
0f11c3267787a74db75fbf5808eb3fdefdb40dc321d6537ebd816a0bd36d781f
|