Metadata-Version: 2.1
Name: dk-test-py2
Version: 0.0.12
Summary: A small example package
Home-page: https://github.com/Dip1059/python-test-pkg
Author: Example Author
Author-email: author@example.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.22.0)

``` python
    import collpay

    collpay_obj = collpay.Collpay("0810545410c0dd7822cdd7c7caa336b2", collpay.ENV_SANDBOX, collpay.V1)

    response = collpay_obj.get_exchange_rate("USD", "BTC")
    print(response)

    response = collpay_obj.create_transaction({
        'payment_currency': 'BTC',
        'order_currency': 'USD',
        'order_amount': '10',
        'payer_name': 'Xxx',
        'payer_email': 'xxx@gmail.com',
        'payer_phone': 'xxxxxxxx',
        'payer_address': 'Bangladesh 1216',
        'ipn_url': 'https://webhook.site/3b3ed4bf-8adb-4aec-b360-1d0c1c394766',
        'ipn_secret': 'Cf9mx4nAvRuy5vwBY2FCtaKr',   #Any random secret string of your's, It can be empty.
        'success_url': 'https://www.success.io/success.html',
        'cancel_url': 'https://www.failure.io/cancel.html',
        'cart': '{"item_name":"t-shirt","item_number":"23","invoice":"SDF-453672-PMT"}',   #Send any data format like json
        'webhook_data': '{"order_id":"ABC12345-12"}'    #Send any data format like json
    })
    print(response)

    response = collpay_obj.get_transaction("xxxxxxxxxxx")
    print(response)

```


