Skip to content

Commit ec66d41

Browse files
authored
Update README.md
pycurl options
1 parent fa681e9 commit ec66d41

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,20 @@ options = {
8989
client = wc.Client(options)
9090
```
9191

92+
Other options for pycurl
93+
94+
```python
95+
options = {
96+
'recv_speed' : 3000000,
97+
'send_speed' : 3000000,
98+
'verbose' :True
99+
}
100+
```
101+
102+
recv_speed: rate limit data download speed in Bytes per second. Defaults to unlimited speed.
103+
send_speed: rate limit data upload speed in Bytes per second. Defaults to unlimited speed.
104+
verbose: set verbose mode on/off.
105+
92106
**Synchronous methods**
93107

94108
```python

0 commit comments

Comments
 (0)