mirror of
https://github.com/ivuorinen/aeonview.git
synced 2026-01-26 11:44:03 +00:00
10 lines
271 B
Python
10 lines
271 B
Python
class Response:
|
|
def __init__(self, status_code=200):
|
|
self.status_code = status_code
|
|
|
|
def iter_content(self, chunk_size=1024):
|
|
return iter([])
|
|
|
|
def get(url, stream=False, timeout=0):
|
|
raise NotImplementedError("requests.get is not implemented")
|