This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Usage: python pdftables_extract.py <filename> | |
""" | |
import os | |
import sys | |
import pandas as pd | |
from pdftables.pdf_document import PDFDocument |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Usage: python pdf_table_extract.py <filename> | |
""" | |
import os | |
import sys | |
import pandas as pd | |
import pdftableextract as pdf |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
import pandas as pd | |
import pdfplumber | |
pdf = pdfplumber.open(sys.argv[1]) | |
p0 = pdf.pages[0] | |
table = p0.extract_table() | |
print table |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
s = [" ", " ", " ", " ", " ", " ", " ", " ", " "] | |
def render_grid(s): | |
grid = "\n-----------------\n".join( | |
[ | |
f" {s[0]} | {s[1]} | {s[2]}\n (1) | (2) | (3)", | |
f" {s[3]} | {s[4]} | {s[5]}\n (4) | (5) | (6)", | |
f" {s[6]} | {s[7]} | {s[8]}\n (7) | (8) | (9)" | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Python 3.7.8 (tags/v3.7.8:4b47a5b6ba, Jun 28 2020, 10:03:53) [MSC v.1916 64 bit (AMD64)] on win32 | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> import os, time | |
>>> PDF_FILENAME = input("Path to PDF: ") | |
>>> OUT_FILE = os.path.abspath(input("Path to output PNG: ")) | |
>>> | |
>>> import winrt.windows.data.pdf as PDF | |
>>> from winrt.windows.storage import StorageFile | |
>>> op = StorageFile.get_file_from_path_async(PDF_FILENAME) | |
>>> time.sleep(0.5) # should really await, but this is easier |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Dependencies.exe -imports -json "C:\Users\Vinayak Mehta\pdftopng-package-data\pdftopng.cp38-win_amd64.pyd" | |
{ | |
"Imports": [ | |
{ | |
"Flags": 0, | |
"Name": "MSVCP140.dll", | |
"NumberOfEntries": 38, | |
"ImportList": [ | |
{ | |
"Hint": 605, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Dependencies.exe -imports -json "C:\Users\Vinayak Mehta\pdftopng-dll-mangling\pdftopng.cp38-win_amd64.pyd" | |
{ | |
"Imports": [ | |
{ | |
"Flags": 0, | |
"Name": "MSVCP140.dll", | |
"NumberOfEntries": 38, | |
"ImportList": [ | |
{ | |
"Hint": 605, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> Dependencies.exe -imports "C:\Users\Vinayak Mehta\pdftopng-dll-mangling\pdftopng.cp38-win_amd64.pyd" | |
[-] Import listing for file : C:\Users\Vinayak Mehta\pdftopng-dll-mangling\pdftopng.cp38-win_amd64.pyd | |
Import from module MSVCP140.dll : | |
Function ?_Random_device@std@@YAIXZ | |
Function ?__ExceptionPtrCreate@@YAXPEAX@Z | |
Function ?__ExceptionPtrCopy@@YAXPEAXPEBX@Z | |
Function ?_Xout_of_range@std@@YAXPEBD@Z | |
Function ?__ExceptionPtrAssign@@YAXPEAXPEBX@Z | |
Function ?_Xlength_error@std@@YAXPEBD@Z | |
Function ?__ExceptionPtrToBool@@YA_NPEBX@Z |
OlderNewer