Nathan Reynolds

Results 2 issues of Nathan Reynolds

Sublime runs Python 2.6, meaning that Coverage barfs on 2.7 syntax. Have worked around this with by optionally using the system Python. Only tested on Linux at the mo, will...

Repository and tag lists can be paginated: * https://docs.docker.com/registry/spec/api/#pagination * https://docs.docker.com/registry/spec/api/#pagination-1 `requests` exposes this via `response.links`, e.g: ```python url = "https://myregistry/v2/_catalog" while True: response = self.get(url) print(response.url) if "next" in...