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

https://github.com/aaronlyy/steamprofile

Gather information about steam profiles using python 🎮
https://github.com/aaronlyy/steamprofile

json scraping steam xml

Last synced: 3 months ago
JSON representation

Gather information about steam profiles using python 🎮

Awesome Lists containing this project

README

          

# steamprofile: Collect information about Profiles on Steam 🕹

## Install

Use pip to install
```
pip install steamprofile
```

## Example
```python
from steamprofile import get_profile

profile = get_profile("https://steamcommunity.com/id/speedkonsum")
print(profile.steamID, profile.memberSince)

# >> aaron December 28, 2017
```