We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80dd3e1 commit 821691dCopy full SHA for 821691d
README.md
@@ -3,3 +3,19 @@
3
The Python language bindings for the [bitcoindevkit](https://github.com/bitcoindevkit).
4
5
See the [package on PyPI](https://pypi.org/project/bdkpython/).
6
+
7
+## Local Testing and Usage
8
9
+1. Start a Python virtual environment
10
+2. Run one of the build script
11
+3. Create the wheel
12
+4. Install the library
13
+5. Run the tests
14
15
+```sh
16
+source .localpythonenv/bin/activate
17
+bash scripts/generate-macos-arm64.sh
18
+.localpythonenv/bin/python3 setup.py bdist_wheel
19
+.localpythonenv/bin/pip3 install ./dist/bdkpython-<yourversion>.whl --force-reinstall
20
+.localpythonenv/bin/python3 -m unittest --verbose
21
+```
0 commit comments