brk-client 0.1.0a6__tar.gz → 0.1.2__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.0a6 → brk_client-0.1.2}/.gitignore +4 -0
- brk_client-0.1.2/.python-version +1 -0
- {brk_client-0.1.0a6 → brk_client-0.1.2}/PKG-INFO +9 -3
- {brk_client-0.1.0a6 → brk_client-0.1.2}/README.md +4 -0
- {brk_client-0.1.0a6 → brk_client-0.1.2}/brk_client/__init__.py +751 -489
- {brk_client-0.1.0a6 → brk_client-0.1.2}/pyproject.toml +7 -3
- {brk_client-0.1.0a6 → brk_client-0.1.2}/tests/test_basic.py +1 -1
- brk_client-0.1.2/tests/test_metric_data.py +340 -0
- brk_client-0.1.2/uv.lock +1471 -0
- brk_client-0.1.0a6/.python-version +0 -1
- brk_client-0.1.0a6/uv.lock +0 -748
- {brk_client-0.1.0a6 → brk_client-0.1.2}/pydoc-markdown.yml +0 -0
- {brk_client-0.1.0a6 → brk_client-0.1.2}/tests/test_tree.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.9
|
|
@@ -1,26 +1,30 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: brk-client
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Python client for the Bitcoin Research Kit
|
|
5
5
|
Project-URL: Homepage, https://bitcoinresearchkit.org
|
|
6
6
|
Project-URL: Repository, https://github.com/bitcoinresearchkit/brk
|
|
7
7
|
License-Expression: MIT
|
|
8
8
|
Keywords: analytics,bitcoin,blockchain,on-chain
|
|
9
|
-
Classifier: Development Status ::
|
|
9
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
10
10
|
Classifier: Intended Audience :: Developers
|
|
11
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
14
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
17
|
Classifier: Programming Language :: Python :: 3.13
|
|
16
18
|
Classifier: Typing :: Typed
|
|
17
|
-
Requires-Python: >=3.
|
|
19
|
+
Requires-Python: >=3.9
|
|
18
20
|
Description-Content-Type: text/markdown
|
|
19
21
|
|
|
20
22
|
# brk-client
|
|
21
23
|
|
|
22
24
|
Python client for the [Bitcoin Research Kit](https://github.com/bitcoinresearchkit/brk) API.
|
|
23
25
|
|
|
26
|
+
Requires Python 3.9+. Zero dependencies.
|
|
27
|
+
|
|
24
28
|
[PyPI](https://pypi.org/project/brk-client/) | [API Reference](https://github.com/bitcoinresearchkit/brk/blob/main/packages/brk_client/DOCS.md)
|
|
25
29
|
|
|
26
30
|
## Installation
|
|
@@ -31,6 +35,8 @@ pip install brk-client
|
|
|
31
35
|
uv add brk-client
|
|
32
36
|
```
|
|
33
37
|
|
|
38
|
+
Or just copy [`brk_client/__init__.py`](./brk_client/__init__.py) into your project - it's a single file with no dependencies.
|
|
39
|
+
|
|
34
40
|
## Quick Start
|
|
35
41
|
|
|
36
42
|
```python
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Python client for the [Bitcoin Research Kit](https://github.com/bitcoinresearchkit/brk) API.
|
|
4
4
|
|
|
5
|
+
Requires Python 3.9+. Zero dependencies.
|
|
6
|
+
|
|
5
7
|
[PyPI](https://pypi.org/project/brk-client/) | [API Reference](https://github.com/bitcoinresearchkit/brk/blob/main/packages/brk_client/DOCS.md)
|
|
6
8
|
|
|
7
9
|
## Installation
|
|
@@ -12,6 +14,8 @@ pip install brk-client
|
|
|
12
14
|
uv add brk-client
|
|
13
15
|
```
|
|
14
16
|
|
|
17
|
+
Or just copy [`brk_client/__init__.py`](./brk_client/__init__.py) into your project - it's a single file with no dependencies.
|
|
18
|
+
|
|
15
19
|
## Quick Start
|
|
16
20
|
|
|
17
21
|
```python
|