Coder Social home page Coder Social logo

Hey 👋, This is Evans Pauliuts

EvansPauliuts

from typing import Callable
from pydantic import BaseModel


def get_code() -> dict[str, list[str]]:
    languages = {
        'frontend': ['HTML', 'CSS', 'JavaScript', 'ReactJS'],
        'backend': ['Python', 'Flask', 'Django', 'Django REST framework', 'FastApi'],
        'database': ['PostgreSQL', 'MySQL', 'SQLite3', 'Mongo DB'],
        'devops': ['Docker', 'Nginx', 'Jenkins', 'GitHub Actions', 'AWS', 'Heroku'],
        'tools': ['GIT', 'GitHub', 'GitLab', 'Pandas', 'Jupyter notebook', 'SQLAlchemy', 'Redis'],
        'editor': ['Pycharm', 'Vim'],
        'architecture': ['SPA', 'MVC', 'Serverless', 'Microservices']
    }
    return languages


class SoftwareEngineer(BaseModel):
    name: str
    role: str
    code: Callable[[str], list[str]] = get_code()

    @property
    def say_hi(self) -> str:
        return 'Thanks for dropping by, hope you find some of my work interesting.'


me = SoftwareEngineer(name='Evans Pauliuts', role='Python Software Engineer')
print(me.say_hi)

Evans Pauliuts's Projects

django icon django

The Web framework for perfectionists with deadlines.

httpx icon httpx

A next generation HTTP client for Python. 🦋

infra_actions icon infra_actions

Учебный проект для изучения работы GitHub Actions (Яндекс Практикум)

mypy icon mypy

Optional static typing for Python 3 and 2 (PEP 484)

pydantic icon pydantic

Data parsing and validation using Python type hints

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.