About 50 results
Open links in new tab
  1. Python Telegram Quiz Bot - Code Review Stack Exchange

    Apr 22, 2021 · To improve my Python knowledge I started a small coding project: A telegram chat/quiz bot that is based on official questions about basketball rules. The bot reads them from one or …

  2. Primitive Twitch.tv IRC Chat Bot - Code Review Stack Exchange

    Apr 2, 2016 · So currently I have this basic little chat bot that can read commands and can timeout users if their message contains a banned word or phrase. I was wondering how I can improve on this bot to …

  3. python - Simple chat bot - Code Review Stack Exchange

    Jun 21, 2015 · One blank line between the functions in bot. Some more blank lines in between blocks of code in the module-level, and in any function in the bot class. Secondly, the two variables near the …

  4. Simple chatbot written in Python - Code Review Stack Exchange

    I wrote a simple chatbot in Python a while ago, and I'd like to know how it could be improved. Here's the code: import random import pickle class Bot: current = "" botText = "BOT> " ...

  5. python - A discord.py bot that logs every messages sent in a discord ...

    May 30, 2021 · Hello Code Review community ! I'm making a bot with discord.py that listens to every message sent in a server and stores it in a database that could be retrieved by admin/mod later.

  6. python - Stack Exchange Marathon Bot – Part 1: Bot structure - Code ...

    Apr 11, 2021 · While python-telegram-bot does provide built-in support for bot data and chat data in the form of arbitrary key-to-value dictionaries, I prefer using a direct object-oriented approach to storing …

  7. Python 3 IRCbot (library) - Code Review Stack Exchange

    May 7, 2021 · What should I use instead of while ircmsg.find("End of /NAMES list.") == -1: – Puneet Gopinath May 10, 2021 at 6:43 Can you guide me with SASL Client Configuration in the bot, there …

  8. python - Telegram Bot that retrieves book information from …

    Oct 25, 2016 · 4 The project below is about a Telegram bot that implements both inline and offline modes. The idea is to get a brief info about a book, searched by title (it's author, rating, short …

  9. python - IRC logging bot - Code Review Stack Exchange

    Oct 20, 2015 · I've recently been learning Python and decided to write an IRC bot as a good first project. Before now I've only really written scripts. I am using the Python IRC library. The IRC bot joins an IRC

  10. performance - How to optimize my telegram bot written in Python?

    Mar 14, 2021 · I have written a fairly simple bot that provides information or additional choice based on the user's query. It runs well and does the job, however, I was wondering how can I optimize my …