Advanced telegram link in a message attach bot

An advanced telegram attach bot git clone https://github.com/FayasNoushad/Attach-Bot-V2/tree/main cd Attach-Bot-V2 pip3 install -r requirements.txt # python3 main.py Variables API_HASH Your API Hash from my.telegram.org API_ID Your API ID from my.telegram.org BOT_TOKEN Your bot token from @BotFather DATABASE_URL MongoDB URL BOT_OWNER Bot owner ID Credits GitHub https://github.com/FayasNoushad/Attach-Bot-V2    

Read more

Telegram Voice Chat Music Player UserBot Written with Pyrogram Smart Plugin and tgcalls

A Telegram UserBot to Play Audio in Voice Chats. This is also the source code of the userbot which is being used for playing DJ/Live Sets music in VC DJ/Live Sets group. Made with tgcalls and Pyrogram Smart Plugin vc.player vc.recorder ping Description Voice Chat Audio Player Voice Chat Audio Recorder ping and uptime Dependencies ffmpeg ffmpeg, opus-tools, bpm-tools Conflict vc.recorder vc.player Requirements Python 3.6 or higher A Telegram API key and a Telegram account Choose plugins you need, install […]

Read more

Crypto Telegram Bot With Python

Optional Add-on Coinbase Pro Portfolio Tracker https://github.com/whittlem/coinbaseprotracker An all-in-one view of all your Coinbase Pro portfolios. Highly recommended if running multiple bots and keeping track of their progress. Prerequisites When running in containers: a working docker/podman installation Python 3.9.x installed — https://installpython3.com (must be Python 3.9 or greater) % python3 –version Python 3.9.1 Python 3 PIP installed — https://pip.pypa.io/en/stable/installing % python3 -m pip –version pip 21.0.1 from /usr/local/lib/python3.9/site-packages/pip (python 3.9) Installation Manual % git clone https://github.com/whittlem/pycryptobot % cd pycryptobot % […]

Read more

Telegram bot to stream videos in telegram voicechat for both groups and channels

Telegram bot to stream videos in telegram voicechat for both groups and channels. Supports live strams, YouTube videos and telegram media. Config Vars: Mandatory Vars API_ID : Get From my.telegram.org API_HASH : Get from my.telegram.org BOT_TOKEN : @Botfather SESSION_STRING : Generate From here CHAT : ID of Channel/Group where the bot plays Music. Optional Vars: LOG_GROUP : Group to send Playlist, if CHAT is a Group() ADMINS : ID of users who can use admin commands. STARTUP_STREAM : This will […]

Read more

Supports 500 Telegram Groups No Need Of Bot

import youtube_dl ydl_opts = {} url = input(“enter your url:- “) with youtube_dl.YoutubeDL(ydl_opts) as ydl: meta = ydl.extract_info(url, download=False) formats = meta.get(‘formats’, [meta]) for f in formats: print(f[‘url’]) If you have a https:// address change it to http:// otherwise you get an “HTTP error 403 forbidden    

Read more

Community-based extensions for the python-telegram-bot library

ptbcontrib Community-based extensions for the python-telegram-bot library. This library provides extensions for the python-telegram-bot library written and maintained by the community of PTB users. Installing Because this library is subject to more frequent changes than PTB, it is not available via PyPi. You can still install it via pip: $ pip install git+https://github.com/python-telegram-bot/ptbcontrib.git If you want to use an extension that has some special requirements, you can install them on the fly as e.g. $ pip install “ptbcontrib[extension1,extension2] @ git+https://github.com/python-telegram-bot/ptbcontrib.git” […]

Read more
1 5 6 7 8 9