Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b55f933a32 | ||
|
|
5fa102b157 | ||
|
|
1e8a33c0c4 | ||
|
|
daef039ce5 | ||
|
|
7ad4c4052e | ||
|
|
641dc72738 |
@@ -18,7 +18,7 @@ from flanautils import Media, MediaType, NotFoundError, OrderedSet, Source, Time
|
|||||||
from multibot import Action, BadRoleError, BotAction, MultiBot, SendError, User, admin, bot_mentioned, constants as multibot_constants, group, ignore_self_message, inline, reply
|
from multibot import Action, BadRoleError, BotAction, MultiBot, SendError, User, admin, bot_mentioned, constants as multibot_constants, group, ignore_self_message, inline, reply
|
||||||
|
|
||||||
from flanabot import constants
|
from flanabot import constants
|
||||||
from flanabot.models import ButtonsMessageType, Chat, Message, Punishment, WeatherChart
|
from flanabot.models import Chat, Message, Punishment, WeatherChart
|
||||||
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------------------------------------- #
|
# ----------------------------------------------------------------------------------------------------- #
|
||||||
@@ -131,7 +131,8 @@ class FlanaBot(MultiBot, ABC):
|
|||||||
self.register(self._on_weather_chart_config_show, (constants.KEYWORDS['weather_chart'], multibot_constants.KEYWORDS['config']))
|
self.register(self._on_weather_chart_config_show, (constants.KEYWORDS['weather_chart'], multibot_constants.KEYWORDS['config']))
|
||||||
self.register(self._on_weather_chart_config_show, (multibot_constants.KEYWORDS['show'], constants.KEYWORDS['weather_chart'], multibot_constants.KEYWORDS['config']))
|
self.register(self._on_weather_chart_config_show, (multibot_constants.KEYWORDS['show'], constants.KEYWORDS['weather_chart'], multibot_constants.KEYWORDS['config']))
|
||||||
|
|
||||||
self.register_button(self._on_button_press)
|
self.register_button(self._on_config_button_press, list(Chat.DEFAULT_CONFIG.keys()))
|
||||||
|
self.register_button(self._on_weather_button_press, WeatherEmoji.values)
|
||||||
|
|
||||||
async def _change_config(self, config_name: str, message: Message, value: bool = None):
|
async def _change_config(self, config_name: str, message: Message, value: bool = None):
|
||||||
if value is None:
|
if value is None:
|
||||||
@@ -191,7 +192,7 @@ class FlanaBot(MultiBot, ABC):
|
|||||||
return flanautils.chunks(buttons_texts, 3)
|
return flanautils.chunks(buttons_texts, 3)
|
||||||
|
|
||||||
@return_if_first_empty(exclude_self_types='FlanaBot', globals_=globals())
|
@return_if_first_empty(exclude_self_types='FlanaBot', globals_=globals())
|
||||||
async def _manage_exceptions(self, exceptions: BaseException | Iterable[BaseException], message: Message):
|
async def _manage_exceptions(self, exceptions: BaseException | Iterable[BaseException], context: Chat | Message):
|
||||||
if not isinstance(exceptions, Iterable):
|
if not isinstance(exceptions, Iterable):
|
||||||
exceptions = (exceptions,)
|
exceptions = (exceptions,)
|
||||||
|
|
||||||
@@ -199,15 +200,15 @@ class FlanaBot(MultiBot, ABC):
|
|||||||
try:
|
try:
|
||||||
raise exception
|
raise exception
|
||||||
except BadRoleError as e:
|
except BadRoleError as e:
|
||||||
await self.send_error(f'Rol no encontrado en {e}', message)
|
await self.send_error(f'Rol no encontrado en {e}', context)
|
||||||
except InstagramLoginError as e:
|
except InstagramLoginError as e:
|
||||||
await self.send_error(f'No me puedo loguear en Instagram {random.choice(multibot_constants.SAD_EMOJIS)} 👉 {e}', message)
|
await self.send_error(f'No me puedo loguear en Instagram {random.choice(multibot_constants.SAD_EMOJIS)} 👉 {e}', context)
|
||||||
except MediaNotFoundError as e:
|
except MediaNotFoundError as e:
|
||||||
await self.send_error(f'No he podido sacar nada de {e.source} {random.choice(multibot_constants.SAD_EMOJIS)}', message)
|
await self.send_error(f'No he podido sacar nada de {e.source} {random.choice(multibot_constants.SAD_EMOJIS)}', context)
|
||||||
except PlaceNotFoundError as e:
|
except PlaceNotFoundError as e:
|
||||||
await self.send_error(f'No he podido encontrar "{e}" {random.choice(multibot_constants.SAD_EMOJIS)}', message)
|
await self.send_error(f'No he podido encontrar "{e}" {random.choice(multibot_constants.SAD_EMOJIS)}', context)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
await super()._manage_exceptions(e, message)
|
await super()._manage_exceptions(e, context)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _medias_sended_info(medias: Iterable[Media]) -> str:
|
def _medias_sended_info(medias: Iterable[Media]) -> str:
|
||||||
@@ -296,59 +297,23 @@ class FlanaBot(MultiBot, ABC):
|
|||||||
# ---------------------------------------------- #
|
# ---------------------------------------------- #
|
||||||
# HANDLERS #
|
# HANDLERS #
|
||||||
# ---------------------------------------------- #
|
# ---------------------------------------------- #
|
||||||
async def _on_button_press(self, message: Message):
|
|
||||||
await self._accept_button_event(message)
|
|
||||||
|
|
||||||
match message.button_pressed_text:
|
|
||||||
case WeatherEmoji.ZOOM_IN.value:
|
|
||||||
buttons_message_type = ButtonsMessageType.WEATHER
|
|
||||||
message.weather_chart.zoom_in()
|
|
||||||
case WeatherEmoji.ZOOM_OUT.value:
|
|
||||||
buttons_message_type = ButtonsMessageType.WEATHER
|
|
||||||
message.weather_chart.zoom_out()
|
|
||||||
case WeatherEmoji.LEFT.value:
|
|
||||||
buttons_message_type = ButtonsMessageType.WEATHER
|
|
||||||
message.weather_chart.move_left()
|
|
||||||
case WeatherEmoji.RIGHT.value:
|
|
||||||
buttons_message_type = ButtonsMessageType.WEATHER
|
|
||||||
message.weather_chart.move_right()
|
|
||||||
case WeatherEmoji.PRECIPITATION_VOLUME.value:
|
|
||||||
buttons_message_type = ButtonsMessageType.WEATHER
|
|
||||||
message.weather_chart.trace_metadatas['rain_volume'].show = not message.weather_chart.trace_metadatas['rain_volume'].show
|
|
||||||
message.weather_chart.trace_metadatas['snow_volume'].show = not message.weather_chart.trace_metadatas['snow_volume'].show
|
|
||||||
case emoji if emoji in WeatherEmoji.values:
|
|
||||||
buttons_message_type = ButtonsMessageType.WEATHER
|
|
||||||
trace_metadata_name = WeatherEmoji(emoji).name.lower()
|
|
||||||
message.weather_chart.trace_metadatas[trace_metadata_name].show = not message.weather_chart.trace_metadatas[trace_metadata_name].show
|
|
||||||
case _ if message.button_pressed_user.is_admin and 'auto_' in (config := message.button_pressed_text.split()[1]):
|
|
||||||
buttons_message_type = ButtonsMessageType.CONFIG
|
|
||||||
message.chat.config[config] = not message.chat.config[config]
|
|
||||||
message.save()
|
|
||||||
await self.edit('<b>Estos son los ajustes del grupo:</b>\n\n', self._get_config_buttons(message), message)
|
|
||||||
case _:
|
|
||||||
return
|
|
||||||
|
|
||||||
if buttons_message_type is ButtonsMessageType.WEATHER:
|
|
||||||
message.weather_chart.apply_zoom()
|
|
||||||
message.weather_chart.draw()
|
|
||||||
message.save()
|
|
||||||
|
|
||||||
image_bytes = message.weather_chart.to_image()
|
|
||||||
await self.edit(Media(image_bytes, MediaType.IMAGE), message)
|
|
||||||
|
|
||||||
async def _on_bye(self, message: Message):
|
async def _on_bye(self, message: Message):
|
||||||
if not message.chat.is_group or self.is_bot_mentioned(message):
|
if not message.chat.is_group or self.is_bot_mentioned(message):
|
||||||
await self.send_bye(message)
|
await self.send_bye(message)
|
||||||
|
|
||||||
|
async def _on_config_button_press(self, message: Message):
|
||||||
|
await self._accept_button_event(message)
|
||||||
|
|
||||||
|
if not message.button_pressed_user.is_admin or 'auto_' not in (config := message.button_pressed_text.split()[1]):
|
||||||
|
return
|
||||||
|
|
||||||
|
message.chat.config[config] = not message.chat.config[config]
|
||||||
|
message.save()
|
||||||
|
await self.edit('<b>Estos son los ajustes del grupo:</b>\n\n', self._get_config_buttons(message), message)
|
||||||
|
|
||||||
@group
|
@group
|
||||||
@bot_mentioned
|
@bot_mentioned
|
||||||
async def _on_config_list_show(self, message: Message):
|
async def _on_config_list_show(self, message: Message):
|
||||||
# config_info = pprint.pformat(message.chat.config)
|
|
||||||
# config_info = flanautils.translate(config_info, {'{': None, '}': None, ',': None, 'True': '', "'": None, 'False': '❌'})
|
|
||||||
# config_info = config_info.splitlines()
|
|
||||||
# config_info = '\n'.join(config_info_.strip() for config_info_ in config_info)
|
|
||||||
# await self.send(f'<b>Estos son los ajustes del grupo:</b>\n\n<code>{config_info}</code>', message)
|
|
||||||
|
|
||||||
await self.send('<b>Estos son los ajustes del grupo:</b>\n\n', self._get_config_buttons(message), message)
|
await self.send('<b>Estos son los ajustes del grupo:</b>\n\n', self._get_config_buttons(message), message)
|
||||||
|
|
||||||
async def _on_covid_chart(self, message: Message): # todo2
|
async def _on_covid_chart(self, message: Message): # todo2
|
||||||
@@ -484,7 +449,11 @@ class FlanaBot(MultiBot, ABC):
|
|||||||
await self.send(deleted_message.text, message)
|
await self.send(deleted_message.text, message)
|
||||||
|
|
||||||
async def _on_scraping(self, message: Message, delete_original: bool = None) -> OrderedSet[Media]:
|
async def _on_scraping(self, message: Message, delete_original: bool = None) -> OrderedSet[Media]:
|
||||||
sended_media_messages = await self._search_and_send_medias(message.replied_message) if message.replied_message else OrderedSet()
|
sended_media_messages = OrderedSet()
|
||||||
|
if message.replied_message:
|
||||||
|
word_matches = flanautils.cartesian_product_string_matching(message.text, constants.KEYWORDS['scraping'], min_ratio=multibot_constants.PARSE_CALLBACKS_MIN_RATIO_DEFAULT)
|
||||||
|
if sum(max(matches.values()) for matches in word_matches.values()):
|
||||||
|
sended_media_messages += await self._search_and_send_medias(message.replied_message)
|
||||||
sended_media_messages += await self._search_and_send_medias(message)
|
sended_media_messages += await self._search_and_send_medias(message)
|
||||||
await self.send_inline_results(message)
|
await self.send_inline_results(message)
|
||||||
|
|
||||||
@@ -497,6 +466,8 @@ class FlanaBot(MultiBot, ABC):
|
|||||||
(
|
(
|
||||||
delete_original is None
|
delete_original is None
|
||||||
and
|
and
|
||||||
|
not message.replied_message
|
||||||
|
and
|
||||||
message.chat.config['auto_delete_original']
|
message.chat.config['auto_delete_original']
|
||||||
)
|
)
|
||||||
or
|
or
|
||||||
@@ -554,6 +525,34 @@ class FlanaBot(MultiBot, ABC):
|
|||||||
for user in await self._find_users_to_punish(message):
|
for user in await self._find_users_to_punish(message):
|
||||||
await self.unpunish(user, message, message)
|
await self.unpunish(user, message, message)
|
||||||
|
|
||||||
|
async def _on_weather_button_press(self, message: Message):
|
||||||
|
await self._accept_button_event(message)
|
||||||
|
|
||||||
|
match message.button_pressed_text:
|
||||||
|
case WeatherEmoji.ZOOM_IN.value:
|
||||||
|
message.weather_chart.zoom_in()
|
||||||
|
case WeatherEmoji.ZOOM_OUT.value:
|
||||||
|
message.weather_chart.zoom_out()
|
||||||
|
case WeatherEmoji.LEFT.value:
|
||||||
|
message.weather_chart.move_left()
|
||||||
|
case WeatherEmoji.RIGHT.value:
|
||||||
|
message.weather_chart.move_right()
|
||||||
|
case WeatherEmoji.PRECIPITATION_VOLUME.value:
|
||||||
|
message.weather_chart.trace_metadatas['rain_volume'].show = not message.weather_chart.trace_metadatas['rain_volume'].show
|
||||||
|
message.weather_chart.trace_metadatas['snow_volume'].show = not message.weather_chart.trace_metadatas['snow_volume'].show
|
||||||
|
case emoji if emoji in WeatherEmoji.values:
|
||||||
|
trace_metadata_name = WeatherEmoji(emoji).name.lower()
|
||||||
|
message.weather_chart.trace_metadatas[trace_metadata_name].show = not message.weather_chart.trace_metadatas[trace_metadata_name].show
|
||||||
|
case _:
|
||||||
|
return
|
||||||
|
|
||||||
|
message.weather_chart.apply_zoom()
|
||||||
|
message.weather_chart.draw()
|
||||||
|
message.save()
|
||||||
|
|
||||||
|
image_bytes = message.weather_chart.to_image()
|
||||||
|
await self.edit(Media(image_bytes, MediaType.IMAGE), message)
|
||||||
|
|
||||||
async def _on_weather_chart(self, message: Message):
|
async def _on_weather_chart(self, message: Message):
|
||||||
bot_state_message: Message | None = None
|
bot_state_message: Message | None = None
|
||||||
if message.is_inline:
|
if message.is_inline:
|
||||||
@@ -574,7 +573,7 @@ class FlanaBot(MultiBot, ABC):
|
|||||||
possible_mentioned_ids.append(user.name.split('#')[0].lower())
|
possible_mentioned_ids.append(user.name.split('#')[0].lower())
|
||||||
possible_mentioned_ids.append(f'@{user.id}')
|
possible_mentioned_ids.append(f'@{user.id}')
|
||||||
|
|
||||||
if roles := await self.get_group_roles(message):
|
if roles := await self.get_roles(message):
|
||||||
for role in roles:
|
for role in roles:
|
||||||
possible_mentioned_ids.append(f'@{role.id}')
|
possible_mentioned_ids.append(f'@{role.id}')
|
||||||
|
|
||||||
|
|||||||
@@ -19,30 +19,66 @@ BYE_PHRASES = ('Adiós.', 'adieu', 'adio', 'adioh', 'adios', 'adió', 'adiós',
|
|||||||
HELLO_PHRASES = ('alo', 'aloh', 'buenas', 'Hola.', 'hello', 'hey', 'hi', 'hola', 'holaaaa', 'holaaaaaaa', 'ola',
|
HELLO_PHRASES = ('alo', 'aloh', 'buenas', 'Hola.', 'hello', 'hey', 'hi', 'hola', 'holaaaa', 'holaaaaaaa', 'ola',
|
||||||
'ola k ase', 'pa ti mi cola', 'saludos')
|
'ola k ase', 'pa ti mi cola', 'saludos')
|
||||||
INSULTS = (
|
INSULTS = (
|
||||||
'Cállate ya anda.',
|
'._.',
|
||||||
'¿Quién te ha preguntado?',
|
'Aléjate de mi.',
|
||||||
'¿Tú eres así o te dan apagones cerebrales?',
|
|
||||||
'Ante la duda mi dedo corazón te saluda.',
|
'Ante la duda mi dedo corazón te saluda.',
|
||||||
'Enjoy cancer brain.',
|
|
||||||
'Calla noob.',
|
|
||||||
'Hablas tanta mierda que tu culo tiene envidia de tu boca.',
|
|
||||||
'jAJjajAJjajAJjajAJajJAJajJA',
|
|
||||||
'enjoy xd',
|
|
||||||
'Reported.',
|
|
||||||
'Baneito pa ti en breve.',
|
'Baneito pa ti en breve.',
|
||||||
'Despídete de tu cuenta.',
|
'Calla noob.',
|
||||||
'Flanagan es más guapo que tú.',
|
'Cansino.',
|
||||||
'jajaj',
|
'Cuentame menos.',
|
||||||
'xd',
|
'Cuentame más.',
|
||||||
'Hay un concurso de hostias y tienes todas las papeletas.',
|
'Cállate ya anda.',
|
||||||
'¿Por qué no te callas?',
|
'Cállate.',
|
||||||
'Das penilla.',
|
'Das penilla.',
|
||||||
|
'De verdad. Estás para encerrarte.',
|
||||||
'Deberían hacerte la táctica del C4.',
|
'Deberían hacerte la táctica del C4.',
|
||||||
'Te voy romper las pelotas.',
|
'Despídete de tu cuenta.',
|
||||||
'Más tonto y no naces.',
|
'Déjame tranquilo.',
|
||||||
|
'Enjoy cancer brain.',
|
||||||
|
'Eres cortito, ¿eh?',
|
||||||
|
'Eres más malo que pegarle a un padre.',
|
||||||
'Eres más tonto que peinar bombillas.',
|
'Eres más tonto que peinar bombillas.',
|
||||||
'Eres más tonto que pellizcar cristales.',
|
'Eres más tonto que pellizcar cristales.',
|
||||||
'Eres más malo que pegarle a un padre.'
|
'Estás mal de la azotea.',
|
||||||
|
'Estás mal de la cabeza.',
|
||||||
|
'Flanagan es más guapo que tú.',
|
||||||
|
'Hablas tanta mierda que tu culo tiene envidia de tu boca.',
|
||||||
|
'Hay un concurso de hostias y tienes todas las papeletas.',
|
||||||
|
'Loco.',
|
||||||
|
'Más tonto y no naces.',
|
||||||
|
'No eres muy avispado tú...',
|
||||||
|
'Pesado',
|
||||||
|
'Que bien, ¿eh?',
|
||||||
|
'Que me dejes en paz.',
|
||||||
|
'Qué pesado.',
|
||||||
|
'Quita bicho.',
|
||||||
|
'Reportaito mi arma.',
|
||||||
|
'Reported.',
|
||||||
|
'Retard.',
|
||||||
|
'Te voy romper las pelotas.',
|
||||||
|
'Tú... no estás muy bien, ¿no?',
|
||||||
|
'Ya estamos otra vez...',
|
||||||
|
'Ya estamos...',
|
||||||
|
'enjoy xd',
|
||||||
|
'jAJjajAJjajAJjajAJajJAJajJA',
|
||||||
|
'jajaj',
|
||||||
|
'o_O',
|
||||||
|
'xd',
|
||||||
|
'¿Otra vez tú?',
|
||||||
|
'¿Pero cuándo te vas a callar?',
|
||||||
|
'¿Por qué no te callas?',
|
||||||
|
'¿Quién te ha preguntado?',
|
||||||
|
'¿Qúe quieres?',
|
||||||
|
'¿Te callas o te callo?',
|
||||||
|
'¿Te imaginas que me interesa?aha',
|
||||||
|
'¿Te quieres callar?',
|
||||||
|
'¿Todo bien?',
|
||||||
|
'¿Tú eres así o te dan apagones cerebrales?',
|
||||||
|
'🖕',
|
||||||
|
'😑',
|
||||||
|
'🙄',
|
||||||
|
'🤔',
|
||||||
|
'🤨'
|
||||||
)
|
)
|
||||||
|
|
||||||
KEYWORDS = {
|
KEYWORDS = {
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ import flanautils
|
|||||||
os.environ |= flanautils.find_environment_variables('../.env')
|
os.environ |= flanautils.find_environment_variables('../.env')
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
from multibot import TwitchBot
|
|
||||||
from flanabot.bots.flana_disc_bot import FlanaDiscBot
|
from flanabot.bots.flana_disc_bot import FlanaDiscBot
|
||||||
from flanabot.bots.flana_tele_bot import FlanaTeleBot
|
from flanabot.bots.flana_tele_bot import FlanaTeleBot
|
||||||
|
|
||||||
@@ -13,24 +12,10 @@ from flanabot.bots.flana_tele_bot import FlanaTeleBot
|
|||||||
async def main():
|
async def main():
|
||||||
flana_disc_bot = FlanaDiscBot()
|
flana_disc_bot = FlanaDiscBot()
|
||||||
flana_tele_bot = FlanaTeleBot()
|
flana_tele_bot = FlanaTeleBot()
|
||||||
t = TwitchBot(
|
|
||||||
bot_token=os.environ['TWITCH_ACCESS_TOKEN'],
|
|
||||||
initial_channels=['flanaganvaquero'],
|
|
||||||
owner_name='flanaganvaquero'
|
|
||||||
)
|
|
||||||
|
|
||||||
@t.register(always=True)
|
|
||||||
async def asd(message):
|
|
||||||
await t.send('@flanaganvaquero adios', message, reply_to=message)
|
|
||||||
# await message.chat.original_object._ws.reply(message.id, f"PRIVMSG #{message.author.name.lower()} :awdwhkajwd\r\n")
|
|
||||||
# await message.original_object.channel.reply('asd')
|
|
||||||
# m = await t.send('hola', message, reply_to=message.id)
|
|
||||||
# await t.send('me respondo a mi mismo', message, reply_to=m)
|
|
||||||
|
|
||||||
await asyncio.gather(
|
await asyncio.gather(
|
||||||
flana_disc_bot.start(),
|
flana_disc_bot.start(),
|
||||||
flana_tele_bot.start(),
|
flana_tele_bot.start()
|
||||||
t.start()
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
from flanabot.models.chat import *
|
from flanabot.models.chat import *
|
||||||
from flanabot.models.enums import *
|
|
||||||
from flanabot.models.message import *
|
from flanabot.models.message import *
|
||||||
from flanabot.models.punishment import *
|
from flanabot.models.punishment import *
|
||||||
from flanabot.models.weather_chart import *
|
from flanabot.models.weather_chart import *
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
__all__ = ['ButtonsMessageType']
|
|
||||||
|
|
||||||
from enum import auto
|
|
||||||
|
|
||||||
from flanautils import FlanaEnum
|
|
||||||
|
|
||||||
|
|
||||||
class ButtonsMessageType(FlanaEnum):
|
|
||||||
CONFIG = auto()
|
|
||||||
WEATHER = auto()
|
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
aiohttp==3.7.4.post0
|
aiohttp==3.8.1
|
||||||
aiosignal==1.2.0
|
aiosignal==1.2.0
|
||||||
anyio==3.5.0
|
anyio==3.5.0
|
||||||
asgiref==3.4.1
|
asgiref==3.4.1
|
||||||
async-generator==1.10
|
async-generator==1.10
|
||||||
async-timeout==3.0.1
|
async-timeout==4.0.2
|
||||||
attrs==21.4.0
|
attrs==21.4.0
|
||||||
beautifulsoup4==4.10.0
|
beautifulsoup4==4.10.0
|
||||||
certifi==2021.10.8
|
certifi==2021.10.8
|
||||||
@@ -14,7 +14,7 @@ click==8.0.3
|
|||||||
colorama==0.4.4
|
colorama==0.4.4
|
||||||
cryptg==0.2.post4
|
cryptg==0.2.post4
|
||||||
cryptography==36.0.1
|
cryptography==36.0.1
|
||||||
discord.py==2.0.0a4269+gb7e25645
|
discord.py @ git+https://github.com/Rapptz/discord.py@b7e25645dc68bbb828bf1ede711d098c6b183237
|
||||||
fastapi==0.71.0
|
fastapi==0.71.0
|
||||||
flanaapis
|
flanaapis
|
||||||
flanautils
|
flanautils
|
||||||
@@ -47,6 +47,7 @@ selenium-stealth==1.0.6
|
|||||||
six==1.16.0
|
six==1.16.0
|
||||||
sniffio==1.2.0
|
sniffio==1.2.0
|
||||||
sortedcontainers==2.4.0
|
sortedcontainers==2.4.0
|
||||||
|
soupsieve==2.3.1
|
||||||
starlette==0.17.1
|
starlette==0.17.1
|
||||||
sympy==1.9
|
sympy==1.9
|
||||||
Telethon==1.24.0
|
Telethon==1.24.0
|
||||||
|
|||||||
Reference in New Issue
Block a user