From 97bf0f710ef0cbb8ac6590811bf6385b2baee97a Mon Sep 17 00:00:00 2001 From: Mantouisyummy <51238168+Mantouisyummy@users.noreply.github.com> Date: Fri, 1 Mar 2024 22:51:19 +0800 Subject: [PATCH] Update Readme.md --- Readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Readme.md b/Readme.md index 18a2596..65ab053 100644 --- a/Readme.md +++ b/Readme.md @@ -56,7 +56,7 @@ from tystream.async_api import Twitch import asyncio async def main(): - twitch = Twitch("1aw3wxdp0w8bbg6q464sh96ocn4f6y", "h07eh797n7hejbct1cqd6drybaq468") + twitch = Twitch("client_id", "client_secret") stream = await twitch.check_stream_live("kannazukilubee") print(stream.url) @@ -79,9 +79,9 @@ from tystream.async_api import Youtube import asyncio async def main(): - youtube = Youtube("AIzaSyC0fyvIgZ6PWbhdRAspm0XCwaNQ3CZLLlA") + youtube = Youtube("api_key") stream = await youtube.check_stream_live("kannazukilubee") print(stream.url) asyncio.run(main()) -``` \ No newline at end of file +```