No description
Find a file
2025-12-22 06:39:30 +01:00
README.md oopsies wrong link 2025-12-22 06:39:30 +01:00

Teal Wolf 25

import requests

TealWolf25 = {
    "names": ["Teal", "Fynn"],
    "pronouns": [
        ["fae", "faer", "faer", "faers", "faerself"],
        ["they", "them", "their", "theirs", "themselves"],
    ],
    "bio": "A silly enby furry developer :3 wawawawawa",
    "identity": ["panromantic", "nonbinary", "asexual", "polyamorous"],
    "titles": ["Software Developer", "Robotics Engineer", "Voice Actor", "Musician"],
    "groups": ["devOS: Sanity Edition", "Stellar Frost", "Azure Fey MC"],
    "languages": [
        "English",
        "Latin",
        "programming.Python",
        "programming.Java",
        "programming.JavaScript",
        "programming.C++",
        "programming.C#",
    ],
    "socials": {
        "GitHub": "Teal-Wolf-25-v2",
        "Bluesky": "@tw25.net",
        "YouTube": "@TealWolf25",
        "Twitch": "Teal_Wolf_25",
    },
    "well_known_projects": {
        "Extra Trinkets": requests.get("https://github.com/Teal-Wolf-25-v2/Extra-Trinkets"),
        "Cyan": requests.get("https://github.com/Teal-Wolf-25-v2/Teal-Bot"),
    },
    "links": {
        "Website": requests.get("https://www.tw25.net"),
        "Modrinth": requests.get("https://modrinth.com/user/Teal_Wolf_25"),
        "Pronouns": requests.get("https://en.pronouns.page/u/Teal_Wolf_25"),
    },
    "pfp_artist": {
        "Name": "MeeperCreep",
        "Platform": requests.get("https://meepercreepertown.neocities.org/"),
    },
}

pronouns = TealWolf25["pronouns"]
preferred_pronouns = []
for pronoun_set in pronouns:
    if "fae" in pronoun_set:
        preferred_pronouns = pronoun_set
TealWolf25["preferred_pronouns"] = preferred_pronouns

print(TealWolf25)