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 fa681e9 commit ec66d41Copy full SHA for ec66d41
README.md
@@ -89,6 +89,20 @@ options = {
89
client = wc.Client(options)
90
```
91
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
106
**Synchronous methods**
107
108
```python
0 commit comments