Smart Dev
10.1K subscribers
567 photos
42 videos
4 files
234 links
Stay updated with our Telegram bot developments, discover new GitHub repositories, and get the best Python scripts. Join Smart Dev for smart coding solutions!

This Channel Part Of @PremiumNetworkPlus
Download Telegram
Need Unsplash+ Downloader Open Source ???
Anonymous Poll
93%
Yesssssss
7%
NOOOOOOO
Unsplash Downloader Py Script

Repo :
https://github.com/bisnuray/UnsplashDownloader

About : Unsplash Downloader is a Python script capable of downloading Unsplash Plus images using cookies from a premium account.

Enjoy Fork this repo , & Star β˜€οΈ the repo if you liked it.
❀3πŸ”₯2
How to get request header cookie value by Useing account cookie

import requests
import json

# Path to your cookies file
cookies_file = 'cookie.json'

# Your target URL
url = 'https://www.abcd.com'

# Function to load cookies from a file
def load_cookies(file_path):
with open(file_path, 'r') as file:
cookies_raw = json.load(file)
cookies = {}
if isinstance(cookies_raw, dict):
for key, value in cookies_raw.items():
cookies[key] = value
elif isinstance(cookies_raw, list):
for cookie in cookies_raw:
if 'name' in cookie and 'value' in cookie:
cookies[cookie['name']] = cookie['value']
else:
raise ValueError("Cookies are in an unsupported format.")
return cookies

# Load cookies from the file
cookies_from_file = load_cookies(cookies_file)

# Create a session object
session = requests.Session()

# Add the loaded cookies to the session
for name, value in cookies_from_file.items():
session.cookies.set(name, value)

# Send a request to the target URL
response = session.get(url)

# Print the request header cookie
# Note: The cookies may be sent as part of the request, but they might not appear directly in the 'Cookie' header due to the way requests handles them internally.
# This print statement will attempt to reconstruct the Cookie header as it might appear in the actual HTTP request.
cookies_header = '; '.join([f'{name}={value}' for name, value in session.cookies.items()])
print(f'Cookie: {cookies_header}')
❀‍πŸ”₯7
This media is not supported in your browser
VIEW IN TELEGRAM
😎5
Guys, do you need a tutorial about how to make an HTTPS proxy with a VPS?

🫑🫑 React to this post.
πŸ”₯31πŸ‘28❀27πŸ‘24🀩22πŸ₯°21πŸŽ‰17πŸ†2
Squid HTTPS Proxy Setup : This instructions for setting up Squid as an HTTPS proxy on a vps server. Squid is a caching proxy that supports various protocols. This guide specifically focuses on HTTPS proxying for improved security and privacy.

Repo : https://github.com/bisnuray/SquidProxySetup

Enjoy Https proxy making β˜€οΈ the repo if you like the instructions
❀2
Custom Telegram Bot Creation!

What We Offer:
- We take orders to build Custom Telegram bots
- Multifunction Bot [ with your requirement ]
- For FAQ DM :
@TheSmartBisnu


Your choice, your bot, custom-built for you.
πŸ”₯3πŸ‘1
Hey Everyone πŸ‘‹ Add Premium Network All Channels and Groups in your Folder πŸ“ To Get Premium Access Free πŸ†“

Just
Click Here And See Action πŸ™ˆ
Please open Telegram to view this post
VIEW IN TELEGRAM
Want Mail.tm mail generator python script ??
Anonymous Poll
91%
Yessss
9%
Nooooo
πŸ”₯2😎2
https://t.me/PremiumNetworkTeam

Free Unlimited Givaway like rain join fast
⚑️⚑️⚑️
Please open Telegram to view this post
VIEW IN TELEGRAM
TempMail Telegram Bot πŸ’Œ

Repo :
https://github.com/bisnuray/TempMail-Bot

About :
This is a Temporary email addresses Generator telegram bot script using the mail.tm API, allowing users to create emails, check inbox, and read messages from Telegram.


Enjoy Fork this repo , & Star β˜€οΈ the repo if you liked it.
❀3
If You want to make freepik, envato, motionarry Downloader Bot DM Me @theSmartBisnu
This media is not supported in your browser
VIEW IN TELEGRAM
UpLabs: Unlimited UI Kits, Icons, Templates, Themes downloader done πŸ˜‡πŸ˜‡
Please open Telegram to view this post
VIEW IN TELEGRAM
❀3
Smart Dev
https://youtu.be/06gZ_zYuxO8?si=8R3FhaA8GJPIHwqb
Build a Gemini AI Telegram Bot with Python

What this
Hey Everyone πŸ‘‹ Add Premium Network All Channels and Groups in your Folder πŸ“ To Get Premium Access Free πŸ†“

Just
Click Here And See Action πŸ™ˆ
Please open Telegram to view this post
VIEW IN TELEGRAM
trying to build a chatbot with gemini api soon will public
❀5❀‍πŸ”₯1