Metadata-Version: 2.0
Name: django-coinpayments
Version: 0.1.3
Summary: Package for payment handling via https://www.coinpayments.net
Home-page: https://github.com/delneg/django-coinpayments
Author: Denis Bobrov
Author-email: tech@bearle.ru
License: MIT
Keywords: django-coinpayments
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: django-model-utils (>=2.0)

=============================
django-coinpayments
=============================

.. image:: https://badge.fury.io/py/django-coinpayments.svg
    :target: https://badge.fury.io/py/django-coinpayments

.. image:: https://travis-ci.org/Bearle/django-coinpayments.svg?branch=master
    :target: https://travis-ci.org/Bearle/django-coinpayments

.. image:: https://codecov.io/gh/Bearle/django-coinpayments/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/Bearle/django-coinpayments

Package for payment handling via https://www.coinpayments.net

Screenshots
-----------

.. image:: https://github.com/Bearle/django-coinpayments/blob/master/screenshots/transaction.jpg?raw=true

Features
--------

* Has full Coinpayments API client based on .. _`This one`: https://github.com/DogFive/pyCoinPayments
* Has celery, cron tasks for transaction status updates
* Provides a simple `create_tx` method
* Multiple accepted coins can be set using COINPAYMENTS_ACCEPTED_COINS variable in settings.py

Dependencies
============

* `django >= 1.9 <http://djangoproject.com/>`_
* `django-model-utils >=2.0 <https://github.com/jazzband/django-model-utils>`_

Documentation
-------------

The full documentation is at https://django-coinpayments.readthedocs.io.

Quickstart
----------

Install django-coinpayments::

    pip install django-coinpayments

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'django_coinpayments',
        ...
    )

Run ``migrate``::

    python manage.py migrate django_coinpayments


**Important!**

You have to provide API keys with `create_transaction`, `get_tx_info` permissions like this in your settings.py:

.. code-block:: python

    COINPAYMENTS_API_KEY = 'aaaaa'
    COINPAYMENTS_API_SECRET = 'aaa'

Have a look at the `example project <https://github.com/Bearle/django-coinpayments/blob/master/example/example/views.py>`_ to see usage examples.
As for now, the example project views cover creating new transactions, viewing payments and coinpayments transactions,
creating new payments using modelforms and creating new coinpayments transactions instead of the old one's (if the payment was filled partially)

Running Tests
-------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install tox
    (myenv) $ tox

Credits
-------

Tools used in rendering this package:

*  Cookiecutter_
*  `cookiecutter-djangopackage`_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage




History
-------
0.1.3 (2018-12-12)
++++++++++++++++++

* Incorporate old fixed (e.g. 65 digits)

0.1.2 (2018-04-26)
++++++++++++++++++

* Made 'id' field on CoinPaymentsTransaction editable

0.1.1 (2018-04-26)
++++++++++++++++++

* Some typo fixes by https://github.com/rubik

0.1.0 (2018-04-06)
++++++++++++++++++

* First release on PyPI.


