1

How to use warc package in python 3 ?

I installed warc with no problem. But when I call import warc I am getting the error:

Exception has occurred: ModuleNotFoundError No module named 'builtin'

Andrey
  • 5,932
  • 3
  • 17
  • 35
  • 1
    This `warc` thing hasn't been maintained since 2012. Migrate to something else. [`warcio` looks like it does the same job.](https://pypi.org/project/warcio/) – user2357112 Mar 25 '21 at 06:33

1 Answers1

1

The module __builin__ is a python 2 name. If you want a python3-compatible package that reads warcs, I suggest 'warcio'.

Greg Lindahl
  • 477
  • 3
  • 13