Skip to content

Commit e27c6e3

Browse files
authored
Merge pull request #35 from solvedac/dev
for v1.0.1
2 parents 431baca + 2e7c9c3 commit e27c6e3

File tree

2 files changed

+57
-1
lines changed

2 files changed

+57
-1
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+
```

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "solvedac_community"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
description = "An API Wrapper for SolvedAC API"
55
authors = ["DevRuby <hiveruby@gmail.com>"]
66
license = "MIT"

0 commit comments

Comments
 (0)