You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-26Lines changed: 13 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,38 +98,25 @@ The client provides access to all Hummingbot API functionality through specializ
98
98
99
99
## Examples
100
100
101
-
### Basic Examples
101
+
### Jupyter Notebooks
102
102
103
-
The `examples/` directory contains comprehensive examples for each router:
103
+
The library includes comprehensive Jupyter notebooks demonstrating usage for each router. These provide interactive, step-by-step tutorials with explanations:
104
104
105
-
```bash
106
-
# Basic usage demonstrating all features
107
-
python examples/basic_usage.py
108
-
109
-
# Router-specific examples
110
-
python examples/docker_example.py
111
-
python examples/accounts_example.py
112
-
python examples/trading_example.py
113
-
# ... and more
114
-
```
115
-
116
-
### Interactive Test Scripts
117
-
118
-
Comprehensive test scripts with step-by-step demonstrations:
105
+
**Note:** Jupyter notebooks are not included in the repository by default. To run the example notebooks, install Jupyter:
119
106
120
107
```bash
121
-
# Run in automatic mode
122
-
python examples/docker_example.py
123
-
python examples/accounts_example.py
124
-
python examples/trading_example.py
125
-
python examples/portfolio_example.py
126
-
python examples/connectors_example.py
127
-
128
-
# Run in interactive mode (with explanations)
129
-
python examples/docker_example.py --interactive
108
+
pip install jupyter notebook
109
+
# or
110
+
pip install jupyterlab
130
111
```
131
112
132
-
Each test script demonstrates the complete functionality of its router with real API calls.
0 commit comments