Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
flet / auth / authorization.py
Size: Mime:
class Authorization:
    async def dehydrate_token(self, saved_token: str):
        raise NotImplementedError()

    async def get_token(self):
        raise NotImplementedError()

    def get_authorization_data(self) -> tuple[str, str]:
        raise NotImplementedError()

    async def request_token(self, code: str):
        raise NotImplementedError()