Archived
1
0

commit from combustion branch

This commit is contained in:
Erick
2021-11-30 23:12:44 +01:00
parent 0734412b9a
commit 23af7e9be2
4 changed files with 25 additions and 0 deletions
Binary file not shown.
+2
View File
@@ -0,0 +1,2 @@
data we need from the aero folks:
Binary file not shown.
+23
View File
@@ -0,0 +1,23 @@
#import pdftotext
# Load your PDF
#pdf_file = open("VI-CarRealTime.pdf" , "rb")
##pdf = pdftotext.PDF(f)
# If it's password-protected
# with open("secure.pdf", "rb") as f:
# pdf = pdftotext.PDF(f, "secret")
# How many pages?
# print(len(pdf))
# Iterate over all the pages
#for page in pdf:
# print(page)
# Read some individual pages
#print(pdf[1006])
#print(pdf[1007])
#Read all the text into one string
#print("\n\n".join(pdf))