Advertisement
Guest User

Untitled

a guest
Jul 1st, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. from topic_handlers import *
  2. from postprocessors import *
  3. import getpass
  4.  
  5. ############## CONFIGURATION DIVISION. ##############
  6. USERNAME = raw_input("Please enter Ilias username: ")
  7. PASSWORD = getpass.getpass("Please enter Ilias password: ")
  8.  
  9. # (Set of) items on your desktop you are interested in.
  10. # These must link to a forum overview page.
  11. DOWNLOAD_ITEMS = set(["Team %.02d" % team for team in range(1, 34, 3)])
  12.  
  13. # The sub forum of the above forum overview page you are interested in.
  14. SUB_FORUM = "Abgabeforum"
  15.  
  16. # Reference to topic/download handler function.
  17. TOPIC_HANDLER = skip_existing
  18.  
  19. # Set to true to rename duplicate files instead of overwriting them.
  20. RENAME_DUPLICATE = False
  21.  
  22. # List of postprocessors. These run after the topic handler finishes.
  23. POST_PROCESSORS = [unzip, ada_to_pdf]
  24. #####################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement