For grabbing PDFs from ICRA 2022
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
Noëlle de443e9bf6
Finalize main.py, Readme, and CSS/JS
2 年前
html Finalize main.py, Readme, and CSS/JS 2 年前
.gitignore Finalize main.py, Readme, and CSS/JS 2 年前
LICENSE Initial commit 2 年前
README.md Finalize main.py, Readme, and CSS/JS 2 年前
config.ini Initialize 2 年前
empty-config.ini add empty-config 2 年前
main.py Finalize main.py, Readme, and CSS/JS 2 年前
requirements.txt Update main & requirements 2 年前
scraper.py Initialize 2 年前

README.md

pdf-grabber

For grabbing PDFs from ICRA 2022!

Usage

Make sure you have Python 3.6 or later, install a virtual environment if you like, then run these in a command line:

  • pip3 install -r requirements.txt
  • python3 main.py

This script will create a sub-directory, pdfs/, where it will store the PDFs it downloads. PDFs are named according to the presentation’s name and the PDF’s file number.

You can use the -e flag (e.g. python3 main.py -e 88) to determine which event ID to scan for presentations that have PDFs. By default, this is event 88. (The number is unfortunate; it’s the event this was written for, the 39th IEEE International Conference on Robotics and Automation, and bears no other symbolism here.)

You can use the -s flag (e.g. python3 main.py -s) to save the HTML content of each page along with the PDF. This is mostly for diagnostic purposes. The CSS and Javascript files required by the HTML files are included here, but you may have to move them somewhere else to get them to work properly (where depends on your system).