Skip to content

Instantly share code, notes, and snippets.

View arynyklas's full-sized avatar
🏠
Working from home

Aryn arynyklas

🏠
Working from home
View GitHub Profile
@arynyklas
arynyklas / basic_data.py
Last active March 15, 2023 18:08
Python aiogram 3.0.07b multibot to communicate with OpenAI's text-davinci-003 AI
from typing import Dict
TEXTS: Dict[str, str] = {
"start": "Hello {mention} 👋\n\nAsk me anything :)",
"wait": "Wait please...",
"error": "Something went wrong."
}
from typing import List
def long_input(prompt: str) -> str:
result: List[str] = []
print(prompt)
while True:
result_ = input()
@arynyklas
arynyklas / main.py
Last active December 10, 2023 11:11
@whale's live wins
from httpx import Client, ReadTimeout
from itertools import cycle
from collections import deque
from math import modf
from time import sleep
BOT_TOKEN: str = "..."
CHAT_ID: int = -100