diff --git a/Scripts/Bots/runPython_bot/README.md b/Scripts/Bots/runPython_bot/README.md
index 54978e290..e83087929 100644
--- a/Scripts/Bots/runPython_bot/README.md
+++ b/Scripts/Bots/runPython_bot/README.md
@@ -2,7 +2,7 @@
Run python code from your telegram chat!
-[](https://github.com/aahnik/run-py-bot/blob/main/LICENSE)
+[](https://github.com/aahnik/run-py-bot/blob/main/LICENSE)
[](https://www.python.org/)
[](https://gitHub.com/aahnik/REPO/graphs/commit-activity)
@@ -12,10 +12,18 @@ Run python code from your telegram chat!
## 🕵️ Find on Telegram
-You can find this bot on Telegram as [@runPython_bot](https://telegram.me/runPython_bot).
+You can find this bot on Telegram as [@runPython_bot](https://telegram.me/runPython_bot).
+Note: I am constantly learning new concepts and I may update the source code running behind the bot.
-This bot is deployed on [Python Anywhere](https://www.pythonanywhere.com/) free Beginner Account.
-You may check whether the bot is alive or not, by clicking on the start command. If the bot responds, it is alive.
+Here is the [link to the repo](https://github.com/aahnik/run-py-bot) which has the latest source for this bot.  
+
+
+## 😍 Featured in
+
+1. Tweet by [Dev Community](https://twitter.com/ThePracticalDev/status/1325386583537803264)
+2. Tweet by [The Python Dev](https://twitter.com/The_Python_DEV/status/1325237102058016768)
+3. Dor Moshe's [Newsletter](https://dormoshe.io/newsletters/ag/python/7?utm_source=twitter&utm_campaign=twitter)
+4. My YouTube [Video](https://youtu.be/nCuQ-7Rw0gM) [](https://youtu.be/nCuQ-7Rw0gM)
## 💬 Example Use
@@ -37,9 +45,10 @@ If you are planning to deploy on your **own machine**, make sure to have `Python
The following instructions will work smoothly on *Linux* and *Mac*. If you are on Windows, you may have to make slight modifications. Google is your best friend here.
-- Clone this repository and move into it.
-
- git clone https://github.com/aahnik/run-py-bot.git && cd run-py-bot
+- Clone this repository and move into this directory which has this README you are reading.
+```
+git clone https://github.com/Python-World/Python_and_the_Web.git && cd Scripts/Bots/runPython_bot
+```
- Now add the token in the first line of `token.txt`.Run `cat > token.txt` -> Paste the token -> Press `Ctrl+D`
@@ -71,18 +80,19 @@ For security and performance reasons, you **cannot** do the following with the b
You may overcome these limitations by changing the `config.py` file in the `bot` subdirectory and running the bot on your own server.
+As I am constantly learning new concepts, the [latest version](https://github.com/aahnik/run-py-bot) of this bot will not have these limitations.
+
## 🤗 The Shameless Plug
Authored by **Aahnik Daw**.
-You may connect with me by clicking on any of the icons below !
-
-
-
-
-
-
-
-
-
-
+You may click on any of the icons below to connect with me.
+
+
+
+
+
+
+
+
+
diff --git a/Scripts/Bots/runPython_bot/bot/config.py b/Scripts/Bots/runPython_bot/bot/config.py
index 6dfb2c1e6..d4267dfaa 100644
--- a/Scripts/Bots/runPython_bot/bot/config.py
+++ b/Scripts/Bots/runPython_bot/bot/config.py
@@ -3,7 +3,7 @@
'''
# expressions which are banned
-banned = ['quit', 'input', 'open', 'import', 'exit']
+banned = ['quit', 'input', 'open', 'import', 'exit','exec']
# timeout in seconds
TIMEOUT = 6