Junior — Middle
What technologies and tools have you used in previous projects?
sobes.tech AI
Answer from AI
In my previous projects, I used the following technologies and tools in Python:
- Frameworks: Django for web development, Flask for lightweight APIs.
- Libraries: Requests for HTTP requests, Pandas and NumPy for data processing.
- Tools: Git for version control, Docker for containerizing applications.
- Databases: PostgreSQL and SQLite, interacting through ORM SQLAlchemy.
Example of using Requests to fetch data from an API:
import requests
response = requests.get('https://api.example.com/data')
if response.status_code == 200:
data = response.json()
print(data)