
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
This is a Django REST API for managing and retrieving trips, schedules, bookings, and related travel data.
This service is a core component of the DestinationPak project — a platform designed to make exploring and booking adventures across Pakistan easier and more accessible.
Simply do:
pip install django-trips
Add the app into your installed apps in your project's settings file.
INSTALLED_APPS = [
...
'django_trips',
]
python manage.py migrate
Add the following to your root urls.py
or to your desired file location.
urlpatterns = [
...
path('trips/', include(('django_trips.api.urls', 'trips-api'), namespace='trips-api')),
]
You can replace trips/
to any namespace you like for the api.
Before you generate random scripts, make sure you have the required settings available in your project. If you want to use the default settings set USE_DEFAULT_TRIPS=True
.
The script depends upon these variables, if you don't want to use the default settings set the
following settings.
TRIP_DESTINATIONS
TRIP_DEPARTURE_LOCATION
TRIP_LOCATIONS = TRIP_DEPARTURE_LOCATION + TRIP_DESTINATIONS
TRIP_HOSTS
TRIP_FACILITIES
TRIP_CATEGORIES
TRIP_GEARS
python manage.py generate_trips --batch_size=100
Change the batch_size
variable to create as much of trips you want.
You can access the all available API endpoints on the following links.
The following pages are served in the development:
Page | Method | URL |
---|---|---|
All Trips List | GET | http://localhost:8000/api/v1/trips/ |
Upcoming Trips List | GET | http://localhost:8000/api/v1/trips/upcoming/ |
Search Trip | GET | http://localhost:8000/api/v1/trips/upcoming/?name=Boston/ |
Single Trip | GET | http://localhost:8000/api/v1/trips/{identifier}/ |
Update Trip | PUT | http://localhost:8000/api/v1/trips/{identifier}/ |
Delete Trip | DELETE | http://localhost:8000/api/v1/trips/{identifier}/ |
Create Trip | POST | http://localhost:8000/api/v1/trips/ |
Destinations List | GET | http://localhost:8000/api/v1/destinations/ |
Destinations Detail | GET | TODO |
All Trip Bookings | GET | http://localhost:8000/api/v1/trips/{trip_id}/bookings/ |
Book a Trip | POST | http://localhost:8000/api/v1/trips/{trip_id}/bookings/create/ |
Booking Details | GET | http://localhost:8000/api/v1/trips/bookings/{number}/ |
Update Booking | PUT | http://localhost:8000/api/v1/trips/bookings/{number}/ |
Cancel Booking | POST | http://localhost:8000/api/v1/trips/bookings/{number}/cancel/ |
Review Trip | GET | TODO |
Trip Reviews & Comments | GET | TODO |
Authentication | Token Life |
---|---|
SessionAuthentication | UNLIMITED |
JWTAuthentication | 7 Days |
Permissions |
---|
IsAuthenticated |
IsAdminUser |
Kick the docker build using the following command.
make build
This task may take few minutes.
Once the build has been completed, spin up the docker and migrate the database.
> make dev.up
> make shell
> make update_db
Create a superuser with username admin
.
> make shell
> python manage.py createsuperuser
Create batch of trips. Run the following command inside docker shell.
> python manage.py generate_trips --batch_size=100
OR
> make random_trips
Run tests using the following command.
make tests
Action | Command |
---|---|
Run Server | make dev.up |
Trail Logs | make logs |
Attach sever | make attach |
Stop server | make stop |
* Destroy docker container. | make destory |
* caution, this will remove all your data.
Contributions are welcome! Whether it's bug fixes, new features, improving documentation, or sharing feedback — we'd love your help.
Please fork the repository, make your changes in a feature branch, and submit a pull request. For major changes, consider opening an issue first to discuss what you’d like to work on.
Thank you for being a part of the Django Trips journey.
Together, we can make travel management smarter, faster, and more delightful.
Reach out in you need further assistance.
admin@destinationpak.com
Happy coding! ✨
FAQs
A Django Rest API for fetching and creating trips and their schedules.
We found that django-trips demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.