Advertisement
Guest User

Untitled

a guest
Sep 13th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. ########################TEMPLATES##############################
  2. templates:
  3. global:
  4. # REJECT ANY TORRENT THAT CONTAINS ONE OF THESE
  5. # WORDS IN BETWEEN A SPACE OR A DOT
  6. regexp:
  7. reject:
  8. - (?i)[ .]cam[ .]
  9. - (?i)[ .]bdscr[ .]
  10. - (?i)[ .]dvdscr[ .]
  11. - (?i)[ .]preair[ .]
  12. - (?i)[ .]ppvrip[ .]
  13. - (?i)[ .]r5[ .]
  14. - (?i)[ .]tc[ .]
  15. - (?i)[ .]ts[ .]
  16. - (?i)[ .]ecc[ .]
  17. - (?i)[ .]avc[ .]
  18. - (?i)[ .]avi[ .]
  19. - (?i)[ .]qebs[ .]
  20. - (?i)[ .]hdtc[ .]
  21. - (?i)[ .]hdcam[ .]
  22. - (?i)[ .]telesync[ .]
  23. - (?i)[ .]webhd[ .]
  24. - (?i)[ .]webrip[ .]
  25. - (?i)[ .]ac3d[ .]
  26. - (?i)[ .]dtsd[ .]
  27. - (?i)[ .]md[ .]
  28. - (?i)[ .]ld[ .]
  29. - (?i)[ .]3d[ .]
  30. - (?i)[ .]legi0n[ .]
  31. - (?i)[ .]ift[ .]
  32. - (?i)[ .]exdt[ .]
  33. - (?i)[ .]bdp[ .]
  34. - (?i)[ .]german[ .]
  35. - (?i)[ .]dutch[ .]
  36. - (?i)[ .]french[ .]
  37. - (?i)[ .]truefrench[ .]
  38. - (?i)[ .]danish[ .]
  39. - (?i)[ .]swedish[ .]
  40. - (?i)[ .]spanish[ .]
  41. - (?i)[ .]italian[ .]
  42. - (?i)[ .]korean[ .]
  43. - (?i)[ .]dubbed[ .]
  44. - (?i)[ .]swesub[ .]
  45. - (?i)[ .]korsub[ .]
  46. - (?i)[ .]dksubs[ .]
  47. - (?i)[ .]vain[ .]
  48.  
  49.  
  50. tv:
  51. series:
  52. - Days of Our Lives
  53. download: /Users/[name]/Downloads
  54. quality:
  55. - 720p h264
  56.  
  57.  
  58. movies:
  59. quality:
  60. - 1080p h264
  61. imdb_lookup: yes
  62. list_match:
  63. from:
  64. - movie_list: mymovies
  65. inputs:
  66. - rss: https://iptorrents.com/torrents/rss?u=794470;tp=xx;download;s0=6;s1=14
  67. download: /Users/user/Downloads
  68.  
  69.  
  70. ########################TASKS##############################
  71. tasks:
  72.  
  73. IPT_Login:
  74. priority: 1
  75. form:
  76. url: https://iptorrents.com
  77. username: nam3less
  78. password: x
  79. html:
  80. url: https://iptorrents.com/movies
  81. regexp:
  82. accept:
  83. - 'nam3less'
  84. exec: echo "Logged In"
  85.  
  86. IMPORT-MOVIES:
  87. imdb_list:
  88. login: email@protonmail.com
  89. password: xx
  90. list: watchlist
  91. accept_all: yes
  92. list_add:
  93. - movie_list: mymovies
  94. priority: 2
  95.  
  96. MOVIES:
  97. template: movie
  98. priority: 3
  99.  
  100. TVshows:
  101. priority: 4
  102. sleep: 7
  103. template: tv
  104. rss: https://iptorrents.com/torrents/rss?u=794470;tp=[passkey];download
  105.  
  106.  
  107. schedules:
  108. # Run every task once an hour
  109. - tasks: [IPT_Login]
  110. interval:
  111. hours: 1
  112. # Run task_a and task_b every 30 minutes
  113. - tasks: [IMPORT-MOVIES, MOVIES, TVshows]
  114. interval:
  115. minutes: 30
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement