Untitled page

import pip
pip.main(['install', 'pdfplumber', '--trusted-host', 'pypi.org', '--trusted-host', 'files.pythonhosted.org'])
import pdfplumber

(['openpyxl', 'xlrd', 'lxml'])

import pip

# List of packages to install
packages = ['pdfplumber', 'pandas']

# Install each package while bypassing the proxy
for package in packages:
pip.main([
'install', package,
'--trusted-host', 'pypi.org',
'--trusted-host', 'files.pythonhosted.org'
])

# Import the installed packages
import openpyxl
import xlrd
import lxml

Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.