You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Rewrote comments
* Added link to wiki from README
* Now using POST requests to avoid 413 HTTP error
* Creating Release on the tag
* Updated LICENSE
* Added task rating to get_tags methods
* Edited setup.py
* Changed LICENSE to GPLv3
* Fixed version parsing
* Now all methods return objects
* Added LICENSE head
* Updated README
* Updated Python version
* Added checking for code style workflow
* Rewrote gitignore, added dependencies
* Updated README
* Sorted imports in tests
* Added information about types and methods
Copy file name to clipboardExpand all lines: README.md
+20-3Lines changed: 20 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@ Codeforces API
6
6
[](https://pypi.org/project/CodeforcesApiPy/)
All types are defined in types.py. They are all completely in line with the [Codeforces API's definition of the types](https://codeforces.com/apiHelp/objects)
45
+
46
+
Methods
47
+
-------
48
+
49
+
All [API methods](https://codeforces.com/apiHelp/methods) are located in the CodeforcesAPI class. They are renamed to follow common Python naming conventions. E.g. `contest.hacks` is renamed to `contest_hacks` and `user.actions` to `user_actions`.
50
+
51
+
Transferring to 2 version
52
+
--------
53
+
54
+
In the second version, all objects are represented as a class, so if you want to get a handle of the user you need to do like this: user.handle. You can read about all fields on [Codeforces API objects](https://codeforces.com/apiHelp/objects).
55
+
40
56
Wiki
41
57
--------
58
+
42
59
Here is link to the [wiki](https://github.com/VadVergasov/CodeforcesApiPy/wiki) for more details.
0 commit comments