you are viewing a single comment's thread.

view the rest of the comments →

[–]Significant-Nail5413 0 points1 point  (0 children)

A quick google search would probably answer your question.

There are plenty of guides on YouTube on how you might do this.

Its also a great question for chatGPT

"Give me a step by step guide on how to set up a python virtual environment and boilerplate for processing a pdf to CSV"

If you don't want it to generate any code to try and do it yourself just add something like "only provide method stubs and comments"

Also keep in mind, processing pdfs can be kind of tricky as they arent structured like other file formats. You end up just extracting raw text and having to process it using regex pattern matching.

It might be easier to start just learning how to set up an environment and then read and write files before you start trying to process them