Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update adder.py #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions adder.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
import time
import random

api_id = #Enter Your 7 Digit Telegram API ID.
api_hash = '' #Enter Yor 32 Character API Hash
phone = '' #Enter Your Mobilr Number With Country Code.
api_id = 14022631 #Enter Your 7 Digit Telegram API ID.
api_hash = '166c109e3153f7a8ab357d4797ca4e44' #Enter Yor 32 Character API Hash
phone = '62895342016591' #Enter Your Mobilr Number With Country Code.
client = TelegramClient(phone, api_id, api_hash)
async def main():
# Now you can use all client methods listed below, like for example...
Expand Down