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
{{ message }}
This repository was archived by the owner on Nov 22, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ A full list is provided below.
40
40
41
41
## Example code
42
42
43
-
All example code is available on GitHub (see [package](https://github.com/cloudflare/python-cloudflare) in the [examples](https://github.com/cloudflare/python-cloudflare/tree/master/examples) folder.
43
+
All example code is available on GitHub (see [package](https://github.com/cloudflare/python-cloudflare) in the [examples](https://github.com/cloudflare/python-cloudflare/tree/master/examples) folder).
44
44
45
45
## Blog
46
46
@@ -91,8 +91,8 @@ if __name__ == '__main__':
91
91
main()
92
92
```
93
93
94
-
In order to query more than a single page of zones, we would have to use the raw mode (decribed more below).
95
-
We can loop over many get calls and pass the page paramater to facilitate the paging.
94
+
In order to query more than a single page of zones, we would have to use the raw mode (described more below).
95
+
We can loop over many get calls and pass the page parameter to facilitate the paging.
96
96
97
97
Raw mode is only needed when a get request has the possibility of returning many items.
98
98
@@ -170,7 +170,7 @@ if __name__ == '__main__':
170
170
171
171
## Providing Cloudflare Username and API Key
172
172
173
-
When you create a **CloudFlare** class you can pass up to four paramaters.
173
+
When you create a **CloudFlare** class you can pass up to four parameters.
If the account email and API key are not passed when you create the class, then they are retreived from either the users exported shell environment variables or the .cloudflare.cfg or ~/.cloudflare.cfg or ~/.cloudflare/cloudflare.cfg files, in that order.
196
+
If the account email and API key are not passed when you create the class, then they are retrieved from either the users exported shell environment variables or the .cloudflare.cfg or ~/.cloudflare.cfg or ~/.cloudflare/cloudflare.cfg files, in that order.
197
197
198
198
There is one call that presently doesn't need any email or token certification (the */ips* call); hence you can test without any values saved away.
199
199
@@ -313,7 +313,7 @@ import CloudFlare
313
313
The other raised response is **CloudFlareInternalError** which can happen when calling an invalid method.
314
314
315
315
In some cases more than one error is returned. In this case the return value **e** is also an array.
316
-
You can itterate over that array to see the additional error.
316
+
You can iterate over that array to see the additional error.
0 commit comments