This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import streamlit as st | |
import requests | |
url = 'http://127.0.0.1:8001/invoke/' | |
st.title("Piper") | |
# Initialize chat history |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
from telethon import TelegramClient | |
import datetime | |
import re | |
# Replace these with your own values | |
api_id = 1111 # Your API ID | |
api_hash = 'Your API hash' | |
channel_username = 'Akharinkhabar' |