Exemple #1
0
def tracks(bot, update):
    tracks_found = webscrap.song_scrape()
    message_text = ""
    for track in tracks_found:
        message_text += f"[{track}]({tracks_found[track]})\n"
    bot.send_chat_action(chat_id=update.message.chat_id, action="typing")
    bot.sendMessage(chat_id=update.message.chat_id,
                    text=message_text,
                    parse_mode='markdown')
Exemple #2
0
def search(bot, update):
    bot.send_chat_action(chat_id=update.message.chat_id, action='typing')
    message_text = textwrap.dedent("Enter the name of the song to be searched")
    bot.sendMessage(chat_id=update.message.chat_id,
                    text=message_text,
                    parse_mode='markdown')
    updates = bot.get_updates()
    url = 'https://www.clubdancemixes.com/?s={updates}'
    tracksFound = webscrap.song_scrape(url)
    bot.sendMessage(chat_id=update.message.chat_id,
                    text=tracksFound,
                    parse_mode='markdown')
Exemple #3
0
def search(bot, update):
    bot.send_chat_action(chat_id=update.message.chat_id, action='typing')
    received_text = update.message.text
    query = "+".join(received_text.split()[1:])
    url = f"https://www.clubdancemixes.com/?s={query}"
    tracks_found = webscrap.song_scrape(url)
    message_text = ""
    for track in tracks_found:
        message_text += f"[{track}]({tracks_found[track]})\n"
    bot.send_chat_action(chat_id=update.message.chat_id, action="typing")
    bot.sendMessage(chat_id=update.message.chat_id,
                    text=message_text,
                    parse_mode='markdown')
Exemple #4
0
def tracks(bot, update):
    tracksFound = webscrap.song_scrape()
    bot.send_chat_action(chat_id=update.message.chat_id, action="typing")
    bot.sendMessage(chat_id=update.message.chat_id,
                    text=tracksFound,
                    parse_mode='markdown')