Skip to content
View py3-dev's full-sized avatar
Block or Report

Block or report py3-dev

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
py3-dev/README.md

About Me

from typing import Tuple, List, Dict

class Py3Dev:
    pass

class Attributes(Py3Dev):
    @property
    def contact(self) -> Tuple[str, str, str, str]:
        linkedin  = "https://www.linkedin.com/in/yashvarshney17/"
        instagram = "https://instagram.com/yashvarshney17"
        website   = "https://pypress.onrender.com/"
        email     = "[email protected]"
        
        return linkedin, instagram, website, email

    @property
    def life(self) -> Tuple[List[str], int]:
        langs = ['Hindi', 'English']
        age   = 23
        
        return langs, age

    @property
    def coding(self) -> Tuple[Dict[str, List[str]], List[str], List[str]]:
        langs = {
            'expert'      : ['python'],
            'intermediate': ['c++', 'js'],
            'learning'    : ['golang']
        }
        specialities  = ['nlp', 'fullstack']
        environment   = ['vscode']

        return langs, specialities, environment

Skills

Popular repositories Loading

  1. TaskMan TaskMan Public

  2. fast-api-tutorial fast-api-tutorial Public

    https://fastapi.tiangolo.com/tutorial/

    Python

  3. simple-post-go-api simple-post-go-api Public

    A simple POST API written in Golang

    Go

  4. fastapi-kafka-consumer fastapi-kafka-consumer Public

    Forked from pedrodeoliveira/fastapi-kafka-consumer

    A Python RESTful API using FastAPI with a Kafka Consumer

    Python

  5. dbeaver dbeaver Public

    Forked from dbeaver/dbeaver

    Free universal database tool and SQL client

    Java