Skip to content

Commit 196e12f

Browse files
committed
readme
1 parent ace5c33 commit 196e12f

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

README.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,31 @@
1-
# notebook-httpdbg
1+
# notebook-httpdbg
2+
3+
`notebook-httpdbg` is a notebook extension to trace the HTTP requests.
4+
5+
## installation
6+
7+
```
8+
pip install notebook-httpdbg
9+
```
10+
11+
## usage
12+
13+
### load the extension in the notebook
14+
15+
```
16+
%load_ext notebook_httpdbg
17+
```
18+
19+
### trace the HTTP requests for a cell
20+
```
21+
%%httpdbg
22+
```
23+
24+
## example
25+
26+
```
27+
%load_ext notebook_httpdbg
28+
import requests
29+
%%httpdbg
30+
_ = requests.get("https://www.example.com")
31+
```

0 commit comments

Comments
 (0)