Metadata-Version: 2.1
Name: social-stats
Version: 0.0.2
Summary: Social media stat card for readme.
Home-page: https://github.com/sudiptob2/social-stats
Author: Sudipto Baral
Author-email: sudiptobaral.me@gmail.com
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development
Classifier: Topic :: Terminals
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: beautifulsoup4 (==4.11.1)
Requires-Dist: lxml (==4.9.1)
Requires-Dist: python-dateutil (==2.8.2)
Requires-Dist: requests (==2.28.1)

# social-stats 

## Installation

```shell
pip install social-stats
```

## Example
```python
import socialstats

data = socialstats.get_stat(platform='codechef', username='sudiptob2')
print(data)
```
```shell
{'username': 'sudiptob2', 'first_name': 'sudipto baral', 'avatar_url': 'https://cdn.codechef.com/sites/default/files/uploads/pictures/eb7dbb909bbcc5999fdbb9377722b615.jpg', 'star': '2', 'rating': '1523', 'highest_rating': '1562', 'motto': 'Learning code', 'profession': 'Student', 'country': 'Bangladesh', 'org': 'Patuakhali Science And technology University ', 'solved': '33', 'authored': '0', 'tested': '0', 'contributed': '0'}

```
