Skip to content

Commit 21ac59d

Browse files
committed
Bump version number to 2.0.4
1 parent 400afce commit 21ac59d

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "valo_api"
7-
version = "2.0.3"
7+
version = "2.0.4"
88
description = "Valorant API Wrapper for https://github.com/Henrik-3/unofficial-valorant-api"
99
readme = "README.md"
1010
authors = ["Manuel Raimann <[email protected]>"]

test.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import json
2+
import urllib
3+
4+
import valo_api
5+
6+
if __name__ == "__main__":
7+
obj = {"startIndex": 0, "endIndex": 20}
8+
query = f"?{urllib.parse.urlencode(obj)}"
9+
print(
10+
valo_api.endpoints.get_raw_competitive_updates_data_v1(
11+
"ee89b4d9-13d0-5832-8dd7-eb5d8806d918",
12+
"eu",
13+
{"startIndex": 0, "endIndex": 20},
14+
)
15+
)

0 commit comments

Comments
 (0)