Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from topic_handlers import *
- from postprocessors import *
- import getpass
- ############## CONFIGURATION DIVISION. ##############
- USERNAME = raw_input("Please enter Ilias username: ")
- PASSWORD = getpass.getpass("Please enter Ilias password: ")
- # (Set of) items on your desktop you are interested in.
- # These must link to a forum overview page.
- DOWNLOAD_ITEMS = set(["Team %.02d" % team for team in range(1, 34, 3)])
- # The sub forum of the above forum overview page you are interested in.
- SUB_FORUM = "Abgabeforum"
- # Reference to topic/download handler function.
- TOPIC_HANDLER = skip_existing
- # Set to true to rename duplicate files instead of overwriting them.
- RENAME_DUPLICATE = False
- # List of postprocessors. These run after the topic handler finishes.
- POST_PROCESSORS = [unzip, ada_to_pdf]
- #####################################################
Advertisement
Add Comment
Please, Sign In to add comment