from typing import Dict, Union, Any, List
from bs4 import BeautifulSoup
from curl_cffi import requests
from colorama import Fore
from core import Run
class Body:
"""
My whole body and information!
"""
def __init__(self) -> None:
self.name: str = "Neon"
self.age: int = 16
self.country: str = "Germany"
self.topics: List[str] = ["Reverse Engineering", "Antibot Bypassing", "Web Automation"]
self.main_languages: List[str] = ["Python", "JS"]
self.middle_knowledge: List[str] = ["Batch", "Html", "Lua", "Java"]
self.learning: List[str] = ["Rust"]
self.hated_languages: List[str] = ["C++", "Go"]
self.interests: List[str] = ["coding for fun", "Playing games", "cooking"]
self.social_media: Union[str, int, Any] = {
"Discord": "njk0mja",
"Telegram": "@neonasfngl",
"Whatsapp": 491636478284,
"Github": "https://github.com/realasfngl"
}
@Run.Error
def projects(self) -> list:
"""
Getting my repositories heh
"""
repositories: list = []
github: str = self.social_media["Github"]
repositories_req: requests.models.Response = requests.get(f"{github}?tab=repositories")
repositories.extend(
[
f"https://github.com{a['href']}" for a in BeautifulSoup(repositories_req.text, "html.parser").find_all("a", itemprop="name codeRepository")
]
)
return repositories
telegram @neonasfngl
dm for programming inquires.
- Germany
-
07:13
(UTC +02:00) - https://t.me/neonasfngl
- https://wa.me/385950600999
Popular repositories Loading
-
perimeter-x
perimeter-x PublicAll perimeter-x files deobfuscated (atleast from the versions i could find)
-
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.