Пытаюсь прочитать pdf файл с помощью библиотеки PyPDF2
import PyPDF2
file=open('file.pdf','rb')
pdffile=PyPDF2.PdfFileReader(file)
Получаю такой ответ
Traceback (most recent call last):
File "C:/Users/peka/AppData/Local/Programs/Python/Python36/123.py", line 3, in
pdffile=PyPDF2.PdfFileReader(file)
File "C:\Users\peka\AppData\Local\Programs\Python\Python36\lib\site-packages\PyPDF2\pdf.py", line 1084, in __init__
self.read(stream)
File "C:\Users\peka\AppData\Local\Programs\Python\Python36\lib\site-packages\PyPDF2\pdf.py", line 1689, in read
stream.seek(-1, 2)
OSError: [Errno 22] Invalid argument
Почему неправильный аргумент? Помогите.