Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/patryk4815/pysteamweb

Python3 steam web
https://github.com/patryk4815/pysteamweb

Last synced: 2 months ago
JSON representation

Python3 steam web

Awesome Lists containing this project

README

        

Requirements
============

* Python 3.5+
* pyCrypto
* aiohttp 1.1.6

Instalation
===========

* 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