| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Original HTTPS Page] |
Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.
You must be logged in to block users.
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusefrom dataclasses import dataclass
from typing import Tuple
class Meta(type):
def __new__(cls, name, bases, attrs):
for attr in attrs:
if not attr.startswith("_"):
__annotations__[attr] = Tuple[str, ...]
attrs["__annotations__"] = __annotations__
new_cls = super().__new__(cls, name, bases, attrs)
new_cls = dataclass(new_cls)
return new_cls
class Stack(metaclass=Meta):
languages = ("Python", "Bash")
ongoing = ("C")
print("A little more about me")
Akarata = {
'pronouns': 'he' or 'him' or 'his',
'fullname': 'Prastiko Sasmitho',
'nationality': ['Indonesia', 'ID'],
'location': 'Jakarta,ID',
'contact': {
'email': 'prastiko46@gmail.com',
'website': 'https://gmail.com',
},
'about': [
'18 y.o' ,
'A fan of python',
'I\'m considering myself as a runner. (even tho rarely do it) xd',
'Love editing & design',
'Human.',
'If i\'m born again i just want to be myself'
],
}| Back | FazBrowse Home | New Git URL |