Search code examples
python-3.xpython-asyncioapscheduler

cannot import name 'AsyncIOSchedular'


import asyncio
import trollius
import datetime 
import atexit
from apscheduler.schedulers.asyncio import AsyncIOSchedular

This gives

ImportError: cannot import name 'AsyncIOSchedular'

python version: 3.6.5

os is ubuntu

Note: APSchedular is installed version==3.6.3 and its BackgroundSchedular is working just fine.

What can be the reasons behind this? Thanks


Solution

  • It's spelled "Scheduler" not "Schedular".