Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
executable file
·
61 lines (48 loc) · 1.82 KB

File metadata and controls

executable file
·
61 lines (48 loc) · 1.82 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
"""Cloudflare API code - example"""
from __future__ import print_function
import os
import sys
sys.path.insert(0, os.path.abspath('..'))
import CloudFlare
def main():
"""Cloudflare API code - example"""
# Grab the first argument, if there is one
try:
zone_name = sys.argv[1]
params = {'name':zone_name, 'per_page':1}
except IndexError:
params = {'per_page':1}
cf = CloudFlare.CloudFlare()
# grab the zone identifier
try:
zones = cf.zones.get(params=params)
except CloudFlare.exceptions.CloudFlareAPIError as e:
exit('/zones.get %d %s - api call failed' % (e, e))
except Exception as e:
exit('/zones.get - %s - api call failed' % (e))
# there should only be one zone
for zone in sorted(zones, key=lambda v: v['name']):
zone_name = zone['name']
zone_id = zone['id']
try:
settings = cf.zones.settings.get(zone_id)
except CloudFlare.exceptions.CloudFlareAPIError as e:
exit('/zones.settings.get %d %s - api call failed' % (e, e))
print(zone_id, zone_name)
for setting in sorted(settings, key=lambda v: v['id']):
r_name = setting['id']
r_value = setting['value']
r_editable = setting['editable']
try:
k = sorted(r_value.keys())
print('\t%-30s %10s = %s' % (r_name, '(editable)' if r_editable else '', '{'))
for k in sorted(r_value.keys()):
print('\t%-30s %10s %s = %s' % ('', '', r_name+'/'+k, r_value[k]))
print('\t%-30s %10s = %s' % ('', '', '}'))
except:
print('\t%-30s %10s = %s' % (r_name, '(editable)' if r_editable else '', r_value))
print('')
exit(0)
if __name__ == '__main__':
main()
Morty Proxy This is a proxified and sanitized view of the page, visit original site.