class Coats1337:
def __init__(self):
self.user_socials = []
def socials(self, socials: list):
for item in socials:
if item == 'twitter':
self.user_socials.append('twitter : coats1337')
elif item == 'discord':
self.user_socials.append('discord : @azael.#1337')
elif item == 'twitch':
self.user_socials.append('twitch : coats1337')
else:
self.user_socials.append(f'{item} : unknown')
return self.user_socials
def bio(self):
name : str = "Azael"
age : str = "16"
birthday : str = "02/07/2004"
status : list = ["student", "developer"]
languages : list = ["spanish", "english", "french"]
return name, age, birthday, status, languages
if __name__ == "__main__":
client = Coats1337()
socials = client.socials(['twitter', 'twitch', 'discord', 'instagram'])
bio = client.bio()
for i in socials:
print(i)
print(bio)Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign up
Pinned
601 contributions in the last year
Activity overview
Contributed to
Alucard-Selfbot/Alucard-Selfbot.github.io,
Alucard-Selfbot/Alucard-Selfbot-src,
coats1337/Discordapp-TokenGrabber
and 5 other
repositories
Contribution activity
July 2020
Created an issue in bwmarrin/discordgo that received 1 comment
[ERROR] - [DG0] wsapi.go:574:onEvent() error unmarshalling READY event, json: cannot unmarshal number into Go struct field ReadState.read_state.last_messag e_id of type string
I've got this error while running discordgo in a user account, i attempted to ban multiple users (20 threads + 10 users) I've even modified the use…
1
comment