Middle+
Tell me about your current experience and projects
sobes.tech AI
Answer from AI
Currently, I work with Python on projects related to web development and automation. One of the key projects is developing a REST API for an internal accounting system, where I use Flask and SQLAlchemy to interact with the database. I also participated in creating scripts for processing large volumes of data using pandas and numpy libraries.
In another project, I was involved in automating testing with pytest, which significantly sped up the quality assurance process. Additionally, I have experience with asynchronous programming in Python using asyncio to optimize network requests.
Example of a simple REST API in Flask:
from flask import Flask, jsonify
app = Flask(__name__)
@app.route('/status')
def status():
return jsonify({'status': 'ok'})
if __name__ == '__main__':
app.run()