Skip to content

Commit 0a7bd66

Browse files
Poolitzerharshil21
andauthored
rewrite to static html files
Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
1 parent 35f93ed commit 0a7bd66

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+736
-346
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

example.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from telegram import Update
2+
from telegram.ext import ApplicationBuilder, CommandHandler, ContextTypes
3+
4+
5+
async def hello(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None:
6+
await update.message.reply_text(f'Hello {update.effective_user.first_name}')
7+
8+
9+
app = ApplicationBuilder().token("YOUR TOKEN HERE").build()
10+
11+
app.add_handler(CommandHandler("hello", hello))
12+
13+
app.run_polling()

website/static/website/favicons/android-chrome-144x144.png renamed to favicons/android-chrome-144x144.png

File renamed without changes.

website/static/website/favicons/android-chrome-192x192.png renamed to favicons/android-chrome-192x192.png

File renamed without changes.

website/static/website/favicons/android-chrome-36x36.png renamed to favicons/android-chrome-36x36.png

File renamed without changes.

website/static/website/favicons/android-chrome-48x48.png renamed to favicons/android-chrome-48x48.png

File renamed without changes.

website/static/website/favicons/android-chrome-72x72.png renamed to favicons/android-chrome-72x72.png

File renamed without changes.

0 commit comments

Comments
 (0)