Metadata-Version: 2.4
Name: steamprofile
Version: 0.1.3
Summary: Gather information about steam profiles
Author-email: Aaron Levi Can <aaronlevican@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/aaronlyy/steamprofile
Project-URL: Issues, https://github.com/aaronlyy/steamprofile/issues
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: LICENSE.txt
Requires-Dist: requests
Requires-Dist: Unidecode
Dynamic: license-file

# 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
```
