mirror of
https://github.com/moparisthebest/SickRage
synced 2024-10-31 23:45:02 -04:00
0d9fbc1ad7
This version of SickBeard uses both TVDB and TVRage to search and gather it's series data from allowing you to now have access to and download shows that you couldn't before because of being locked into only what TheTVDB had to offer. Also this edition is based off the code we used in our XEM editon so it does come with scene numbering support as well as all the other features our XEM edition has to offer. Please before using this with your existing database (sickbeard.db) please make a backup copy of it and delete any other database files such as cache.db and failed.db if present, we HIGHLY recommend starting out with no database files at all to make this a fresh start but the choice is at your own risk! Enjoy!
55 lines
1.9 KiB
Python
55 lines
1.9 KiB
Python
"""
|
|
====================== 8< ============================
|
|
This file is an Hachoir parser template. Make a copy
|
|
of it, and adapt it to your needs.
|
|
|
|
You have to replace all "TODO" with you code.
|
|
====================== 8< ============================
|
|
|
|
TODO parser.
|
|
|
|
Author: TODO TODO
|
|
Creation date: YYYY-mm-DD
|
|
"""
|
|
|
|
# TODO: Just keep what you need
|
|
from lib.hachoir_parser import Parser
|
|
from lib.hachoir_core.field import (ParserError,
|
|
UInt8, UInt16, UInt32, String, RawBytes)
|
|
from lib.hachoir_core.endian import LITTLE_ENDIAN, BIG_ENDIAN
|
|
|
|
class TODOFile(Parser):
|
|
PARSER_TAGS = {
|
|
"id": "TODO",
|
|
"category": "TODO", # "archive", "audio", "container", ...
|
|
"file_ext": ("TODO",), # TODO: Example ("bmp",) to parse the file "image.bmp"
|
|
"mime": (u"TODO"), # TODO: Example: "image/png"
|
|
"min_size": 0, # TODO: Minimum file size (x bits, or x*8 in bytes)
|
|
"description": "TODO", # TODO: Example: "A bitmap picture"
|
|
}
|
|
|
|
# TODO: Choose between little or big endian
|
|
# endian = LITTLE_ENDIAN
|
|
# endian = BIG_ENDIAN
|
|
|
|
def validate(self):
|
|
# TODO: Check that file looks like your format
|
|
# Example: check first two bytes
|
|
# return (self.stream.readBytes(0, 2) == 'BM')
|
|
return False
|
|
|
|
def createFields(self):
|
|
# TODO: Write your parser using this model:
|
|
# yield UInt8(self, "name1", "description1")
|
|
# yield UInt16(self, "name2", "description2")
|
|
# yield UInt32(self, "name3", "description3")
|
|
# yield String(self, "name4", 1, "description4") # TODO: add ", charset="ASCII")"
|
|
# yield String(self, "name5", 1, "description5", charset="ASCII")
|
|
# yield String(self, "name6", 1, "description6", charset="ISO-8859-1")
|
|
|
|
# Read rest of the file (if any)
|
|
# TODO: You may remove this code
|
|
if self.current_size < self._size:
|
|
yield self.seekBit(self._size, "end")
|
|
|