visual debugging not working in jupyter note book #533
Answered
by
jsvine
sunday-will
asked this question in
Q&A
-
hello! environment:
|
Beta Was this translation helpful? Give feedback.
Answered by
jsvine
Nov 4, 2021
Replies: 1 comment
-
Instead of what you have in the screenshot, try this, with import pdfplumber
with pdfplumber.open('xxxx.pdf') as pdf:
p = pdf.pages[0]
im = p.to_image()
im |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
sunday-will
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Instead of what you have in the screenshot, try this, with
im
as the final value in the cell, outside thewith
block: