On Thu, Apr 08, 2021 at 07:19:53AM -0700, Eric 247ERICPOINTCOM wrote: > I am new to Python and Django, I just discovered that I can use Django to > easily implement a project that am working on. > > I would like to get some assistance with implementing a booking app into my > project. > > I came across Django-Booking but I dont know how exactly it works,
Yup, you're in the position of wanting to leverage as much existing code as possible, but being inexperienced enough to not know how to evaluate the quality or usefulness of that existing code. I feel for you for sure. A couple of questions to hopefully help clarify things: 1. What kinds of things are you trying to book? Rooms at a hotel, tables at a restaurant, chairs at a barbershop? It looks like django-booking is set up to handle multiple people attached to a single booking[a]. Is this something you need? 2. django-booking hasn't been updated in 5 years[b]. It looks like the last update was for Django 1.9. The latest Django is 3.2. Is that a concern for you? 3. It it weird that django-booking includes an error logging table[c]? Django already has standard ways of reporting errors[d]. Why invent a new one? [a] https://github.com/bitlabstudio/django-booking/blob/master/booking/models.py#L336 [b] https://github.com/bitlabstudio/django-booking/commits/master [c] https://github.com/bitlabstudio/django-booking#error-logging [d] https://docs.djangoproject.com/en/3.1/howto/error-reporting/ > do I need to create an app for booking like a new app into my project > or do I need to use it as a built in package only. Your help will be > highly appreciated. You might be able to use the django-booking app as is by just following the directions in the README[e]. There might be no need to create your own app. [e] https://github.com/bitlabstudio/django-booking -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/20210408222833.GO15054%40fattuba.com.