Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/subhajeet2107/pycard-validate
Blazing fast Python Credit Card 💳 Validator using Luhn Algorithm 🚀
https://github.com/subhajeet2107/pycard-validate
credit-card python validation validators
Last synced: about 1 month ago
JSON representation
Blazing fast Python Credit Card 💳 Validator using Luhn Algorithm 🚀
- Host: GitHub
- URL: https://github.com/subhajeet2107/pycard-validate
- Owner: subhajeet2107
- License: mit
- Created: 2019-08-03T06:27:12.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-04T09:37:39.000Z (over 5 years ago)
- Last Synced: 2024-04-24T18:09:16.972Z (8 months ago)
- Topics: credit-card, python, validation, validators
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE
Awesome Lists containing this project
- awesome-blazingly-fast - pycard-validate - Blazing fast Python Credit Card 💳 Validator using Luhn Algorithm 🚀 (Python)
README
pycard-validator
==========================A simple python module to implement credit card number validation using Luhn Algorithm.
[![Build Status](https://travis-ci.org/subhajeet2107/pycard-validate.svg?branch=master)](https://travis-ci.org/subhajeet2107/pycard-validate) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/Django.svg) [![PyPI version](https://badge.fury.io/py/pycard-validate.svg)](https://badge.fury.io/py/pycard-validate) [![PyPI license](https://img.shields.io/pypi/l/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/)
## Installation
Install in your project with pip:
```bash
pip install pycard-validate
```## Usage
An example use:
```python
from pycardvalidator.validator import pycvalid
result = pycvalid.validate('4111 1111 1111 1111')```
## License
MIT license. See `LICENSE.md` for more information.