Metadata-Version: 2.1
Name: ccvag
Version: 0.1.1
Summary: Credit Card Validator and Generator
Author-email: Kyle Sin Lynn <kylesinlynn@gmail.com>
License: Copyright (c) 2023 Kyle Sin Lynn. All rights reserved.
        
        Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
        
        1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
        2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
        3. All advertising materials mentioning features or use of this software must display the following acknowledgement:
        This product includes software developed by the organization.
        4. Neither the name of the copyright holder nor the names the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
           
        THIS SOFTWARE IS PROVIDED BY COPYRIGHT HOLDER "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Project-URL: Homepage, https://github.com/kylesinlynn/luhn
Project-URL: Bug Tracker, https://github.com/kylesinlynn/luhn/issues
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# 💳 CCVAG
> This python package is inspired by [Luhn](https://github.com/amm834/luhn) and [Panify](https://github.com/amm834/panify).

`CCVAG` stands for Credit Card Validator and Generator.

# Content
- [💳 CCVAG](#-ccvag)
- [Content](#content)
- [Installation](#installation)
- [Uses](#uses)
- [Troubleshooting](#troubleshooting)
- [Contributing](#contributing)
- [License](#license)

# Installation
```bash
python -m pip install ccvag
```

# Uses
After [Installation](#installation) process, you can import `validator` or `generator` from `ccvag`.

```python
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))

```

# Troubleshooting
Create an issue upon your error that is associated with this project.

# Contributing
Feel free to fork and create pull requests. Your contribution will be appreciated.

# License
This project is licensed under [BSD License](LICENSE).
