scraperwiki does not support python version 3.10.7
After updating platform to early_release and python to version 3.10.7, the scrappers failed:
Traceback (most recent call last):
File "/app/scraper.py", line 13, in
This happens because in python 3.10.7 there is no more Iterable from collections. For 3,10.7 it may be necessary the folowing code: try: from collections.abc import Iterable except ImportError: from collections import Iterable