Sobes.tech
Junior — Middle

Tell me about your participation in various projects.

sobes.tech AI

Answer from AI

In my Python projects, I participated in developing web applications using frameworks like Django and Flask. For example, I created REST APIs for managing user data and integrating with external services. I also worked on automating tasks with scripts, processing data, and writing parsers to collect information from websites. In one project, I implemented a server monitoring system that sends notifications in case of failures.

Here's an example of a simple script for parsing HTML using the BeautifulSoup library:

from bs4 import BeautifulSoup
import requests

url = 'https://example.com'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')

for link in soup.find_all('a'):
    print(link.get('href'))
Tell me about your participation in various projects… - sobes.tech