Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 776 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 776 Bytes

Steam-password-change

Python: versions

Description

Script changes Steam account password. It works only for accounts with Steam Guard

Usage

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