- Saved searches
- Use saved searches to filter your results more quickly
- License
- PalmaLuv/SteamGiftBot
- Name already in use
- Sign In Required
- Launching GitHub Desktop
- Launching GitHub Desktop
- Launching Xcode
- Launching Visual Studio Code
- Latest commit
- Git stats
- Files
- README.md
- About
- Saved searches
- Use saved searches to filter your results more quickly
- License
- Gobot1234/steam.py
- Name already in use
- Sign In Required
- Launching GitHub Desktop
- Launching GitHub Desktop
- Launching Xcode
- Launching Visual Studio Code
- Latest commit
- Git stats
- Files
- README.md
Saved searches
Use saved searches to filter your results more quickly
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.
Automation of taking part in various distributions.
License
PalmaLuv/SteamGiftBot
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
README.md
This bot was created to automate the operation of the site SteamGifts
Nothing else is required from you except running the program, because it will do everything for YOU.
What does this program do?
- Process Automation
- Stealth/undetectable
- Сonfigurable
- Likes to sleep when there are few glasses
- Saving logs after each job
- Download the latest version of the program [releases]
- Sign in SteamGifts by Steam
- Find PHPSESSID cookie in your browser
Make it exclusively on the site itself
python -m venv env source env/Scripts/activate pip install -r requirements.txt python main.py
If there is a suggestion to improve the application, I propose to go here link. Much has been changed, and much will be added.
About
Automation of taking part in various distributions.
Saved searches
Use saved searches to filter your results more quickly
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.
An async python wrapper to interact with the Steam API and its CMs
License
Gobot1234/steam.py
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
README.md
A modern, easy to use, and async ready package to interact with the Steam API. Heavily inspired by discord.py.
- Modern Pythonic API using async / await syntax
- Command extension to aid with bot creation
- Easy to use with an object-oriented design
- Fully typed hinted for faster development
Python 3.10 or higher is required
To install the library just run either of the following commands:
# Linux/macOS python3 -m pip install -U steamio # Windows py -m pip install -U steamio
Or for the development version.
# Linux/macOS python3 -m pip install -U "steamio @ git+https://github.com/Gobot1234/steam.py@main" # Windows py -m pip install -U "steamio @ git+https://github.com/Gobot1234/steam.py@main"
import steam class MyClient(steam.Client): async def on_ready(self) -> None: print("Logged in as", self.user) async def on_trade_receive(self, trade: steam.TradeOffer) -> None: await trade.partner.send("Thank you for your trade") print(f"Received trade: #trade.id>") print("Trade partner is:", trade.partner) print("We would send:", len(trade.sending), "items") print("We would receive:", len(trade.receiving), "items") if trade.is_gift(): print("Accepting the trade as it is a gift") await trade.accept() client = MyClient() client.run("username", "password")
from steam.ext import commands bot = commands.Bot(command_prefix="!") @bot.command async def ping(ctx: commands.Context) -> None: await ctx.send("Pong!") bot.run("username", "password")