Sobes.tech
Junior — Middle

Can you tell about your past projects and the key tasks you performed?

sobes.tech AI

Answer from AI

In one of my Python projects, I developed a web application for data processing and visualization. The main tasks included writing scripts for parsing data from various sources, creating REST APIs using Flask, and optimizing performance for processing large volumes of information.

Another project was related to automating routine tasks: I wrote scripts for automatically collecting reports, processing them, and sending them via email. In this project, libraries like pandas and smtplib were actively used.

Here's an example of a simple script for parsing JSON and outputting data:

import json

data = '{"name": "Ivan", "age": 30}'
parsed = json.loads(data)
print(f"Name: {parsed['name']}, Age: {parsed['age']}")