bitcoinwatcher 2.3__tar.gz → 2.4__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.
Files changed (36) hide show
  1. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/PKG-INFO +2 -2
  2. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoinwatcher.egg-info/PKG-INFO +2 -2
  3. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoinwatcher.egg-info/requires.txt +1 -1
  4. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/pyproject.toml +2 -2
  5. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/LICENSE +0 -0
  6. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/README.md +0 -0
  7. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/__init__.py +0 -0
  8. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/address_listener/__init__.py +0 -0
  9. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/address_listener/address_listener.py +0 -0
  10. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/address_listener/simple_address_listener.py +0 -0
  11. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/models/__init__.py +0 -0
  12. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/models/address_tx_data.py +0 -0
  13. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/tests/__init__.py +0 -0
  14. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/tests/data/__init__.py +0 -0
  15. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/tests/data/transactions.py +0 -0
  16. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/tests/test_address_listener.py +0 -0
  17. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/tests/test_bitcoin_rpc.py +0 -0
  18. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/tests/test_bitcoin_utils.py +0 -0
  19. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/tx_extractors/__init__.py +0 -0
  20. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/tx_extractors/abstract_extractor.py +0 -0
  21. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/tx_extractors/bitcoin_rpc.py +0 -0
  22. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/tx_extractors/default.py +0 -0
  23. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/tx_extractors/mempool.py +0 -0
  24. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/tx_listener/__init__.py +0 -0
  25. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/tx_listener/abstract_tx_listener.py +0 -0
  26. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/tx_listener/zmq_listener.py +0 -0
  27. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/utils/__init__.py +0 -0
  28. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/utils/benchmark.py +0 -0
  29. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/utils/bitcoin_rpc.py +0 -0
  30. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/utils/bitcoin_utils.py +0 -0
  31. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/utils/constants.py +0 -0
  32. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoin/utils/inscription_utils.py +0 -0
  33. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoinwatcher.egg-info/SOURCES.txt +0 -0
  34. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoinwatcher.egg-info/dependency_links.txt +0 -0
  35. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/bitcoinwatcher.egg-info/top_level.txt +0 -0
  36. {bitcoinwatcher-2.3 → bitcoinwatcher-2.4}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bitcoinwatcher
3
- Version: 2.3
3
+ Version: 2.4
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
@@ -220,7 +220,7 @@ License-File: LICENSE
220
220
  Requires-Dist: requests~=2.31.0
221
221
  Requires-Dist: certifi==2024.2.2
222
222
  Requires-Dist: charset-normalizer==3.3.2
223
- Requires-Dist: idna==3.6
223
+ Requires-Dist: idna==3.7
224
224
  Requires-Dist: pyzmq==25.1.2
225
225
  Requires-Dist: requests==2.31.0
226
226
  Requires-Dist: six==1.16.0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: bitcoinwatcher
3
- Version: 2.3
3
+ Version: 2.4
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
@@ -220,7 +220,7 @@ License-File: LICENSE
220
220
  Requires-Dist: requests~=2.31.0
221
221
  Requires-Dist: certifi==2024.2.2
222
222
  Requires-Dist: charset-normalizer==3.3.2
223
- Requires-Dist: idna==3.6
223
+ Requires-Dist: idna==3.7
224
224
  Requires-Dist: pyzmq==25.1.2
225
225
  Requires-Dist: requests==2.31.0
226
226
  Requires-Dist: six==1.16.0
@@ -1,7 +1,7 @@
1
1
  requests~=2.31.0
2
2
  certifi==2024.2.2
3
3
  charset-normalizer==3.3.2
4
- idna==3.6
4
+ idna==3.7
5
5
  pyzmq==25.1.2
6
6
  requests==2.31.0
7
7
  six==1.16.0
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
 
6
6
  [project]
7
7
  name = "bitcoinwatcher"
8
- version = "2.3"
8
+ version = "2.4"
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"}]
@@ -26,7 +26,7 @@ dependencies = [
26
26
  "requests~=2.31.0",
27
27
  "certifi==2024.2.2",
28
28
  "charset-normalizer==3.3.2",
29
- "idna==3.6",
29
+ "idna==3.7",
30
30
  "pyzmq==25.1.2",
31
31
  "requests==2.31.0",
32
32
  "six==1.16.0",
File without changes
File without changes
File without changes