Multiprocessing #8
Replies: 5 comments 2 replies
-
Can you elaborate a little more why you want to use multiprocessing? Currently it isn't supported. |
Beta Was this translation helpful? Give feedback.
-
I have a program which scrapes relatively small tables from thousands of pdfs and processes them. I use camelot.read_pdf() to extract them. Currently, the read_pdf() is the main slowing point. I wonder if there is a way to speed this process up. |
Beta Was this translation helpful? Give feedback.
-
FYI, There was a related WIP in camelot-dev#237 |
Beta Was this translation helpful? Give feedback.
-
multiprocessing can be done in many ways and I'm not convinced that we need to support it out of the box. You have a producer (your scraper) and a consumer (camelot), that is a common paradigm. I don't know if you store your pdfs in between but if you do you can start multiple processes consuming the pdf's. Doesn't seems something we need to support out of the box. |
Beta Was this translation helpful? Give feedback.
-
This is implemented in #17 |
Beta Was this translation helpful? Give feedback.
-
Hi! Is multiprocessing available for reading tables in pdf?
Beta Was this translation helpful? Give feedback.
All reactions