An unofficial Python API for the site Toyhou.se
Project description
Toyhouse Data
[work in progress] A Toyhouse service to retrieve data about your (and other people's) OCs, as well as your (and other people's) profiles.
This is very much a niche project (lol) but I'm hoping it'll serve some use to anyone curious!
Prerequisites
Usage
Start by importing the module, then instantiating the class to 'log in' with your Toyhou.se username and password. This is required for basically all usage, as many profiles/characters are inaccessible to guest users.
file_path
here is an optional argument - it dictates a folder in which relevant images are saved. For instance, if you want to save a user's profile picture in your Documents folder, you would add C:/Users/<yourusername>/Documents
, and the profile picture would then be downloaded in the subfolder /<thatuser>/
. If left blank, the subfolder will be placed in the directory where this code is currently running.
from Session import Session
session = Session("<username>", "<password>", file_path)
session.auth()
[! Important] I cannot guarantee that this service works on profiles with extreme custom CSS, legacy layouts or profile warnings! If you want to use this, please manually visit
https://toyhou.se/~account/display
and turn off all three settings under 'Profile Browsing'. In the meantime, I will be attempting to fix that.
Functions
Session
session = Session("<username>", "<password>")
session.auth()
Logs you in to the session using your username and password. This session object is required to access basically everything else!
User
user_info = User(session, "<username>")
This creates a new User object, letting you retrieve information about whatever user is listed there.
user_chars()
user_info.user_chars()
# Returns
[('Althea', 12391***, 'https://toyhou.se/12391***.althea'), ('Aster', 21438***, 'https://toyhou.se/21438***.aster'), ('Aspen', 4106***, 'https://toyhou.se/4106***.aspen')]
Outputs a list of tuples containing every character from that user accessible to the authorised session, in the form (<char_name>, <char_id>, <char_url>)
.
user_stats()
user_info.user_stats()
# Returns
{'Time Registered': '22 Mar 2019, **:**:** am', 'Last Logged In': '25 Oct 2023, **:**:** am', 'Invited By': '***', 'Character Count': '***', 'Images Count': '***', 'Literatures Count': '***', 'Words Count': '***', 'Forum Posts Count': '***', 'Subscribed To...': '*** users', 'Subscribed To By...': '*** users', 'Authorizing...': '***', 'Authorized By...': '***'}
Outputs the specified user's publicly viewable statistics (if the user is not self, else it outputs all statistics regardless of hidden status) as a dictionary.
user_log()
user_info.user_log()
# Returns
[{'date': '6 Nov 2020, **:**:** pm', 'name_from': 'my_old_username', 'name_to': 'my_new_username'}, {'date': '19 Apr 2020, **:**:** am', 'name_from': 'my_oldest_username', 'name_to': 'my_old_username'}]
Outputs the specified user's username change history as a list of dictionaries, with most recent name change first.
user_pic()
user_info.user_pic(download=True)
# Returns
<username> profile picture has been saved at <path>
user_info.user_pic()
# Returns
https://f2.toyhou.se/file/f2-toyhou-se/users/<username>
Retrieves the specified user's profile picture, and if download=True
, downloads the image at the file path mentioned under Usage. If download=False
, it returns the URL at which you can access the profile picture.
user_designs()
user_info.user_designs()
Outputs a list of tuples in format (<char_name>, <char_id>, <char_url>) for all characters that the user is credited as a designer of. This format is the same as user_chars()
Character
char_info = Character(session, characterid)
This creates a new Character object, letting you retrieve information about the character profile which corresponds to that ID.
char_stats()
char_info.char_stats()
# Returns
{'Created': '31 Dec 2018, **:**:** am', 'Creator': '********', 'Favorites': '57'}
Outputs the publicly viewable statistics of the character, including its creation date, creator and favourites amount as a bare minimum (can also include trade listing and designer) as a dictionary.
char_log()
char_info.char_log()
# Returns
[('20 May 2022, **:**:** pm', 'current_owner'), ('20 Jan 2021, **:**:** pm', 'previous_owner'), ('22 Sep 2020, **:**:** pm', 'previous_previous_owner')]
Outputs the previous ownership log of the character as a list of tuples in form (<transfer date>, <recipient of transfer>)
, starting with the most recent transfer (so the current owner) first.
char_favs()
char_info.char_favs()
# Returns
['i_favourited_this_character', 'i_did_too', 'i_did_as_well']
Outputs a list of all accounts that have the character favourited.
To-Do List
-
Retrieve character stats (
favourites/favourite amount- comments/comment amount -ownership log) -
Add Guest Session
-
Find a profile which has multiple designers listed
-
Add the character's name into character statistics, since that's kind of important
-
Retrieve other users' favourite characters, ID, and folders/subfolders/page they are located on.
-
Test on profiles with custom CSS
-
Add better ways to catch errors (e.g
login credentials incorrect)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file toyhouse-0.1.0.tar.gz
.
File metadata
- Download URL: toyhouse-0.1.0.tar.gz
- Upload date:
- Size: 22.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 519732109f1ff3b460262de77c3386728579ade56babdf0870b3f821c15afb1d |
|
MD5 | 83b0f39e6c8a38ca4e653d7a7603074e |
|
BLAKE2b-256 | da6a5bb1d1de64b9785ab3ea9e9552c541f801d05863e7dae81ba860a5ee09ed |
File details
Details for the file toyhouse-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: toyhouse-0.1.0-py3-none-any.whl
- Upload date:
- Size: 21.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c97711a598941af76453c323c07d9de142d7a216429ae3090b870d4a88584de |
|
MD5 | b9be08b9a950550e6da7bd1625c09d3a |
|
BLAKE2b-256 | 853089cfe0136f5fe758ec249546df0e90468042830a541d6aa5224ca454f291 |