Welcome to pywykop3’s documentation!

Readme File

pywykop3

Python REST API Client for Wykop2 (via api v3)

Pylint Create Release Code style: black

Full documentation can be found HERE API documentation can be found HERE

Usage

from pywykop3 import WykopAPI

# Without login
api = WykopAPI(key=key, secret=secret)

# User logged in
api = WykopAPI(refresh_token=refresh_token)

list_of_users = api.get_entry_comment_votes(70432439, 249723413)

Obtaining Refresh Token

  1. Execute code:

    from pywykop3 import WykopAPI
    api = WykopAPI(key=key, secret=secret)
    url = api.connect()
    print(url)
    
  2. Open url, log into your accout

  3. Allow access to your account

  4. Copy refresh token from url (‘rtoken’ variable)

Available methods

  • ❌ - Not tested

  • ✔️ - Tested

  • ⛔ - Unable to test

Users

Method

Tested?

get_users_autocomplete

✔️

Tags

Method

Tested?

get_tags_popular

get_tags_popular_user_tags

get_tags_related

get_tag

put_tag

get_tag_stream

get_tag_newer

get_tag_users

post_tag_user

delete_tag_user

Mikroblog

Method

Tested?

get_entries

post_entry

✔️

get_entry_by_id

✔️

put_entry

✔️

delete_entry_by_id

✔️

get_entry_votes

✔️

post_entry_vote

delete_entry_vote

get_entries_newer

Mikroblog - komentarze

Method

Tested?

get_entry_comments

post_entry_comment

get_entry_comment

put_entry_comment

delete_entry_comment

get_entry_comment_votes

post_entry_comment_vote

delete_entry_comment_vote

Indices and tables