fastly / fastly-py

A Fastly API client for Python
https://pypi.org/project/fastly/
MIT License
77 stars 60 forks source link

list the available services #29

Closed lisac closed 6 years ago

lisac commented 8 years ago

for Issue #8.

usage:

import fastly
api = fastly.API()
api.authenticate_by_key('MYKEY')

services = api.services()

# to browse:
for s in services:
     print(s.attrs['name'], s.attrs['id'])
lisac commented 6 years ago

no need for this PR; it's addressed in #30. thanks!