Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rightlag/python-edgecast
A Python SDK for making requests to the Verizon Digital Media Services web API
https://github.com/rightlag/python-edgecast
Last synced: 5 days ago
JSON representation
A Python SDK for making requests to the Verizon Digital Media Services web API
- Host: GitHub
- URL: https://github.com/rightlag/python-edgecast
- Owner: rightlag
- Created: 2015-09-14T20:44:25.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-15T14:07:48.000Z (about 9 years ago)
- Last Synced: 2023-02-26T16:02:25.658Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 121 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Sample endpoint request
>>> from edgecast.mediamanagement.cachemanagement import CacheManagement
>>> cache_management = CacheManagement('e32be1e1-a594-4a98-a374-a5880f313d65')
>>> load_purge_regions = cache_management.get_load_purge_regions(platform_ids=[2, 3, 8, 14])
>>> print load_purge_regions[0]
{"Name": "North America", "Id": 1, "EdgeNodes": [{"Code": "DCA", "Id": 2}, {"Code": "LAX", "Id": 3}, {"Code": "SEA", "Id": 4}, {"Code": "DFW", "Id": 5}, {"Code": "ORD", "Id": 6}, {"Code": "ATL", "Id": 7}, {"Code": "MIA", "Id": 22}, {"Code": "SJC", "Id": 25}, {"Code": "CPM", "Id": 122}, {"Code": "EWR", "Id": 123}, {"Code": "MDW", "Id": 127}, {"Code": "FTW", "Id": 129}, {"Code": "IAD", "Id": 131}, {"Code": "FLL", "Id": 139}, {"Code": "LGA", "Id": 149}, {"Code": "FTY", "Id": 153}, {"Code": "PAE", "Id": 160}, {"Code": "RHV", "Id": 161}, {"Code": "OXR", "Id": 164}, {"Code": "PHL", "Id": 188}, {"Code": "BOS", "Id": 202}]}