Skip to content
View MrBenoit's full-sized avatar

Block or report MrBenoit

Block user

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
MrBenoit/README.md

Hey there πŸ‘‹, I'm Benoit!

Self proclaimed Π‘Π•Πž Π΄Π΅Π³Ρ€Π°Π΄Π°Ρ†ΠΈΠΈ ΠΈ Чпокаюсь с ΠΊΠΎΠ΄ΠΎΠΌ





from datetime import date
from sqlalchemy import select
from sqlalchemy import and_
from sqlalchemy.ext.asyncio import AsyncSession

from core.models import engine

class AboutMe():
    def __init__(self):
        async with AsyncSession(engine) as session:
            user = session.scalar(
                select(Users)
                .where(
                    and_(
                        user_id=1,
                        user_name='MrBenoit'
                    )
                )
            )
            
        print(user.username)
        > MrBenoit
        print(user.pronouns)
        > ["he", "him"]
        print(user.location)
        > {"Russian": "Moscow"}
        print(user.occupation)
        > Computer Science Student
        print(user.birthday)
        > 16.06.2004
        print(user.age)
        > 19
        print(user.hobbies)
        > ["Coding", "Gaming", "Anime", "Gym"]
        print(user.interests)
        > ["Programming", "Music", "Open Source"]

if __name__ == "__main__":
    me = AboutMe()

Projects πŸ“¦

  • -Β Discord bot with a variety of functionality

  • -Β A simple matrix calculator. I wrote it out of boredom

  • :Β  My personal webpage


Languages πŸ’Ύ

Python Golang SQL HTML CSS JS

Tools πŸ› οΈ

VS CodeJetBrains Zsh GitHub Git

My Specs πŸ’»

Desktop CPU GPU

Desktop CPU

Contact Me πŸ“‘

Discord Instagram
Reddit Patreon
X GitHub
Telegram

Pinned Loading

  1. πŸ“Š GitHub Stats πŸ“Š GitHub Stats
    1
    ⭐    Total Stars                                    4
    2
    βœ…    Total Commits                                 70
    3
    πŸ”€    Total PRs                                      0
    4
    🚩    Total Issues                                   1
    5
    πŸ“¦    Contributed to                                 1
  2. 🌐 Recently Committed Langs 🌐 Recently Committed Langs
    1
    CSS             +2      -2 β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ100.0%
  3. 🧩 Code::Stats Levels 🧩 Code::Stats Levels
    1
    Total XP                        lvl   5 (   44,811 XP)
    2
    CSS                             lvl   2 (   12,780 XP)
    3
    HTML                            lvl   2 (   11,308 XP)
    4
    Markdown                        lvl   1 (    6,002 XP)
    5
    Go                              lvl   1 (    5,328 XP)
  4. ⌚ I'm an early 🐀 ⌚ I'm an early 🐀
    1
    🌞 Morning    14 commits  β–ˆβ–ˆβ–ˆβ–ˆβ–‰β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘  23.3%
    2
    πŸŒ† Daytime    36 commits  β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘  60.0%
    3
    πŸŒƒ Evening    10 commits  β–ˆβ–ˆβ–ˆβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘  16.7%
    4
    πŸŒ™ Night       0 commits  β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘   0.0%
  5. MatrixCalculator MatrixCalculator Public

    Simple Matrix Calculator

    Python 1