Sobes.tech
Junior — Middle

Can you share your work experience at your last place of employment?

sobes.tech AI

Answer from AI

In my last project, I was involved in developing a web application using Python with the Django framework. The main tasks included creating REST APIs for frontend interaction, working with a PostgreSQL database, and optimizing queries to improve performance. I also wrote unit tests to ensure code quality and participated in code reviews. For example, I implemented user authentication functionality using JWT, which helped improve security and simplified integration with a mobile app.

from rest_framework_simplejwt.tokens import RefreshToken

def get_tokens_for_user(user):
    refresh = RefreshToken.for_user(user)
    return {
        'refresh': str(refresh),
        'access': str(refresh.access_token),
    }

Additionally, I automated the deployment of the application using Docker and CI/CD pipelines.