Metadata-Version: 2.1
Name: bitcart
Version: 0.9.1
Summary: BitcartCC coins support library
Home-page: https://github.com/MrNaif2018/bitcart-sdk
Author: MrNaif2018
Author-email: chuff184@gmail.com
License: MIT
Keywords: electrum,daemon,bitcart,bitcartcc
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
Requires-Dist: jsonrpcclient[requests]
Provides-Extra: proxy
Requires-Dist: requests[socks] ; extra == 'proxy'
Provides-Extra: webhook
Requires-Dist: flask ; extra == 'webhook'

# BitcartCC SDK
[![CircleCI](https://circleci.com/gh/MrNaif2018/bitcart-sdk.svg?style=svg)](https://circleci.com/gh/MrNaif2018/bitcart-sdk)
[![Codecov](https://img.shields.io/codecov/c/github/MrNaif2018/bitcart-sdk?style=flat-square)](https://codecov.io/gh/MrNaif2018/bitcart-sdk)
[![PyPI version](https://img.shields.io/pypi/v/bitcart.svg?style=flat-square)](https://pypi.python.org/pypi/bitcart/)
[![Read the Docs](https://img.shields.io/readthedocs/bitcart-sdk?style=flat-square)](https://sdk.bitcartcc.com)


This is a client library(wrapper) around BitcartCC daemon. It is used to simplify common commands.
Coins support(⚡ means lightning is supported):
- Bitcoin(⚡)
- Bitcoin Cash
- Litecoin(⚡)
- Gravity Zero(⚡)
- Globalboost(⚡)

Main focus is Bitcoin.

This library supports both asynchronous and synchronous versions.
Use `bitcart` as a sync version(better for beginners), and `bitcart-async` for async version.

If you install from github, by default it is async.
Use:
```
ASYNC=false python setup.py install
```
For it to convert async version to sync and install that.
That process is done via ``sync_generator.py``.

For more information [Read the Docs](https://sdk.bitcartcc.com)

Async version's APIs are the same as sync, just use async and await.
Async callback functions for @btc.on now supported.

## Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md).

