mirror of
https://github.com/jsvine/pdfplumber.git
synced 2026-08-29 08:34:23 +08:00
Add test for PR 136 and bump version
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# PDFPlumber `v0.5.12`
|
||||
# PDFPlumber `v0.5.13`
|
||||
|
||||
Plumb a PDF for detailed information about each text character, rectangle, and line. Plus: Table extraction and visual debugging.
|
||||
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
version_info = (0, 5, 12)
|
||||
version_info = (0, 5, 13)
|
||||
__version__ = '.'.join(map(str, version_info))
|
||||
|
||||
Binary file not shown.
@@ -124,3 +124,9 @@ class Test(unittest.TestCase):
|
||||
page = pdf.pages[0]
|
||||
words = page.extract_words()
|
||||
|
||||
def test_pr_136(self):
|
||||
path = os.path.join(HERE, "pdfs/pr-136-example.pdf")
|
||||
with pdfplumber.open(path) as pdf:
|
||||
page = pdf.pages[0]
|
||||
words = page.extract_words()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user