File tree Expand file tree Collapse file tree 1 file changed +22
-4
lines changed
Expand file tree Collapse file tree 1 file changed +22
-4
lines changed Original file line number Diff line number Diff line change 1- # ** Jup-Ag-SDK**
1+ # ** Jup-Ag-SDK**
22
3- A Python SDK for interacting with Jupiter Exchange APIs.
3+ A Python SDK for interacting with Jupiter Exchange APIs.
44
5- ## ** Installation**
5+ ## ** Installation**
6+ To install the SDK globally from PyPI, run:
67``` sh
78pip install jup-ag-sdk
89```
910
10- ## ** Disclaimer**
11+ ## ** Local Development**
12+ If you want to make changes to the SDK and test it locally:
13+
14+ 1 . In this project's directory, install the package in editable mode by running:
15+ ``` sh
16+ pip install -e .
17+ ```
18+
19+ 2 . To use this library in another project while making changes to it, install the package from its local path in that project:
20+ ``` sh
21+ pip install -e /path/to/jup-ag-sdk
22+ ```
23+
24+ Replace ` /path/to/jup-ag-sdk ` with the absolute or relative path to this project directory.
25+
26+ By installing in editable mode, any changes you make to the SDK will immediately reflect in your tests without needing to reinstall the package.
27+
28+ ## ** Disclaimer**
1129🚨 ** This project is a work in progress and should not be used in production systems.**
1230Expect breaking changes as the SDK evolves.
You can’t perform that action at this time.
0 commit comments