Junior — Middle
What work experience or projects have you implemented related to this technology/tool?
sobes.tech AI
Answer from AI
In Python projects, I have implemented web scrapers using requests and BeautifulSoup libraries for data collection from websites. I also created REST APIs with Flask, handling requests and interacting with SQLite database. For automation, I wrote scripts, for example, for processing CSV files and generating reports.
Example of a simple script for reading CSV and summing a column:
import csv
def sum_column(file_path, column_name):
total = 0
with open(file_path, newline='') as csvfile:
reader = csv.DictReader(csvfile)
for row in reader:
total += float(row[column_name])
return total
print(sum_column('data.csv', 'price'))