When a user doesn't have APScheduler installed, doing something like context.job_queue.run_repeating will fail since job_queue is None. So we should:
- raise a warning inside the
context.job_queue property telling the user to run pip install python-telegram-bot[job-queue]
- add the same note to each example which uses an optional dependency.