KO
|
EN
gitlite — search
Search
#python
#javascript
#typescript
#rust
#deep-learning
#nextjs
#kotlin
#machine-learning
#telegram-bot
#react
#reactjs
#ecommerce
block_io-python
★ 30
Open GitHub ↗
Python library for Block.io
Download README (.md)
Explore Similar Repositories
SewKinect
:
Final Hackbright Project - Kinect Body Measurements
base16-syntax
:
A Base16 syntax theme with support for all Base16 color schemes and styles.
jishou
:
即搜房产APP是房地产租售服务平台,专注于房地产租售信息服务,全面覆盖新房、二手房、租房、商铺、写字楼五大业务,为广大网友提供真实可靠的房源,同时为开发商与经纪人提供高效的网络推广平台。
gns3-large
:
GNS3 dockerfile with VPCS, IOU support, QEMU and Wireshark
LibrERP
:
Italia Taste Odoo 6.1
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
block_io-python
?
Download (.md)
# BlockIo This Python package is the official reference client for the Block.io payments API. To use this, you will need the Dogecoin, Bitcoin, or Litecoin API key(s) from <a href="https://block.io" target="_blank">Block.io</a>. Go ahead, sign up :) #### COMPATIBILITY: Please use Python 3.6+. Untested on Windows: ensure all tests pass before using this package regardless. ## Installation [Using virtualenv is recommended when installing Python packages](https://packaging.python.org/en/latest/installing.html#virtual-environments). Install the package using `pip3`: pip3 install block-io ## Usage It's super easy to get started. In your Python shell, do: from block_io import BlockIo block_io = BlockIo('API KEY', 'SECRET PIN', API_VERSION) # print the account balance print block_io.get_balance() # print all addresses on this account print block_io.get_my_addresses() For more information, see [Python API Docs](https://block.io/api/simple/python). This Python client provides a mapping for all methods listed on the Block.io API site. ## Contributing 1. Fork it ( https://github.com/BlockIo/block_io-python/fork ) 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create a new Pull Request