I’m getting a fail and traceback — I imagine there are python modules I don’t have loaded that are required?
Traceback (most recent call last): File “archive_group.py”, line 25, in <module> import requests #required for fetching the raw messages ImportError: No module named requests
I’m getting a fail and traceback — I imagine there are python modules I don’t have loaded that are required?
Try:
pip install requests
The error message is telling you that python can’t find the requests module
I figured it out. I don’t speak python: for those who don’t know the json & requests packages are required at minimum to archive messages.