PhotosAPI_Client/photosapi_client/types.py

45 lines
993 B
Python
Raw Normal View History

2023-03-22 20:37:55 +02:00
""" Contains some shared types for properties """
from http import HTTPStatus
2023-06-22 15:38:42 +03:00
from typing import BinaryIO, Generic, Literal, MutableMapping, Optional, Tuple, TypeVar
2023-03-22 20:37:55 +02:00
import attr
class Unset:
2023-06-22 15:38:42 +03:00
def __bool__(self) -> Literal[False]:
2023-03-22 20:37:55 +02:00
return False
UNSET: Unset = Unset()
FileJsonType = Tuple[Optional[str], BinaryIO, Optional[str]]
@attr.s(auto_attribs=True)
class File:
"""Contains information for file uploads"""
payload: BinaryIO
file_name: Optional[str] = None
mime_type: Optional[str] = None
def to_tuple(self) -> FileJsonType:
"""Return a tuple representation that httpx will accept for multipart/form-data"""
return self.file_name, self.payload, self.mime_type
T = TypeVar("T")
@attr.s(auto_attribs=True)
class Response(Generic[T]):
"""A response from an endpoint"""
status_code: HTTPStatus
content: bytes
headers: MutableMapping[str, str]
parsed: Optional[T]
__all__ = ["File", "Response", "FileJsonType"]