Currently from crawlee.storages import Dataset will fail on circular dependency. This makes also some of our examples fail on circular import for example try this one: https://crawlee.dev/python/docs/examples/beautifulsoup-crawler
Restructure the code to prevent the circular dependency.
Probably introduced by from crawlee import service_container that was recently added.
Currently
from crawlee.storages import Datasetwill fail on circular dependency. This makes also some of our examples fail on circular import for example try this one: https://crawlee.dev/python/docs/examples/beautifulsoup-crawlerRestructure the code to prevent the circular dependency.
Probably introduced by
from crawlee import service_containerthat was recently added.