News

Hi. I'm trying to parse docx using the BytesIO overload of the Document ctor. when I parse any docx created using python-docx, the codes snippet below works just fine ...
from urllib.request import urlopen import gzip import io gzip_url = 'https://datasets.imdbws.com/name.basics.tsv.gz' with urlopen(gzip_url) as response: gzip_bytes ...