/usr/share/doc/python3-cloudflare/examples
NameSizeModeActions
example_always_use_https.py19890644editdlrm
example_are_zones_ipv6.py18760644editdlrm
example_are_zones_ipv6_simple.py5580644editdlrm
example_certificates.py26730644editdlrm
example_create_zone_and_populate.py39350644editdlrm
example_custom_hostnames.py22800644editdlrm
example_delete_zone_entry.py20340644editdlrm
example_dnssec_settings.py14590644editdlrm
example_dns_export.py13660644editdlrm
example_graphql.py23280644editdlrm
example_graphql.sh9810644editdlrm
example_ips.py7630644editdlrm
example_list_api_from_web.py4540644editdlrm
example_page_rules.sh4400644editdlrm
example_paging_thru_zones.py12040644editdlrm
example_paging_thru_zones.sh7800644editdlrm
example_proxied.py33880644editdlrm
example_settings.py18270644editdlrm
example_update_dynamic_dns.py42730644editdlrm
example_user.py55120644editdlrm
example_with_usage.py6770644editdlrm
example_zones.py24360644editdlrm
example_zone_search.sh4200644editdlrm
__init__.py00644editdlrm
Edit: /usr/share/doc/python3-cloudflare/examples/example_settings.py (1827B)
#!/usr/bin/env python """Cloudflare API code - example""" 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()