CCVAG
stands for Credit Card Validator and Generator.
You are in the main
branch which is intended for development. Go to Releases for released version of this project.
python -m pip install ccvag
After Installation process, you can import validator
or generator
from ccvag
.
from ccvag import validator, generator
# Validate the credit card
print(validator('4242424242424242'))
# Generate the credit cards
# First Arg - must be the first-sixth number which you might choose to enter by yourself
# Second Arg - would be the count which the function will generate
print(generator('424242', 50))
Create an issue upon your error that is associated with this project.
Feel free to fork and create pull requests. Your contribution will be appreciated.
This project is licensed under BSD License.