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 🎮
- Host: GitHub
- URL: https://github.com/aaronlyy/steamprofile
- Owner: aaronlyy
- License: mit
- Created: 2020-10-06T15:50:06.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-07-01T17:52:14.000Z (12 months ago)
- Last Synced: 2026-03-06T00:48:01.904Z (4 months ago)
- Topics: json, scraping, steam, xml
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```