Jmandarino / Disney-Reservation-Checker

Checks for reservation availability for Walt Disney world restaurants

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Idea: Activity Reservation Checker

LoganAC34 opened this issue · comments

commented

Could you make compatibility for activity reservations like Savi's Workshop in galaxy's edge? They have a different layout than dining reservations so this tool doesn't work with it. Also, a secondary idea request; ranges for dates and times. Basically, i want to search all available days and times during a week span.

Hello! Awesome suggestions!

  1. Activity reservations: This requires users to login, though it is a good use case I am not looking to implement that just yet. I am open to someone Making a PR for this feature.

  2. Date ranges: This is a good idea but disney already takes care of this somewhat. If you search for a reservation at Ohana at 9:30pm, it will show you all party reservations from the time slot 8:00pm - 11:00pm. My script will return all those events.

Aside from Disney already returning rages I do support multiple "reservations" so if you are looking for Any day of a specific week your places.json will look like the following:

{
   "places": [
     {
   	"name": "50's prime",
   	  "link": "https://disneyworld.disney.go.com/dining/hollywood-studios/50s-prime-time-cafe/",
   	"reservations": [{
   			"time": "7:00 pm",
   			"date": "11/20/19",
               "party":"2"
   	},
   	 {
   	 "time": "7:00pm",
   	  "date": "11/21/19",
   	  "party":"2"
   	
   	}, 
   	 {
   	 "time": "7:00pm",
   	  "date": "11/22/19",
   	  "party":"2"
   	
   	}]
   	
   }
   ]
}

The above example will just be Reservations for parties of 2 at 7:00 pm for any day 11/20- 11/22

Hope this helps. I can see why ranges would make this easier but again this project isn't super top of mind for me. Always welcome to contributions from others.