One Daily App controlling a second App which terminates when finished with list... #186
robmontesinos
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
First of all, I am greatly impressed with your work on this software - thank you for sharing it and helping so many developers.
The project I am working on has a daily task to start a web scraper that runs every five minutes, i.e. a second task, grabbing a url from a database, parsing the data and then updating the table row.
When all the target url's have been processed, the 5-minute web scraper task shuts down until it is called again the following day. I have been pulling my hair out for two days trying to implement this task combination. I have experience with APScheduler but I like Rocketry and plan to use if for simpler maintenance tasks, e.g. db backups.
I hope you don't mind my asking how to approach this multi-app challenge. I tried subprocess.check_call(...) but honestly I have not reached a reliable result. I would appreciate any suggestions as to how to proceed with this challenge. Gracias.
All reactions