Metadata-Version: 2.1
Name: ccard
Version: 0.2.0
Summary: credit card generator
Home-page: https://github.com/davidsamir/credit-card-generator/
Author: David Samir
Author-email: dsamir@davidsamir.com
License: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: PyPy
License-File: LICENSE.txt
License-File: AUTHORS.rst

ccard
=====

Fake credit-card generator
is a Python 3 Package for TESTING PURPOSES AND DATA VERIFICATION ONLY!
Instead of using a real credit card
this tool will help you generate a vaild credit card numbers
Giving you the option to generate the following type of credit card

- Visa
- Discover
- Master Card
- American Express


Installation
------------

The script is `available on PyPI`_.  To install with pip::

    pip install ccard


Usage
-----

credit-card generator can be used as a command line utility or imported as a Python package.


Command Line Usage
~~~~~~~~~~~~~~~~~~
To use the script from the command line:
the defualt value is Visa
.. code-block:: bash

    $ ccard  
    4916232538105515

Python Package Usage
~~~~~~~~~~~~~~~~~~~~
Here are examples of all current features:

.. code-block:: pycon

    >>> import ccard
    >>> ccard.visa()
    4485610834415848
    >>> ccard.discover()
    6011017754491148
    >>> ccard.mastercard()
    5179703192884719
    >>> ccard.americanexpress()
    374300139079794

License
-------

This project is released under an MIT License.

.. _available on PyPI: http://pypi.python.org/pypi/ccard/


Contributing
============

Please file bugs to the `Github issue tracker`_.  Pull requests are welcome.

.. _Github issue tracker: https://github.com/davidsamir/credit-card-generator


Hacking and Pull Requests
-------------------------

Opening your pull request sooner will allow others to comment on it sooner.

A checklist of things to remember when making a feature:

- Write tests if applicable
- Update the `README`_ file if needed
- Update the documentation if needed
- Add yourself to the `AUTHORS`_ file

.. _AUTHORS: AUTHORS.rst
.. _README: README.md
