Skip to content
View IHosseini083's full-sized avatar
🍊
Doing fun stuff!
🍊
Doing fun stuff!

Organizations

@DjangoEx @BufferingIO
Block or Report

Block or report IHosseini083

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
IHosseini083/README.md

Hey there! I'm Seyed Iliya

from dataclasses import dataclass


@dataclass
class Developer:
    name: str
    location: str
    languages: list[str]
    frameworks: list[str]
    
    
dev = Developer(
    name="Iliya",
    location="Iran",
    languages=["Python", ...],
    frameworks=["FastAPI", "Flask", ...],
)

πŸ”§ Technologies & Tools

  • πŸ“« How to reach me:

Iliya's Github Stats

Pinned

  1. Shortify Shortify Public

    Shortify is a URL shortener RESTful API built with Python and FastAPI ⚑

    Python 102 9

  2. DjangoEx/awesome-python-resources DjangoEx/awesome-python-resources Public

    Awesome Python Resources

    1.3k 165

  3. DjangoEx/awesome-python-resources-persian DjangoEx/awesome-python-resources-persian Public

    Python-related resources made in Persian language

    121 13

  4. Iterate over an iterable in chunks o... Iterate over an iterable in chunks of n elements using generator function.
    1
    import itertools
    2
    from typing import Iterable, Iterator, Tuple, TypeVar
    3
    
    
    4
    _T = TypeVar("_T")
    5