File manager - Edit - /usr/local/CyberPanel/lib/python3.10/site-packages/examples/example_dnssec_settings.py
Back
#!/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'] # grab the DNSSEC settings try: settings = cf.zones.dnssec.get(zone_id) except CloudFlare.exceptions.CloudFlareAPIError as e: exit('/zones.dnssec.get %d %s - api call failed' % (e, e)) print(zone_id, zone_name) # display every setting value for setting in sorted(settings): print('\t%-30s %10s = %s' % ( setting, '(editable)' if setting == 'status' else '', settings[setting] )) print('') exit(0) if __name__ == '__main__': main()
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings