Travel REST API (Flask + SQLAlchemy)
A simple RESTful API built with Flask and SQLAlchemy to manage travel destinations.
You can create, read, update, and delete (CRUD) destinations with fields like destination
, country
, and rating
.
- Built with Flask (lightweight Python web framework)
- Uses SQLAlchemy ORM for database handling
- SQLite database for simplicity
- Full CRUD operations
- JSON request/response format
- Can be tested easily with Postman or cURL
βββ app.py # Main Flask application
βββ travel.db # SQLite database (auto-created on first run)
βββ requirements.txt # Project dependencies
βββ README.md # Documentation