You are viewing a single comment's thread.

view the rest of the comments →

worldofmadness ago

Really? You decide to shut down one of the few censorship sites left on the net at this very pivotal moment in history where sharing true information is more important than ever? Strategic timing to shut down I would say. Kikes are definitely rubbing their hands like crazy over this announcement..

Muh-Shugana ago

We at least need a way to site-rip the text posts from this whole website, there's important shit stored here!

meowski ago

Just finished this python scraper. Got my posts and comments all saved down with it.

Get it while you can.

https://github.com/fwet/voat_scraper

operation_wetvac ago

Thanks, and just in the nick of time.

Currently running it. And I know, not the proper channels, but on Windows at least you also need to:

pip install requests_html

Also when doing the dry run option, need to create/touch the following files first as the script tries to read them before they exist:

comments_test.html
submissions_test.html
submission_test.html

When doing a live run, it tries to open files before creating the output directory:

commentsOutFilePath=outFolder+'/'+userName+'_comments_out.csv'
commentsOutFileHandle =  open(commentsOutFilePath, 'a', newline='')
commentsWriter = csv.writer(commentsOutFileHandle)

I just moved these two lines to right before that section and it's working:

logging.debug("Creating output folder "+outFolder)
Path(outFolder).mkdir(parents=True, exist_ok=True)

meowski ago

Thanks, I updated the repo accordingly