import pandas as pd
import zipfile
zip_file_path = 'file_path'
zf = zipfile.ZipFile(zip_file_path)
csv_file_name = 'csv_file_name'
df = pd.read_csv(zf.open(csv_file_name))
Created
September 11, 2018 08:56
-
-
Save weizh888/8d1144e0a5dae83e22864b10af03809c to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment