Guest User

Untitled

a guest
Nov 29th, 2012
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. DS211> more sabToSickBeard.py
  2. #!/usr/bin/env python
  3.  
  4. # Author: Nic Wolfe <[email protected]>
  5. # URL: http://code.google.com/p/sickbeard/
  6. #
  7. # This file is part of Sick Beard.
  8. #
  9. # Sick Beard is free software: you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation, either version 3 of the License, or
  12. # (at your option) any later version.
  13. #
  14. # Sick Beard is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. # GNU General Public License for more details.
  18. #
  19. # You should have received a copy of the GNU General Public License
  20. # along with Sick Beard. If not, see <http://www.gnu.org/licenses/>.
  21.  
  22.  
  23. import sys
  24. import autoProcessTV
  25.  
  26. if len(sys.argv) < 8:
  27. print "Not enough arguments received from SABnzbd. Please update it."
  28. sys.exit()
  29. else:
  30. autoProcessTV.processEpisode(sys.argv[1], sys.argv[2], sys.argv[7])
  31.  
  32. # SABnzbd argv:
  33. # 1 The final directory of the job (full path)
  34. # 2 The original name of the NZB file
  35. # 3 Clean version of the job name (no path info and ".nzb" removed)
  36. # 4 Indexer's report number (if supported)
  37. # 5 User-defined category
  38. # 6 Group that the NZB was posted in e.g. alt.binaries.x
  39. # 7 Status of post processing. 0 = OK, 1=failed verification, 2=failed unpack, 3=1+21
  40. DS211>
Advertisement
Add Comment
Please, Sign In to add comment