Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/patryk4815/pysteamweb
Python3 steam web
https://github.com/patryk4815/pysteamweb
Last synced: 2 months ago
JSON representation
Python3 steam web
- Host: GitHub
- URL: https://github.com/patryk4815/pysteamweb
- Owner: patryk4815
- License: mit
- Created: 2015-07-11T22:38:13.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-02-29T13:27:23.000Z (10 months ago)
- Last Synced: 2024-05-11T21:41:55.499Z (8 months ago)
- Language: Python
- Size: 50.8 KB
- Stars: 3
- Watchers: 3
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
Requirements
============* Python 3.5+
* pyCrypto
* aiohttp 1.1.6Instalation
===========* pip3 install pysteamweb
Usage
=====.. code-block:: python
>>> import asyncio
>>> from pysteamweb import SteamWebBase
>>>
>>> async def main():
>>> async with SteamWebBase(
>>> username='',
>>> password='',
>>> ) as s:
>>> print('logging success')
>>> print(await s.session.send_session(url='http://steamcommunity.com/profiles/{}/edit'.format(s.steam_id), is_post=False))
>>>
>>>
>>> if __name__ == '__main__':
>>> loop = asyncio.get_event_loop()
>>> loop.run_until_complete(main())
>>> loop.close()Demos
=====Look at demo folder