Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tsileo/txwatcher
A little Python utility that lets you monitor Bitcoin addresses through Blockchain Websocket API and perform custom callbacks.
https://github.com/tsileo/txwatcher
Last synced: about 2 months ago
JSON representation
A little Python utility that lets you monitor Bitcoin addresses through Blockchain Websocket API and perform custom callbacks.
- Host: GitHub
- URL: https://github.com/tsileo/txwatcher
- Owner: tsileo
- License: mit
- Created: 2013-10-07T08:08:28.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-03-04T20:18:20.000Z (almost 7 years ago)
- Last Synced: 2024-05-19T09:35:28.276Z (7 months ago)
- Language: Python
- Homepage:
- Size: 198 KB
- Stars: 48
- Watchers: 6
- Forks: 15
- Open Issues: 5
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- License: LICENSE
Awesome Lists containing this project
- awesome-bitcoin - txwatcher - A little Python utility that lets you monitor Bitcoin addresses through Blockchain Websocket API and perform custom callbacks. (Utilities)
- awesome-taproot - txwatcher - A little Python utility that lets you monitor Bitcoin addresses through Blockchain Websocket API and perform custom callbacks. (Utilities)
- awesome-blockchain - txwatcher
README
===========
TxWatcher
===========A little Python utility that lets you monitor Bitcoin addresses through `Blockchain Websocket API `_ and perform custom callbacks.
.. image:: https://pypip.in/v/txwatcher/badge.png
:target: https://crate.io/packages/txwatcher.. image:: https://pypip.in/d/txwatcher/badge.png
:target: https://crate.io/packages/txwatcherInstallation
============.. code-block::
$ pip install txwatcher
QuickStart
==========.. code-block:: python
from txwatcher import TxWatcher
w = TxWatcher(['18eGUUxUsSetQYxJcQXEQTjSCUETEFeA4E'])
def tx_printer(tx):
print(tx)# You can add as many callbacks as you want
w.on_tx += tx_printerw.run_forever()
# or
import thread
thread.start_new_thread(w.run_forever, ())
# Do some workw.add_addresses(*['16xg9kBKUR2S6bmyccCyPichCpMNMPATAH'])
Transactions format
-------------------.. code-block:: python
{
"op": "utx",
"x": {
"hash": "f6c51463ea867ce58588fec2a77e9056046657b984fd28b1482912cdadd16374",
"ver": 1,
"vin_sz": 4,
"vout_sz": 2,
"lock_time": "Unavailable",
"size": 796,
"relayed_by": "209.15.238.250",
"tx_index": 3187820,
"time": 1331300839,
"inputs": [
{
"prev_out": {
"value": 10000000,
"type": 0,
"addr": "12JSirdrJnQ8QWUaGZGiBPBYD19LxSPXho"
}
}
],
"out": [
{
"value": 2800000000,
"type": 0,
"addr": "1FzzMfNt46cBeS41r6WHDH1iqxSyzmxChw"
}
]
}
}Misc
----Using TxWatcher within Flask
~~~~~~~~~~~~~~~~~~~~~~~~~~~~You can start TxWatcher in a separate thread and have it running within your Flask app (or any Python web framework).
.. code-block:: python
from flask import Flask
app = Flask(__name__)@app.route("/")
def hello():
return "Hello World!"if __name__ == "__main__":
# First, start TxWatcher
tw = TxWatcher([a['address'] for a in col_urls.find()])
tw.on_tx += new_txthread.start_new_thread(tw.run_forever, ())
# Then, start the Flask app
app.run()Changelog
=========See CHANGES.rst.
Contribution
============Feel free to submit a pull request!
Donation
========If you like my work, please consider donating:
BTC 18eGUUxUsSetQYxJcQXEQTjSCUETEFeA4E
License (MIT)
=============Copyright (c) 2013 Thomas Sileo
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.