so I have a python script that make a POST call with some arguments (ID and Date), that means that at a specific date time makes a POST passing and ID.
Now what I want to achieve is having a script that puts jobs in the queue and another one that execute those script at that specific date time.
The script stays the same every time but it's date and ID that changes.
I can of course run multiple times the same script with different arguments and using time.sleep wait until it gets executed but I am trying to find a cleaner way...