Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Solana | 10,595 | 2 | 406 | 2 hours ago | 376 | July 29, 2023 | 734 | apache-2.0 | Rust | |
Web-Scale Blockchain for fast, secure, scalable, decentralized apps and marketplaces. | ||||||||||
Blockchain | 7,237 | 9 months ago | 115 | mit | C# | |||||
A simple Blockchain in Python | ||||||||||
Lbry Sdk | 7,204 | 3 months ago | 392 | mit | Python | |||||
The LBRY SDK for building decentralized, censorship resistant, monetized, digital content apps. | ||||||||||
Lnd | 7,079 | 14 | 122 | 2 hours ago | 120 | February 25, 2022 | 640 | mit | Go | |
Lightning Network Daemon ⚡️ | ||||||||||
Blockchain_guide | 6,559 | 13 days ago | 7 | December 02, 2021 | 4 | Go | ||||
Introduce blockchain related technologies, from theory to practice with bitcoin, ethereum and hyperledger. | ||||||||||
Blockchain | 5,661 | 2 years ago | 11 | mit | ||||||
区块链 - 中文资源 | ||||||||||
Bitcoinj | 4,678 | 439 | 54 | 8 hours ago | 37 | July 27, 2023 | 469 | apache-2.0 | Java | |
A library for working with Bitcoin | ||||||||||
Bitcore | 4,635 | 1,173 | 509 | a day ago | 97 | April 14, 2023 | 387 | mit | JavaScript | |
A full stack for bitcoin and blockchain-based applications | ||||||||||
Gittorrent | 4,607 | 4 | 3 years ago | 10 | August 28, 2015 | 45 | mit | JavaScript | ||
A decentralization of GitHub using BitTorrent and Bitcoin | ||||||||||
Qbot | 4,402 | a day ago | 46 | mit | Jupyter Notebook | |||||
[🔥updating ...] AI 自动量化交易机器人 Qbot is an AI-oriented quantitative investment platform, which aims to realize the potential, empower AI technologies in quantitative investment. 📃 online docs: https://ufund-me.github.io/Qbot ✨ :news: qbot-mini: https://github.com/Charmve/iQuant |
Bit is Python's fastest Bitcoin library and was designed from the beginning to feel intuitive, be effortless to use, and have readable source code. It is heavily inspired by Requests and Keras.
Bit is so easy to use, in fact, you can do this:
>>> from bit import Key
>>>
>>> my_key = Key(...)
>>> my_key.get_balance('usd')
'12.51'
>>>
>>> # Let's donate!
>>> outputs = [
>>> # Wikileaks
>>> ('1HB5XMLmzFVj8ALj6mfBsbifRoD4miY36v', 0.0035, 'btc'),
>>> # Internet Archive
>>> ('1Archive1n2C579dMsAu3iC6tWzuQJz8dN', 190, 'jpy'),
>>> # The Pirate Bay
>>> ('129TQVAroeehD9fZpzK51NdZGQT4TqifbG', 3, 'eur'),
>>> # xkcd
>>> ('14Tr4HaKkKuC1Lmpr2YMAuYVZRWqAdRTcr', 2.5, 'cad')
>>> ]
>>>
>>> my_key.send(outputs)
'9f59f5c6757ec46fdc7440acbeb3920e614c8d1d247ac174eb6781b832710c1c'
Here is the transaction https://blockchain.info/tx/9f59f5c6757ec46fdc7440acbeb3920e614c8d1d247ac174eb6781b832710c1c.
If you are intrigued, continue reading. If not, continue all the same!
Bit is distributed on PyPI as a universal wheel and is available on Linux/macOS
and Windows and supports Python 3.5+ and PyPy3.5-v5.7.1+. pip
>= 8.1.2 is required.
$ pip install bit
Docs are hosted by Github Pages and are automatically built and published
by Travis after every successful commit to Bit's master
branch.
bit
on the Python Package Index