bitcoinwatcher 0.1.4__tar.gz → 0.1.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/PKG-INFO +1 -2
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoinwatcher.egg-info/PKG-INFO +1 -2
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoinwatcher.egg-info/requires.txt +0 -1
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/pyproject.toml +1 -2
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/LICENSE +0 -0
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/README.md +0 -0
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/__init__.py +0 -0
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/address_listener/__init__.py +0 -0
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/address_listener/address_listener.py +0 -0
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/address_listener/simple_address_listener.py +0 -0
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/tests/__init__.py +0 -0
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/tests/test_address_listener.py +0 -0
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/tx_listener/__init__.py +0 -0
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/tx_listener/abstract_tx_listener.py +0 -0
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/tx_listener/zmq_listener.py +0 -0
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/utils/__init__.py +0 -0
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/utils/bitcoin_utils.py +0 -0
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/utils/inscription_utils.py +0 -0
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoinwatcher.egg-info/SOURCES.txt +0 -0
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoinwatcher.egg-info/dependency_links.txt +0 -0
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoinwatcher.egg-info/top_level.txt +0 -0
- {bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: bitcoinwatcher
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.6
|
4
4
|
Summary: bitcoinwatcher is a Python library that implements a ZMQ subscriber and provides abstractions to build custom address watchers. This library is designed to make it easy for developers to monitor Bitcoin addresses and react to changes in their state.
|
5
5
|
Author: twosatsmaxi
|
6
6
|
License: Apache License
|
@@ -221,7 +221,6 @@ Requires-Dist: requests~=2.31.0
|
|
221
221
|
Requires-Dist: certifi==2024.2.2
|
222
222
|
Requires-Dist: charset-normalizer==3.3.2
|
223
223
|
Requires-Dist: idna==3.6
|
224
|
-
Requires-Dist: PyGObject==3.46.0
|
225
224
|
Requires-Dist: pyzmq==25.1.2
|
226
225
|
Requires-Dist: requests==2.31.0
|
227
226
|
Requires-Dist: six==1.16.0
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: bitcoinwatcher
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.6
|
4
4
|
Summary: bitcoinwatcher is a Python library that implements a ZMQ subscriber and provides abstractions to build custom address watchers. This library is designed to make it easy for developers to monitor Bitcoin addresses and react to changes in their state.
|
5
5
|
Author: twosatsmaxi
|
6
6
|
License: Apache License
|
@@ -221,7 +221,6 @@ Requires-Dist: requests~=2.31.0
|
|
221
221
|
Requires-Dist: certifi==2024.2.2
|
222
222
|
Requires-Dist: charset-normalizer==3.3.2
|
223
223
|
Requires-Dist: idna==3.6
|
224
|
-
Requires-Dist: PyGObject==3.46.0
|
225
224
|
Requires-Dist: pyzmq==25.1.2
|
226
225
|
Requires-Dist: requests==2.31.0
|
227
226
|
Requires-Dist: six==1.16.0
|
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
|
|
5
5
|
|
6
6
|
[project]
|
7
7
|
name = "bitcoinwatcher"
|
8
|
-
version = "0.1.
|
8
|
+
version = "0.1.6"
|
9
9
|
description = "bitcoinwatcher is a Python library that implements a ZMQ subscriber and provides abstractions to build custom address watchers. This library is designed to make it easy for developers to monitor Bitcoin addresses and react to changes in their state."
|
10
10
|
readme = "README.md"
|
11
11
|
authors = [{name = "twosatsmaxi"}]
|
@@ -27,7 +27,6 @@ dependencies = [
|
|
27
27
|
"certifi==2024.2.2",
|
28
28
|
"charset-normalizer==3.3.2",
|
29
29
|
"idna==3.6",
|
30
|
-
"PyGObject==3.46.0",
|
31
30
|
"pyzmq==25.1.2",
|
32
31
|
"requests==2.31.0",
|
33
32
|
"six==1.16.0",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{bitcoinwatcher-0.1.4 → bitcoinwatcher-0.1.6}/bitcoin/address_listener/simple_address_listener.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|