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
+12-3Lines changed: 12 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
4
4
## Credit
5
5
6
-
This is based on work by _gnowxilef_ found [here](https://github.com/cloudflare-api/python-cloudflare-v4). It has been seriously expanded upon.
6
+
This is based on work by [Felix Wong (gnowxilef)](https://github.com/gnowxilef) found [here](https://github.com/cloudflare-api/python-cloudflare-v4). It has been seriously expanded upon.
7
7
8
8
## CloudFlare API version 4
9
9
@@ -12,9 +12,12 @@ The CloudFlare API can be found [here](https://api.cloudflare.com/). Each API ca
12
12
## Installation
13
13
14
14
```
15
-
./setup.py install
15
+
./setup.py build
16
+
sudo ./setup.py install
16
17
```
17
18
19
+
Or whatever variance of that you want to use.
20
+
18
21
## Getting Started
19
22
20
23
A very simple listing of zones within your account; including the IPv6 status of the zone.
@@ -94,10 +97,13 @@ When you create a _CloudFlare_ class you can pass up to three paramaters.
94
97
95
98
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.
96
99
100
+
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.
0 commit comments