Skip to content

bitcart/bitcart-sdk

Folders and files

NameName
Last commit message
Last commit date
Dec 24, 2024
Dec 24, 2024
Dec 16, 2024
Dec 16, 2024
Dec 16, 2024
Sep 6, 2021
Dec 15, 2024
Jan 8, 2025
Dec 16, 2024
Dec 16, 2024
Aug 13, 2023
Jan 28, 2023
Jan 10, 2024
Dec 16, 2024
Aug 13, 2023
Dec 16, 2024
Dec 16, 2024
Dec 24, 2024

Repository files navigation

Bitcart SDK

CircleCI Codecov PyPI version Read the Docs

This is a client library(wrapper) around Bitcart daemon. It is used to simplify common commands. Coins support(⚡ means lightning is supported):

  • Bitcoin (⚡)
  • Bitcoin Cash
  • Monero
  • Ethereum
  • Binance coin (BNB)
  • SmartBCH
  • Polygon (MATIC)
  • Tron (TRX)
  • Ergon
  • Litecoin (⚡)
  • Globalboost (⚡)
  • Groestlcoin (⚡)

Main focus is Bitcoin.

This library supports both asynchronous and synchronous usages.

You can call it's methods synchronously, like so:

print(btc.help())

Or you can await it's methods when using from async functions:

async def main():
    print(await btc.help())

Async callback functions for @btc.on are supported.

For more information Read the Docs

Release versioning

We follow a custom variant of semver:

major.minor.feature.bugfix

Where major is changed not frequently, and means significant changes to the SDK

minor means breaking changes

feature means adding new features without breaking existing APIs

bugfix means fixing bugs without breaking existing APIs

Contributing

See CONTRIBUTING.md.

Copyright and License

Copyright (C) 2019 MrNaif2018

Licensed under the MIT license