Skip to content

Commit 713996f

Browse files
committed
Update README.md
1 parent 371cf5c commit 713996f

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

README.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,57 @@
1+
<div align="center">
2+
3+
<br>
4+
15
# SolvedAC API Wrapper
6+
7+
_An Unofficual API Wrapper for [SolvedAC API](https://solvedac.github.io/unofficial-documentation/)_
8+
9+
![Version](https://img.shields.io/pypi/v/solvedac-community)
10+
11+
<br>
12+
13+
---
14+
15+
**Source Code** : [https://github.com/solvedac/python](https://github.com/solvedac/python)
16+
17+
**Pypi** : [https://pypi.org/project/solvedac-community](https://pypi.org/project/solvedac-community/)
18+
19+
---
20+
21+
22+
</div>
23+
24+
# Quick Example
25+
```python
26+
import solvedac_community
27+
import asyncio
28+
29+
client = solvedac_community.Client()
30+
31+
32+
async def main():
33+
user_name = input()
34+
print(await client.get_user(user_name))
35+
36+
37+
print(asyncio.run(main()))
38+
```
39+
40+
# Installing
41+
## Prerequisites
42+
solvedac-community is compatible with Python 3.9 and higher versions.
43+
44+
Python 2 or versions prior to Python 3.9 might not work as expected.
45+
46+
solvedac-community requires at least one of the following libraries: [aiohttp](https://pypi.org/project/aiohttp/) or [httpx](https://pypi.org/project/httpx/).
47+
48+
## Installing
49+
```bash
50+
pip install solvedac-community
51+
```
52+
```bash
53+
python -m pip install solvedac-community
54+
```
55+
```bash
56+
py -m pip install solvedac-community
57+
```

0 commit comments

Comments
 (0)