[docs]@attr.s(auto_attribs=True)classClient:"""A Client which has been authenticated for use on secured endpoints of the KittyCAD API."""# noqa: E501token:str=attr.ib(kw_only=True)base_url:str=attr.ib(default="https://api.kittycad.io")cookies:Dict[str,str]=attr.ib(factory=dict,kw_only=True)headers:Dict[str,str]=attr.ib(factory=dict,kw_only=True)timeout:float=attr.ib(120.0,kw_only=True)verify_ssl:Union[str,bool,ssl.SSLContext]=attr.ib(True,kw_only=True)
[docs]defget_headers(self)->Dict[str,str]:"""Get headers to be used in all endpoints"""return{"Authorization":f"Bearer {self.token}",**self.headers}
[docs]defwith_headers(self,headers:Dict[str,str])->"Client":"""Get a new client matching this one with additional headers"""returnattr.evolve(self,headers={**self.headers,**headers})
[docs]defwith_cookies(self,cookies:Dict[str,str])->"Client":"""Get a new client matching this one with additional cookies"""returnattr.evolve(self,cookies={**self.cookies,**cookies})
[docs]defwith_timeout(self,timeout:float)->"Client":"""Get a new client matching this one with a new timeout (in seconds)"""returnattr.evolve(self,timeout=timeout)
[docs]defwith_base_url(self,url:str)->"Client":"""Get a new client matching this one with a new base url"""returnattr.evolve(self,base_url=url)
[docs]@attr.s(auto_attribs=True)classClientFromEnv(Client):"""A Client which has been authenticated for use on secured endpoints that uses the KITTYCAD_API_TOKEN environment variable for the authentication token."""# noqa: E501token:str=attr.field()
[docs]@token.defaultdefset_token(self):maybe_token:Optional[str]=os.getenv("KITTYCAD_API_TOKEN")ifmaybe_tokenisNone:raiseValueError("KITTYCAD_API_TOKEN environment variable must be set to use ClientFromEnv")token:str=maybe_tokenreturntoken
[docs]defget_headers(self)->Dict[str,str]:"""Get headers to be used in authenticated endpoints"""return{"Authorization":f"Bearer {self.token}",**self.headers}