https://github.com/sometastycake/steam-password-change
Steam password change
https://github.com/sometastycake/steam-password-change
pysteam steam steam-account steam-api steam-password steam-sdk steamcommunity
Last synced: 6 months ago
JSON representation
Steam password change
- Host: GitHub
- URL: https://github.com/sometastycake/steam-password-change
- Owner: sometastycake
- License: mit
- Created: 2023-02-23T03:33:07.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-02-12T17:50:35.000Z (over 1 year ago)
- Last Synced: 2025-02-12T18:44:09.572Z (over 1 year ago)
- Topics: pysteam, steam, steam-account, steam-api, steam-password, steam-sdk, steamcommunity
- Language: Python
- Homepage:
- Size: 22.5 KB
- Stars: 11
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Steam-password-change
[]()
## Description
Script changes Steam account password. It works only for accounts with Steam Guard
## Usage
```python
from steampassword.chpassword import SteamPasswordChange
from steampassword.steam import CustomSteam
from steampassword.utils import generate_password
async def main():
steam = CustomSteam(
login='login',
password='password',
shared_secret='shared_secret',
identity_secret='identity_secret',
device_id='device_id',
steamid=76560000000000000,
)
newpassword = generate_password()
await SteamPasswordChange(steam).change(newpassword)
```
## Licence
MIT