I\'m trying to schedule an interval job with APScheduler (v3.0.0).
I\'ve tried:
from apscheduler.schedulers.blocking import BlockingScheduler sched =
The documentation had an error there. I've fixed it now. That first line should be:
from apscheduler.schedulers.blocking import BlockingScheduler
It would've raised an ImportError though, but you didn't mention any. Did you try any of the provided examples?