Rating changes for last rounds are temporarily rolled back. They will be returned soon. ×

You can use several words in query to find by all of them at the same time. In addition, if you are lucky search understands word forms and some synonyms. It supports search by title and author. Examples:

  • 305 — search for 305, most probably it will find blogs about the Round 305
  • andrew stankevich contests — search for words "andrew", "stankevich" and "contests" at the same time
  • user:mikemirzayanov title:testlib — search containing "testlib" in title by MikeMirzayanov
  • "vk cup" — use quotes to find phrase as is
  • title:educational — search in title

Results

1.
By VadVergasov, history, 4 years ago, translation, In English
Codeforces API python Recently, it became necessary to use the Codeforces API using Python. So I decided to write my own library. [This] (https://github.com/VadVergasov/CodeforcesApiPy) module implements all the methods described in the [documentation] (https://codeforces.com/apiHelp/methods) API Codeforces. The use, in my opinion, is quite logical: ~~~~~ import codeforces_api cf_api = codeforces_api.CodeforcesApi (api_key, secret) # Authorized access. anonim_cf_api = codeforces_api.CodeforcesApi () # Anonymous access. ~~~~~ Will return a response if the response from the server return status "OK". To install via pip you need to do: `pip install CodeforcesApiPy` I believe, that this module will be helpful for someone. I will be glad to any suggestions for improvement.
, in my opinion, is quite logical: ~~~~~ import codeforces_api cf_api, . Использование, на мой взгляд, вполне логично: ~~~~~ import codeforces_api cf_api, ~~~~~ import codeforces_api cf_api = codeforces_api.CodeforcesApi (api_key, secret) # Authorized, ~~~~~ import codeforces_api cf_api = codeforces_api.CodeforcesApi(api_key, secret

Full text and comments »

  • Vote: I like it
  • +43
  • Vote: I do not like it