We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f6bc49 commit f09e710Copy full SHA for f09e710
twitchAPI/oauth.py
@@ -323,8 +323,11 @@ def __init__(self,
323
</html>"""
324
"""The document that will be rendered at the end of the flow"""
325
self.port: int = port
326
+ """The port that will be used for the webserver. |default| :code:`17653`"""
327
self.host: str = host
328
+ """The host the webserver will bind to. |default| :code:`0.0.0.0`"""
329
self.state: str = str(get_uuid())
330
+ """The state to be used for identification, |default| a random UUID"""
331
self._callback_func = None
332
self._server_running: bool = False
333
self._loop: Union[asyncio.AbstractEventLoop, None] = None
0 commit comments