brk-client 0.1.0__tar.gz → 0.1.0a2__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.
- {brk_client-0.1.0 → brk_client-0.1.0a2}/.gitignore +1 -8
- brk_client-0.1.0a2/.python-version +1 -0
- brk_client-0.1.0a2/PKG-INFO +35 -0
- brk_client-0.1.0a2/README.md +13 -0
- {brk_client-0.1.0 → brk_client-0.1.0a2}/brk_client/__init__.py +2991 -3605
- {brk_client-0.1.0 → brk_client-0.1.0a2}/pyproject.toml +5 -10
- brk_client-0.1.0a2/tests/test_client.py +47 -0
- brk_client-0.1.0a2/uv.lock +268 -0
- brk_client-0.1.0/.python-version +0 -1
- brk_client-0.1.0/PKG-INFO +0 -62
- brk_client-0.1.0/README.md +0 -41
- brk_client-0.1.0/pydoc-markdown.yml +0 -13
- brk_client-0.1.0/tests/test_basic.py +0 -65
- brk_client-0.1.0/tests/test_tree.py +0 -89
- brk_client-0.1.0/uv.lock +0 -970
|
@@ -6,7 +6,6 @@ target
|
|
|
6
6
|
websites/dist
|
|
7
7
|
bridge/
|
|
8
8
|
/ids.txt
|
|
9
|
-
rust_out
|
|
10
9
|
|
|
11
10
|
# Copies
|
|
12
11
|
*\ copy*
|
|
@@ -16,14 +15,8 @@ _*
|
|
|
16
15
|
!__*.py
|
|
17
16
|
/*.md
|
|
18
17
|
/*.py
|
|
18
|
+
/api.json
|
|
19
19
|
/*.json
|
|
20
|
-
/*.html
|
|
21
|
-
/research
|
|
22
|
-
/filter_*
|
|
23
|
-
/heatmaps*
|
|
24
|
-
/oracle*
|
|
25
|
-
/playground
|
|
26
|
-
/*.txt
|
|
27
20
|
|
|
28
21
|
# Logs
|
|
29
22
|
*.log*
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.12
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: brk-client
|
|
3
|
+
Version: 0.1.0a2
|
|
4
|
+
Summary: Python client for the Bitcoin Research Kit
|
|
5
|
+
Project-URL: Homepage, https://bitcoinresearchkit.org
|
|
6
|
+
Project-URL: Repository, https://github.com/bitcoinresearchkit/brk
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Keywords: analytics,bitcoin,blockchain,on-chain
|
|
9
|
+
Classifier: Development Status :: 3 - Alpha
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Typing :: Typed
|
|
19
|
+
Requires-Python: >=3.12
|
|
20
|
+
Requires-Dist: httpx>=0.25.0
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
|
|
23
|
+
# brk_client
|
|
24
|
+
|
|
25
|
+
Python client for the [Bitcoin Research Kit](https://bitcoinresearchkit.org) - a suite of tools to extract, compute and display data stored on a Bitcoin Core node.
|
|
26
|
+
|
|
27
|
+
## Installation
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
pip install brk-client
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## License
|
|
34
|
+
|
|
35
|
+
MIT
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# brk_client
|
|
2
|
+
|
|
3
|
+
Python client for the [Bitcoin Research Kit](https://bitcoinresearchkit.org) - a suite of tools to extract, compute and display data stored on a Bitcoin Core node.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install brk-client
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## License
|
|
12
|
+
|
|
13
|
+
MIT
|