id
int64
0
458k
file_name
stringlengths
4
119
file_path
stringlengths
14
227
content
stringlengths
24
9.96M
size
int64
24
9.96M
language
stringclasses
1 value
extension
stringclasses
14 values
total_lines
int64
1
219k
avg_line_length
float64
2.52
4.63M
max_line_length
int64
5
9.91M
alphanum_fraction
float64
0
1
repo_name
stringlengths
7
101
repo_stars
int64
100
139k
repo_forks
int64
0
26.4k
repo_open_issues
int64
0
2.27k
repo_license
stringclasses
12 values
repo_extraction_date
stringclasses
433 values
1,500
exif.py
midgetspy_Sick-Beard/lib/hachoir_parser/image/exif.py
""" EXIF metadata parser (can be found in a JPEG picture for example) Author: Victor Stinner """ from lib.hachoir_core.field import (FieldSet, ParserError, UInt8, UInt16, UInt32, Int32, Enum, String, Bytes, SubFile, NullBytes, createPaddingField) from lib.hachoir_core.endian import LITTLE_ENDIAN, BIG_...
12,810
Python
.py
328
29.585366
103
0.586553
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,501
jpeg.py
midgetspy_Sick-Beard/lib/hachoir_parser/image/jpeg.py
""" JPEG picture parser. Information: - APP14 documents http://partners.adobe.com/public/developer/en/ps/sdk/5116.DCT_Filter.pdf http://java.sun.com/j2se/1.5.0/docs/api/javax/imageio/metadata/doc-files/jpeg_metadata.html#color - APP12: http://search.cpan.org/~exiftool/Image-ExifTool/lib/Image/ExifTool/TagNames....
14,363
Python
.py
331
35.081571
116
0.581065
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,502
ico.py
midgetspy_Sick-Beard/lib/hachoir_parser/image/ico.py
""" Microsoft Windows icon and cursor file format parser. Author: Victor Stinner """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSet, ParserError, UInt8, UInt16, UInt32, Enum, RawBytes) from lib.hachoir_parser.image.common import PaletteRGBA from lib.hachoir_core.endian import L...
4,835
Python
.py
123
30.211382
78
0.556644
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,503
png.py
midgetspy_Sick-Beard/lib/hachoir_parser/image/png.py
""" PNG picture file parser. Documents: - RFC 2083 http://www.faqs.org/rfcs/rfc2083.html Author: Victor Stinner """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSet, Fragment, ParserError, MissingField, UInt8, UInt16, UInt32, String, CString, Bytes, RawBytes, B...
9,156
Python
.py
229
32.672489
85
0.616899
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,504
psd.py
midgetspy_Sick-Beard/lib/hachoir_parser/image/psd.py
""" Photoshop parser (.psd file). Creation date: 8 january 2006 Author: Victor Stinner """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSet, UInt16, UInt32, String, NullBytes, Enum, RawBytes) from lib.hachoir_core.endian import BIG_ENDIAN from lib.hachoir_parser.image.photoshop_m...
2,430
Python
.py
72
26.180556
83
0.585928
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,505
tga.py
midgetspy_Sick-Beard/lib/hachoir_parser/image/tga.py
""" Truevision Targa Graphic (TGA) picture parser. Author: Victor Stinner Creation: 18 december 2006 """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import FieldSet, UInt8, UInt16, Enum, RawBytes from lib.hachoir_core.endian import LITTLE_ENDIAN from lib.hachoir_parser.image.common import Palett...
2,927
Python
.py
74
31.5
86
0.584448
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,506
__init__.py
midgetspy_Sick-Beard/lib/hachoir_parser/image/__init__.py
from lib.hachoir_parser.image.bmp import BmpFile from lib.hachoir_parser.image.gif import GifFile from lib.hachoir_parser.image.ico import IcoFile from lib.hachoir_parser.image.jpeg import JpegFile from lib.hachoir_parser.image.pcx import PcxFile from lib.hachoir_parser.image.psd import PsdFile from lib.hachoir_parser....
547
Python
.py
11
48.636364
50
0.854206
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,507
iptc.py
midgetspy_Sick-Beard/lib/hachoir_parser/image/iptc.py
""" IPTC metadata parser (can be found in a JPEG picture for example) Sources: - Image-MetaData Perl module: http://www.annocpan.org/~BETTELLI/Image-MetaData-JPEG-0.15/... ...lib/Image/MetaData/JPEG/TagLists.pod - IPTC tag name and description: http://peccatte.karefil.com/software/IPTCTableau.pdf Author: Victor...
4,299
Python
.py
101
35.079208
89
0.603918
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,508
wmf.py
midgetspy_Sick-Beard/lib/hachoir_parser/image/wmf.py
""" Hachoir parser of Microsoft Windows Metafile (WMF) file format. Documentation: - Microsoft Windows Metafile; also known as: WMF, Enhanced Metafile, EMF, APM http://wvware.sourceforge.net/caolan/ora-wmf.html - libwmf source code: - include/libwmf/defs.h: enums - src/player/meta.h: arguments parser...
23,796
Python
.py
555
35.92973
111
0.610998
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,509
tiff.py
midgetspy_Sick-Beard/lib/hachoir_parser/image/tiff.py
""" TIFF image parser. Authors: Victor Stinner and Sebastien Ponce Creation date: 30 september 2006 """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSet, SeekableFieldSet, ParserError, RootSeekableFieldSet, UInt16, UInt32, Bytes, String) from lib.hachoir_core.endian import LITTLE...
8,407
Python
.py
192
34.5
111
0.56979
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,510
bmp.py
midgetspy_Sick-Beard/lib/hachoir_parser/image/bmp.py
""" Microsoft Bitmap picture parser. - file extension: ".bmp" Author: Victor Stinner Creation: 16 december 2005 """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSet, UInt8, UInt16, UInt32, Bits, String, RawBytes, Enum, PaddingBytes, NullBytes, createPaddingField) from lib...
6,706
Python
.py
170
31.170588
104
0.595915
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,511
xcf.py
midgetspy_Sick-Beard/lib/hachoir_parser/image/xcf.py
""" Gimp image parser (XCF file, ".xcf" extension). You can find informations about XCF file in Gimp source code. URL to read CVS online: http://cvs.gnome.org/viewcvs/gimp/app/xcf/ \--> files xcf-read.c and xcf-load.c Author: Victor Stinner """ from lib.hachoir_parser import Parser from lib.hachoir_core.field im...
10,369
Python
.py
291
26.780069
108
0.568938
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,512
pcx.py
midgetspy_Sick-Beard/lib/hachoir_parser/image/pcx.py
""" PCX picture filter. """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import ( UInt8, UInt16, PaddingBytes, RawBytes, Enum) from lib.hachoir_parser.image.common import PaletteRGB from lib.hachoir_core.endian import LITTLE_ENDIAN class PcxFile(Parser): endian = LITTLE_ENDIAN ...
2,745
Python
.py
65
34.338462
91
0.608533
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,513
common.py
midgetspy_Sick-Beard/lib/hachoir_parser/image/common.py
from lib.hachoir_core.field import FieldSet, UserVector, UInt8 class RGB(FieldSet): color_name = { ( 0, 0, 0): "Black", (255, 0, 0): "Red", ( 0, 255, 0): "Green", ( 0, 0, 255): "Blue", (255, 255, 255): "White", } static_size = 24 def createFields(...
1,433
Python
.py
40
28.8
72
0.584538
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,514
gif.py
midgetspy_Sick-Beard/lib/hachoir_parser/image/gif.py
""" GIF picture parser. Author: Victor Stinner """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSet, ParserError, Enum, UInt8, UInt16, Bit, Bits, NullBytes, String, PascalString8, Character, NullBits, RawBytes) from lib.hachoir_parser.image.common import PaletteRGB fr...
8,192
Python
.py
199
33.211055
94
0.605273
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,515
photoshop_metadata.py
midgetspy_Sick-Beard/lib/hachoir_parser/image/photoshop_metadata.py
from lib.hachoir_core.field import (FieldSet, ParserError, UInt8, UInt16, UInt32, String, CString, PascalString8, NullBytes, RawBytes) from lib.hachoir_core.text_handler import textHandler, hexadecimal from lib.hachoir_core.tools import alignValue, createDict from lib.hachoir_parser.image.iptc import IPTC f...
3,729
Python
.py
77
39.974026
93
0.620954
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,516
hlp.py
midgetspy_Sick-Beard/lib/hachoir_parser/misc/hlp.py
""" Microsoft Windows Help (HLP) parser for Hachoir project. Documents: - Windows Help File Format / Annotation File Format / SHG and MRB File Format written by M. Winterhoff (100326.2776@compuserve.com) found on http://www.wotsit.org/ Author: Victor Stinner Creation date: 2007-09-03 """ from lib.hachoir_parser ...
2,836
Python
.py
63
38.031746
92
0.648188
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,517
lnk.py
midgetspy_Sick-Beard/lib/hachoir_parser/misc/lnk.py
""" Windows Shortcut (.lnk) parser. Documents: - The Windows Shortcut File Format (document version 1.0) Reverse-engineered by Jesse Hager http://www.i2s-lab.com/Papers/The_Windows_Shortcut_File_Format.pdf - Wine source code: http://source.winehq.org/source/include/shlobj.h (SHELL_LINK_DATA_FLAGS enum) http://...
23,407
Python
.py
520
35.723077
155
0.605257
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,518
pdf.py
midgetspy_Sick-Beard/lib/hachoir_parser/misc/pdf.py
""" Adobe Portable Document Format (PDF) parser. Author: Christophe Gisquet <christophe.gisquet@free.fr> """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import ( Field, FieldSet, ParserError, GenericVector, UInt8, UInt16, UInt32, String, RawBytes) from lib.hachoir_core.en...
16,806
Python
.py
402
32.121891
102
0.568932
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,519
ttf.py
midgetspy_Sick-Beard/lib/hachoir_parser/misc/ttf.py
""" TrueType Font parser. Documents: - "An Introduction to TrueType Fonts: A look inside the TTF format" written by "NRSI: Computers & Writing Systems" http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=IWS-Chapter08 Author: Victor Stinner Creation date: 2007-02-08 """ from lib.hachoir_parser im...
9,433
Python
.py
243
31.983539
94
0.62429
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,520
chm.py
midgetspy_Sick-Beard/lib/hachoir_parser/misc/chm.py
""" InfoTech Storage Format (ITSF) parser, used by Microsoft's HTML Help (.chm) Document: - Microsoft's HTML Help (.chm) format http://www.wotsit.org (search "chm") - chmlib library http://www.jedrea.com/chmlib/ Author: Victor Stinner Creation date: 2007-03-04 """ from lib.hachoir_parser import Parser from lib.h...
7,546
Python
.py
169
36.721893
101
0.623332
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,521
word_doc.py
midgetspy_Sick-Beard/lib/hachoir_parser/misc/word_doc.py
""" Documents: * libwx source code: see fib.c source code * "Microsoft Word 97 Binary File Format" http://bio.gsi.de/DOCS/AIX/wword8.html Microsoft Word 97 (aka Version 8) for Windows and Macintosh. From the Office book, found in the Microsoft Office Development section in the MSDN Online Library. HTMLifi...
11,320
Python
.py
279
32.078853
79
0.634425
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,522
file_3do.py
midgetspy_Sick-Beard/lib/hachoir_parser/misc/file_3do.py
# -*- coding: utf-8 -*- """ 3do model parser. Author: Cyril Zorin Creation date: 28 september 2006 """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSet, UInt32, Int32, String, Float32, RawBytes, PaddingBytes) from lib.hachoir_core.endian import LITTLE_ENDIAN, BIG_ENDIAN from...
7,447
Python
.py
185
31.551351
82
0.591456
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,523
ole2.py
midgetspy_Sick-Beard/lib/hachoir_parser/misc/ole2.py
""" Microsoft Office documents parser. Informations: * wordole.c of AntiWord program (v0.35) Copyright (C) 1998-2003 A.J. van Os Released under GNU GPL http://www.winfield.demon.nl/ * File gsf-infile-msole.c of libgsf library (v1.14.0) Copyright (C) 2002-2004 Jody Goldberg (jody@gnome.org) Released under GNU...
14,227
Python
.py
327
33.486239
114
0.583766
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,524
gnome_keyring.py
midgetspy_Sick-Beard/lib/hachoir_parser/misc/gnome_keyring.py
""" Gnome keyring parser. Sources: - Gnome Keyring source code, function generate_file() in keyrings/gkr-keyring.c, Author: Victor Stinner Creation date: 2008-04-09 """ from lib.hachoir_core.tools import paddingSize from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSet, Bit, Null...
6,271
Python
.py
175
28.177143
121
0.611926
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,525
pcf.py
midgetspy_Sick-Beard/lib/hachoir_parser/misc/pcf.py
""" X11 Portable Compiled Font (pcf) parser. Documents: - Format for X11 pcf bitmap font files http://fontforge.sourceforge.net/pcf-format.html (file is based on the X11 sources) Author: Victor Stinner Creation date: 2007-03-20 """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSe...
6,014
Python
.py
153
30.48366
105
0.600958
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,526
__init__.py
midgetspy_Sick-Beard/lib/hachoir_parser/misc/__init__.py
from lib.hachoir_parser.misc.file_3do import File3do from lib.hachoir_parser.misc.file_3ds import File3ds from lib.hachoir_parser.misc.torrent import TorrentFile from lib.hachoir_parser.misc.ttf import TrueTypeFontFile from lib.hachoir_parser.misc.chm import ChmFile from lib.hachoir_parser.misc.lnk import LnkFile from ...
678
Python
.py
13
51.076923
62
0.856928
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,527
msoffice_summary.py
midgetspy_Sick-Beard/lib/hachoir_parser/misc/msoffice_summary.py
""" Microsoft Document summaries structures. Documents --------- - Apache POI (HPSF Internals): http://poi.apache.org/hpsf/internals.html """ from lib.hachoir_parser import HachoirParser from lib.hachoir_core.field import (FieldSet, ParserError, RootSeekableFieldSet, SeekableFieldSet, Bit, Bits, NullBits,...
12,537
Python
.py
337
28.281899
94
0.574178
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,528
torrent.py
midgetspy_Sick-Beard/lib/hachoir_parser/misc/torrent.py
""" .torrent metainfo file parser http://wiki.theory.org/BitTorrentSpecification#Metainfo_File_Structure Status: To statufy Author: Christophe Gisquet <christophe.gisquet@free.fr> """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSet, ParserError, String, RawBytes) from lib.hacho...
5,530
Python
.py
137
32.605839
112
0.627166
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,529
pifv.py
midgetspy_Sick-Beard/lib/hachoir_parser/misc/pifv.py
""" EFI Platform Initialization Firmware Volume parser. Author: Alexandre Boeglin Creation date: 08 jul 2007 """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSet, UInt8, UInt16, UInt24, UInt32, UInt64, Enum, CString, String, PaddingBytes, RawBytes, NullBytes) from lib.hachoir...
8,492
Python
.py
209
33.086124
80
0.633741
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,530
msoffice.py
midgetspy_Sick-Beard/lib/hachoir_parser/misc/msoffice.py
""" Parsers for the different streams and fragments found in an OLE2 file. Documents: - goffice source code Author: Robert Xiao, Victor Stinner Creation: 2006-04-23 """ from lib.hachoir_parser import HachoirParser from lib.hachoir_core.field import FieldSet, RootSeekableFieldSet, RawBytes from lib.hachoir_core.endi...
4,405
Python
.py
113
29.247788
93
0.599204
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,531
bplist.py
midgetspy_Sick-Beard/lib/hachoir_parser/misc/bplist.py
""" Apple/NeXT Binary Property List (BPLIST) parser. Also includes a .createXML() function which produces an XML representation of the object. Note that it will discard unknown objects, nulls and fill values, but should work for most files. Documents: - CFBinaryPList.c http://src.gnu-darwin.org/DarwinSourceArchive/...
11,349
Python
.py
249
35.11245
185
0.577824
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,532
common.py
midgetspy_Sick-Beard/lib/hachoir_parser/misc/common.py
from lib.hachoir_core.field import StaticFieldSet, Float32 class Vertex(StaticFieldSet): format = ((Float32, "x"), (Float32, "y"), (Float32, "z")) def createValue(self): return (self["x"].value, self["y"].value, self["z"].value) class MapUV(StaticFieldSet): format = ((Float32, "u"), (Float32, "v"...
401
Python
.py
9
39.555556
66
0.641753
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,533
file_3ds.py
midgetspy_Sick-Beard/lib/hachoir_parser/misc/file_3ds.py
""" 3D Studio Max file (.3ds) parser. Author: Victor Stinner """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (StaticFieldSet, FieldSet, UInt16, UInt32, RawBytes, Enum, CString) from lib.hachoir_parser.image.common import RGB from lib.hachoir_core.endian import LITTLE_ENDIAN from lib.ha...
5,329
Python
.py
153
27.150327
97
0.601514
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,534
python.py
midgetspy_Sick-Beard/lib/hachoir_parser/program/python.py
""" Python compiled source code parser. Informations: - Python 2.4.2 source code: files Python/marshal.c and Python/import.c Author: Victor Stinner Creation: 25 march 2005 """ DISASSEMBLE = False from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSet, UInt8, UInt16, Int32, UInt32, ...
11,979
Python
.py
295
32.877966
100
0.599055
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,535
elf.py
midgetspy_Sick-Beard/lib/hachoir_parser/program/elf.py
""" ELF (Unix/BSD executable file format) parser. Author: Victor Stinner Creation date: 08 may 2006 """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSet, ParserError, UInt8, UInt16, UInt32, Enum, String, Bytes) from lib.hachoir_core.text_handler import textHandler, hexadecima...
7,120
Python
.py
166
35.036145
108
0.59974
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,536
exe_ne.py
midgetspy_Sick-Beard/lib/hachoir_parser/program/exe_ne.py
from lib.hachoir_core.field import (FieldSet, Bit, UInt8, UInt16, UInt32, Bytes, PaddingBits, PaddingBytes, NullBits, NullBytes) from lib.hachoir_core.text_handler import textHandler, hexadecimal, filesizeHandler class NE_Header(FieldSet): static_size = 64*8 def createFields(self): yield Bytes(...
3,551
Python
.py
50
62.62
116
0.674592
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,537
java.py
midgetspy_Sick-Beard/lib/hachoir_parser/program/java.py
""" Compiled Java classes parser. Author: Thomas de Grenier de Latour (TGL) <degrenier@easyconnect.fr> Creation: 2006/11/01 Last-update: 2006/11/06 Introduction: * This parser is for compiled Java classes, aka .class files. What is nice with this format is that it is well documented in the official Java VM specs...
57,999
Python
.py
1,020
49.896078
351
0.639083
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,538
prc.py
midgetspy_Sick-Beard/lib/hachoir_parser/program/prc.py
""" PRC (Palm resource) parser. Author: Sebastien Ponce Creation date: 29 october 2008 """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSet, UInt16, UInt32, TimestampMac32, String, RawBytes) from lib.hachoir_core.endian import BIG_ENDIAN class PRCHeader(FieldSet): static...
2,778
Python
.py
70
31.828571
111
0.613501
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,539
exe.py
midgetspy_Sick-Beard/lib/hachoir_parser/program/exe.py
""" Microsoft Windows Portable Executable (PE) file parser. Informations: - Microsoft Portable Executable and Common Object File Format Specification: http://www.microsoft.com/whdc/system/platform/firmware/PECOFF.mspx Author: Victor Stinner Creation date: 2006-08-13 """ from lib.hachoir_parser import HachoirParser...
8,701
Python
.py
198
33.388889
102
0.583579
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,540
__init__.py
midgetspy_Sick-Beard/lib/hachoir_parser/program/__init__.py
from lib.hachoir_parser.program.elf import ElfFile from lib.hachoir_parser.program.exe import ExeFile from lib.hachoir_parser.program.python import PythonCompiledFile from lib.hachoir_parser.program.java import JavaCompiledClassFile from lib.hachoir_parser.program.prc import PRCFile
285
Python
.py
5
55.8
65
0.874552
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,541
exe_res.py
midgetspy_Sick-Beard/lib/hachoir_parser/program/exe_res.py
""" Parser for resource of Microsoft Windows Portable Executable (PE). Documentation: - Wine project VS_FIXEDFILEINFO structure, file include/winver.h Author: Victor Stinner Creation date: 2007-01-19 """ from lib.hachoir_core.field import (FieldSet, ParserError, Enum, Bit, Bits, SeekableFieldSet, UInt16, U...
15,312
Python
.py
382
31.455497
100
0.593529
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,542
exe_pe.py
midgetspy_Sick-Beard/lib/hachoir_parser/program/exe_pe.py
from lib.hachoir_core.field import (FieldSet, ParserError, Bit, UInt8, UInt16, UInt32, TimestampUnix32, Bytes, String, Enum, PaddingBytes, PaddingBits, NullBytes, NullBits) from lib.hachoir_core.text_handler import textHandler, hexadecimal, filesizeHandler from lib.hachoir_core.error import HACHOIR_ERRORS ...
9,941
Python
.py
208
38.802885
109
0.613683
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,543
cab.py
midgetspy_Sick-Beard/lib/hachoir_parser/archive/cab.py
""" Microsoft Cabinet (CAB) archive. Author: Victor Stinner Creation date: 31 january 2007 """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSet, Enum, CString, String, UInt16, UInt32, Bit, Bits, PaddingBits, NullBits, DateTimeMSDOS32, RawBytes) from lib.hachoir_parser.com...
4,627
Python
.py
107
35.906542
104
0.637939
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,544
sevenzip.py
midgetspy_Sick-Beard/lib/hachoir_parser/archive/sevenzip.py
""" 7zip file parser Informations: - File 7zformat.txt of 7-zip SDK: http://www.7-zip.org/sdk.html Author: Olivier SCHWAB Creation date: 6 december 2006 """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (Field, FieldSet, ParserError, GenericVector, Enum, UInt8, UInt32, UInt64, ...
15,608
Python
.py
361
34.066482
103
0.592951
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,545
bzip2_parser.py
midgetspy_Sick-Beard/lib/hachoir_parser/archive/bzip2_parser.py
""" BZIP2 archive file Author: Victor Stinner """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (ParserError, String, Bytes, Character, UInt8, UInt32, CompressedField) from lib.hachoir_core.endian import LITTLE_ENDIAN from lib.hachoir_core.text_handler import textHandler, hexadecimal t...
2,896
Python
.py
72
30.152778
92
0.577019
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,546
tar.py
midgetspy_Sick-Beard/lib/hachoir_parser/archive/tar.py
""" Tar archive parser. Author: Victor Stinner """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSet, Enum, UInt8, SubFile, String, NullBytes) from lib.hachoir_core.tools import humanFilesize, paddingSize, timestampUNIX from lib.hachoir_core.endian import BIG_ENDIAN import re cla...
4,459
Python
.py
107
33.065421
90
0.582238
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,547
gzip_parser.py
midgetspy_Sick-Beard/lib/hachoir_parser/archive/gzip_parser.py
""" GZIP archive parser. Author: Victor Stinner """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import ( UInt8, UInt16, UInt32, Enum, TimestampUnix32, Bit, CString, SubFile, NullBits, Bytes, RawBytes) from lib.hachoir_core.text_handler import textHandler, hexadecimal, filesizeHandler...
4,762
Python
.py
116
31.543103
91
0.572415
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,548
ar.py
midgetspy_Sick-Beard/lib/hachoir_parser/archive/ar.py
""" GNU ar archive : archive file (.a) and Debian (.deb) archive. """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSet, ParserError, String, RawBytes, UnixLine) from lib.hachoir_core.endian import BIG_ENDIAN class ArchiveFileEntry(FieldSet): def createFields(self): yi...
1,734
Python
.py
45
30.4
93
0.58918
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,549
ace.py
midgetspy_Sick-Beard/lib/hachoir_parser/archive/ace.py
""" ACE parser From wotsit.org and the SDK header (bitflags) Partial study of a new block type (5) I've called "new_recovery", as its syntax is very close to the former one (of type 2). Status: can only read totally file and header blocks. Author: Christophe Gisquet <christophe.gisquet@free.fr> Creation date: 19 jan...
9,964
Python
.py
232
36.37931
106
0.646798
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,550
rar.py
midgetspy_Sick-Beard/lib/hachoir_parser/archive/rar.py
""" RAR parser Status: can only read higher-level attructures Author: Christophe Gisquet """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (StaticFieldSet, FieldSet, Bit, Bits, Enum, UInt8, UInt16, UInt32, UInt64, String, TimeDateMSDOS32, NullBytes, NullBits, RawBytes) from ...
13,384
Python
.py
303
37.023102
106
0.637096
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,551
mar.py
midgetspy_Sick-Beard/lib/hachoir_parser/archive/mar.py
""" Microsoft Archive parser Author: Victor Stinner Creation date: 2007-03-04 """ MAX_NB_FILE = 100000 from lib.hachoir_parser import Parser from lib.hachoir_core.field import FieldSet, String, UInt32, SubFile from lib.hachoir_core.endian import LITTLE_ENDIAN from lib.hachoir_core.text_handler import textHandler, fi...
2,220
Python
.py
57
30.964912
87
0.609847
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,552
zip.py
midgetspy_Sick-Beard/lib/hachoir_parser/archive/zip.py
""" Zip splitter. Status: can read most important headers Authors: Christophe Gisquet and Victor Stinner """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSet, ParserError, Bit, Bits, Enum, TimeDateMSDOS32, SubFile, UInt8, UInt16, UInt32, UInt64, String, PascalString16...
17,522
Python
.py
386
36.031088
116
0.618836
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,553
__init__.py
midgetspy_Sick-Beard/lib/hachoir_parser/archive/__init__.py
from lib.hachoir_parser.archive.ace import AceFile from lib.hachoir_parser.archive.ar import ArchiveFile from lib.hachoir_parser.archive.bzip2_parser import Bzip2Parser from lib.hachoir_parser.archive.cab import CabFile from lib.hachoir_parser.archive.gzip_parser import GzipParser from lib.hachoir_parser.archive.tar im...
601
Python
.py
11
53.545455
63
0.865874
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,554
rpm.py
midgetspy_Sick-Beard/lib/hachoir_parser/archive/rpm.py
""" RPM archive parser. Author: Victor Stinner, 1st December 2005. """ from lib.hachoir_parser import Parser from lib.hachoir_core.field import (FieldSet, ParserError, UInt8, UInt16, UInt32, UInt64, Enum, NullBytes, Bytes, RawBytes, SubFile, Character, CString, String) from lib.hachoir_core.endian import ...
8,588
Python
.py
243
26.588477
89
0.555582
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,555
__init__.py
midgetspy_Sick-Beard/lib/httplib2/__init__.py
from __future__ import generators """ httplib2 A caching http interface that supports ETags and gzip to conserve bandwidth. Requires Python 2.3 or later Changelog: 2007-08-18, Rick: Modified so it's able to use a socks proxy if needed. """ __author__ = "Joe Gregorio (joe@bitworking.org)" __copyright__ = "Copyrigh...
52,224
Python
.py
1,052
38.634981
235
0.598332
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,556
iri2uri.py
midgetspy_Sick-Beard/lib/httplib2/iri2uri.py
""" iri2uri Converts an IRI to a URI. """ __author__ = "Joe Gregorio (joe@bitworking.org)" __copyright__ = "Copyright 2006, Joe Gregorio" __contributors__ = [] __version__ = "1.0.0" __license__ = "MIT" __history__ = """ """ import urlparse # Convert an IRI to a URI following the rules in RFC 3987 # # The characte...
3,850
Python
.py
94
34.06383
143
0.598385
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,557
__init__.py
midgetspy_Sick-Beard/lib/socks/__init__.py
"""SocksiPy - Python SOCKS module. Version 1.00 Copyright 2006 Dan-Haim. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this ...
16,505
Python
.py
359
36.941504
136
0.623068
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,558
gntp.py
midgetspy_Sick-Beard/lib/growl/gntp.py
import re import hashlib import time import platform __version__ = '0.1' class BaseError(Exception): pass class ParseError(BaseError): def gntp_error(self): error = GNTPError(errorcode=500,errordesc='Error parsing the message') return error.encode() class AuthError(BaseError): def gntp_error(self): error =...
12,750
Python
.py
405
28.130864
122
0.704774
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,559
gntp_bridge.py
midgetspy_Sick-Beard/lib/growl/gntp_bridge.py
from gntp import * import urllib if sys.version_info >= (2, 7, 9): import ssl import Growl def register_send(self): ''' Resend a GNTP Register message to Growl running on a local OSX Machine ''' print 'Sending Local Registration' #Local growls only need a list of strings notifications=[] defaultNotifications...
1,967
Python
.py
63
28.492063
77
0.746956
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,560
program.py
midgetspy_Sick-Beard/lib/hachoir_metadata/program.py
from lib.hachoir_metadata.metadata import RootMetadata, registerExtractor from lib.hachoir_parser.program import ExeFile from lib.hachoir_metadata.safe import fault_tolerant, getValue class ExeMetadata(RootMetadata): KEY_TO_ATTR = { u"ProductName": "title", u"LegalCopyright": "copyright", u...
3,658
Python
.py
86
32.534884
91
0.598932
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,561
audio.py
midgetspy_Sick-Beard/lib/hachoir_metadata/audio.py
from lib.hachoir_metadata.metadata import (registerExtractor, Metadata, RootMetadata, MultipleMetadata) from lib.hachoir_parser.audio import AuFile, MpegAudioFile, RealAudioFile, AiffFile, FlacParser from lib.hachoir_parser.container import OggFile, RealMediaFile from lib.hachoir_core.i18n import _ from lib.hachoir...
15,495
Python
.py
372
31.905914
136
0.588574
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,562
jpeg.py
midgetspy_Sick-Beard/lib/hachoir_metadata/jpeg.py
from lib.hachoir_metadata.metadata import RootMetadata, registerExtractor from lib.hachoir_metadata.image import computeComprRate from lib.hachoir_parser.image.exif import ExifEntry from lib.hachoir_parser.image.jpeg import ( JpegFile, JpegChunk, QUALITY_HASH_COLOR, QUALITY_SUM_COLOR, QUALITY_HASH_GRAY, QUA...
10,836
Python
.py
264
29.481061
100
0.552479
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,563
filter.py
midgetspy_Sick-Beard/lib/hachoir_metadata/filter.py
from lib.hachoir_metadata.timezone import UTC from datetime import date, datetime # Year in 1850..2030 MIN_YEAR = 1850 MAX_YEAR = 2030 class Filter: def __init__(self, valid_types, min=None, max=None): self.types = valid_types self.min = min self.max = max def __call__(self, value): ...
1,668
Python
.py
44
30
60
0.600248
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,564
safe.py
midgetspy_Sick-Beard/lib/hachoir_metadata/safe.py
from lib.hachoir_core.error import HACHOIR_ERRORS, warning def fault_tolerant(func, *args): def safe_func(*args, **kw): try: func(*args, **kw) except HACHOIR_ERRORS, err: warning("Error when calling function %s(): %s" % ( func.__name__, err)) return safe_...
811
Python
.py
22
29.636364
62
0.631378
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,565
archive.py
midgetspy_Sick-Beard/lib/hachoir_metadata/archive.py
from lib.hachoir_metadata.metadata_item import QUALITY_BEST, QUALITY_FASTEST from lib.hachoir_metadata.safe import fault_tolerant, getValue from lib.hachoir_metadata.metadata import ( RootMetadata, Metadata, MultipleMetadata, registerExtractor) from lib.hachoir_parser.archive import (Bzip2Parser, CabFile, GzipParse...
6,566
Python
.py
150
34.9
111
0.624688
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,566
metadata_item.py
midgetspy_Sick-Beard/lib/hachoir_metadata/metadata_item.py
from lib.hachoir_core.tools import makeUnicode, normalizeNewline from lib.hachoir_core.error import HACHOIR_ERRORS from lib.hachoir_metadata import config from lib.hachoir_metadata.setter import normalizeString MIN_PRIORITY = 100 MAX_PRIORITY = 999 QUALITY_FASTEST = 0.0 QUALITY_FAST = 0.25 QUALITY_NORMAL = 0.5 QUALIT...
4,916
Python
.py
126
27.738095
92
0.557652
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,567
formatter.py
midgetspy_Sick-Beard/lib/hachoir_metadata/formatter.py
from lib.hachoir_core.i18n import _, ngettext NB_CHANNEL_NAME = {1: _("mono"), 2: _("stereo")} def humanAudioChannel(value): return NB_CHANNEL_NAME.get(value, unicode(value)) def humanFrameRate(value): if isinstance(value, (int, long, float)): return _("%.1f fps") % value else: return val...
608
Python
.py
17
31.705882
63
0.674099
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,568
timezone.py
midgetspy_Sick-Beard/lib/hachoir_metadata/timezone.py
from datetime import tzinfo, timedelta class TimezoneUTC(tzinfo): """UTC timezone""" ZERO = timedelta(0) def utcoffset(self, dt): return TimezoneUTC.ZERO def tzname(self, dt): return u"UTC" def dst(self, dt): return TimezoneUTC.ZERO def __repr__(self): return...
907
Python
.py
30
23.766667
51
0.616185
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,569
metadata.py
midgetspy_Sick-Beard/lib/hachoir_metadata/metadata.py
# -*- coding: utf-8 -*- from lib.hachoir_core.compatibility import any, sorted from lib.hachoir_core.endian import endian_name from lib.hachoir_core.tools import makePrintable, makeUnicode from lib.hachoir_core.dict import Dict from lib.hachoir_core.error import error, HACHOIR_ERRORS from lib.hachoir_core.i18n import _...
9,158
Python
.py
247
27.870445
89
0.577956
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,570
__init__.py
midgetspy_Sick-Beard/lib/hachoir_metadata/__init__.py
from lib.hachoir_metadata.version import VERSION as __version__ from lib.hachoir_metadata.metadata import extractMetadata # Just import the module, # each module use registerExtractor() method import lib.hachoir_metadata.archive import lib.hachoir_metadata.audio import lib.hachoir_metadata.file_system import lib.hacho...
508
Python
.py
13
37.923077
63
0.860041
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,571
setter.py
midgetspy_Sick-Beard/lib/hachoir_metadata/setter.py
from datetime import date, datetime import re from lib.hachoir_core.language import Language from locale import setlocale, LC_ALL from time import strptime from lib.hachoir_metadata.timezone import createTimezone from lib.hachoir_metadata import config NORMALIZE_REGEX = re.compile("[-/.: ]+") YEAR_REGEX1 = re.compile(...
5,215
Python
.py
152
27
103
0.579699
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,572
riff.py
midgetspy_Sick-Beard/lib/hachoir_metadata/riff.py
""" Extract metadata from RIFF file format: AVI video and WAV sound. """ from lib.hachoir_metadata.metadata import Metadata, MultipleMetadata, registerExtractor from lib.hachoir_metadata.safe import fault_tolerant, getValue from lib.hachoir_parser.container.riff import RiffFile from lib.hachoir_parser.video.fourcc imp...
7,707
Python
.py
170
34.335294
120
0.579753
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,573
video.py
midgetspy_Sick-Beard/lib/hachoir_metadata/video.py
from lib.hachoir_core.field import MissingField from lib.hachoir_metadata.metadata import (registerExtractor, Metadata, RootMetadata, MultipleMetadata) from lib.hachoir_metadata.metadata_item import QUALITY_GOOD from lib.hachoir_metadata.safe import fault_tolerant from lib.hachoir_parser.video import MovFile, AsfFi...
15,568
Python
.py
366
31.978142
100
0.58109
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,574
misc.py
midgetspy_Sick-Beard/lib/hachoir_metadata/misc.py
from lib.hachoir_metadata.metadata import RootMetadata, registerExtractor from lib.hachoir_metadata.safe import fault_tolerant from lib.hachoir_parser.container import SwfFile from lib.hachoir_parser.misc import TorrentFile, TrueTypeFontFile, OLE2_File, PcfFile from lib.hachoir_core.field import isString from lib.hacho...
8,936
Python
.py
236
28.305085
94
0.585082
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,575
register.py
midgetspy_Sick-Beard/lib/hachoir_metadata/register.py
from lib.hachoir_core.i18n import _ from lib.hachoir_core.tools import ( humanDuration, humanBitRate, humanFrequency, humanBitSize, humanFilesize, humanDatetime) from lib.hachoir_core.language import Language from lib.hachoir_metadata.filter import Filter, NumberFilter, DATETIME_FILTER from datetime import ...
7,003
Python
.py
99
66.333333
172
0.691772
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,576
version.py
midgetspy_Sick-Beard/lib/hachoir_metadata/version.py
PACKAGE = "hachoir-metadata" VERSION = "1.3.3" WEBSITE = "http://bitbucket.org/haypo/hachoir/wiki/hachoir-metadata" LICENSE = "GNU GPL v2"
140
Python
.py
4
33.75
68
0.748148
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,577
file_system.py
midgetspy_Sick-Beard/lib/hachoir_metadata/file_system.py
from lib.hachoir_metadata.metadata import RootMetadata, registerExtractor from lib.hachoir_metadata.safe import fault_tolerant from lib.hachoir_parser.file_system import ISO9660 from datetime import datetime class ISO9660_Metadata(RootMetadata): def extract(self, iso): desc = iso['volume[0]/content'] ...
1,107
Python
.py
24
38.958333
78
0.677479
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,578
image.py
midgetspy_Sick-Beard/lib/hachoir_metadata/image.py
from lib.hachoir_metadata.metadata import (registerExtractor, Metadata, RootMetadata, MultipleMetadata) from lib.hachoir_parser.image import ( BmpFile, IcoFile, PcxFile, GifFile, PngFile, TiffFile, XcfFile, TargaFile, WMF_File, PsdFile) from lib.hachoir_parser.image.png import getBitsPerPixel as pngBitsPerP...
10,812
Python
.py
267
30.775281
85
0.584039
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,579
dialog_ui.py
midgetspy_Sick-Beard/lib/hachoir_metadata/qt/dialog_ui.py
# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'hachoir_metadata/qt/dialog.ui' # # Created: Mon Jul 26 03:10:06 2010 # by: PyQt4 UI code generator 4.7.3 # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui class Ui_Form(object): def setupUi(s...
2,439
Python
.py
46
45.630435
123
0.729367
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,580
jsonrpc.py
midgetspy_Sick-Beard/lib/jsonrpclib/jsonrpc.py
""" Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the Lice...
17,140
Python
.py
466
29.167382
76
0.632478
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,581
config.py
midgetspy_Sick-Beard/lib/jsonrpclib/config.py
import sys class LocalClasses(dict): def add(self, cls): self[cls.__name__] = cls class Config(object): """ This is pretty much used exclusively for the 'jsonclass' functionality... set use_jsonclass to False to turn it off. You can change serialize_method and ignore_attribute, or use ...
1,418
Python
.py
35
34.914286
70
0.686047
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,582
history.py
midgetspy_Sick-Beard/lib/jsonrpclib/history.py
class History(object): """ This holds all the response and request objects for a session. A server using this should call "clear" after each request cycle in order to keep it from clogging memory. """ requests = [] responses = [] _instance = None @classmethod def instan...
978
Python
.py
34
21.088235
58
0.603226
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,583
jsonclass.py
midgetspy_Sick-Beard/lib/jsonrpclib/jsonclass.py
import types import inspect import re import traceback from lib.jsonrpclib import config iter_types = [ types.DictType, types.ListType, types.TupleType ] string_types = [ types.StringType, types.UnicodeType ] numeric_types = [ types.IntType, types.LongType, types.FloatType ] value_t...
5,116
Python
.py
136
29.286765
74
0.60511
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,584
__init__.py
midgetspy_Sick-Beard/lib/jsonrpclib/__init__.py
from config import Config config = Config.instance() from history import History history = History.instance() from jsonrpc import Server, MultiCall, Fault from jsonrpc import ProtocolError, loads, dumps
203
Python
.py
6
32.833333
47
0.837563
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,585
SimpleJSONRPCServer.py
midgetspy_Sick-Beard/lib/jsonrpclib/SimpleJSONRPCServer.py
import lib.jsonrpclib from lib.jsonrpclib import Fault from lib.jsonrpclib.jsonrpc import USE_UNIX_SOCKETS import SimpleXMLRPCServer import SocketServer import socket import logging import os import types import traceback import sys try: import fcntl except ImportError: # For Windows fcntl = None def get_v...
8,688
Python
.py
213
28.816901
79
0.56372
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,586
decoder.py
midgetspy_Sick-Beard/lib/simplejson/decoder.py
"""Implementation of JSONDecoder """ import re import sys import struct from lib.simplejson.scanner import make_scanner try: from lib.simplejson._speedups import scanstring as c_scanstring except ImportError: c_scanstring = None __all__ = ['JSONDecoder'] FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL def _fl...
12,412
Python
.py
306
31.496732
108
0.540319
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,587
encoder.py
midgetspy_Sick-Beard/lib/simplejson/encoder.py
"""Implementation of JSONEncoder """ import re try: from lib.simplejson._speedups import encode_basestring_ascii as c_encode_basestring_ascii except ImportError: c_encode_basestring_ascii = None try: from lib.simplejson._speedups import make_encoder as c_make_encoder except ImportError: c_make_encoder ...
16,041
Python
.py
392
29.767857
136
0.541119
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,588
__init__.py
midgetspy_Sick-Beard/lib/simplejson/__init__.py
r"""JSON (JavaScript Object Notation) <http://json.org> is a subset of JavaScript syntax (ECMA-262 3rd edition) used as a lightweight data interchange format. :mod:`simplejson` exposes an API familiar to users of the standard library :mod:`marshal` and :mod:`pickle` modules. It is the externally maintained version of ...
12,463
Python
.py
259
42.644788
80
0.656649
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,589
scanner.py
midgetspy_Sick-Beard/lib/simplejson/scanner.py
"""JSON token scanner """ import re try: from lib.simplejson._speedups import make_scanner as c_make_scanner except ImportError: c_make_scanner = None __all__ = ['make_scanner'] NUMBER_RE = re.compile( r'(-?(?:0|[1-9]\d*))(\.\d+)?([eE][-+]?\d+)?', (re.VERBOSE | re.MULTILINE | re.DOTALL)) def py_make_...
2,231
Python
.py
57
30.982456
93
0.577562
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,590
pynma.py
midgetspy_Sick-Beard/lib/pynma/pynma.py
#!/usr/bin/python from xml.dom.minidom import parseString from httplib import HTTPSConnection from urllib import urlencode __version__ = "0.1" API_SERVER = 'nma.usk.bz' ADD_PATH = '/publicapi/notify' USER_AGENT="PyNMA/v%s"%__version__ def uniq_preserve(seq): # Dave Kirby # Order preserving seen = set() ...
4,721
Python
.py
114
29.780702
99
0.535588
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,591
relativedelta.py
midgetspy_Sick-Beard/lib/dateutil/relativedelta.py
""" Copyright (c) 2003-2010 Gustavo Niemeyer <gustavo@niemeyer.net> This module offers extensions to the standard python 2.3+ datetime module. """ __author__ = "Gustavo Niemeyer <gustavo@niemeyer.net>" __license__ = "PSF License" import datetime import calendar __all__ = ["relativedelta", "MO", "TU", "WE", "TH", "F...
17,135
Python
.py
387
29.385013
79
0.517093
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,592
easter.py
midgetspy_Sick-Beard/lib/dateutil/easter.py
""" Copyright (c) 2003-2007 Gustavo Niemeyer <gustavo@niemeyer.net> This module offers extensions to the standard python 2.3+ datetime module. """ __author__ = "Gustavo Niemeyer <gustavo@niemeyer.net>" __license__ = "PSF License" import datetime __all__ = ["easter", "EASTER_JULIAN", "EASTER_ORTHODOX", "EASTER_WESTE...
2,633
Python
.py
72
30.680556
76
0.624556
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,593
__init__.py
midgetspy_Sick-Beard/lib/dateutil/__init__.py
""" Copyright (c) 2003-2010 Gustavo Niemeyer <gustavo@niemeyer.net> This module offers extensions to the standard python 2.3+ datetime module. """ __author__ = "Gustavo Niemeyer <gustavo@niemeyer.net>" __license__ = "PSF License" __version__ = "1.5"
252
Python
.py
8
30.375
64
0.728395
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,594
rrule.py
midgetspy_Sick-Beard/lib/dateutil/rrule.py
""" Copyright (c) 2003-2010 Gustavo Niemeyer <gustavo@niemeyer.net> This module offers extensions to the standard python 2.3+ datetime module. """ __author__ = "Gustavo Niemeyer <gustavo@niemeyer.net>" __license__ = "PSF License" import itertools import datetime import calendar import thread import sys __all__ = ["...
40,402
Python
.py
1,022
23.547945
78
0.453465
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,595
tzwin.py
midgetspy_Sick-Beard/lib/dateutil/tzwin.py
# This code was originally contributed by Jeffrey Harris. import datetime import struct import _winreg __author__ = "Jeffrey Harris & Gustavo Niemeyer <gustavo@niemeyer.net>" __all__ = ["tzwin", "tzwinlocal"] ONEWEEK = datetime.timedelta(7) TZKEYNAMENT = r"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones" TZ...
5,828
Python
.py
139
32.805755
79
0.613588
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,596
parser.py
midgetspy_Sick-Beard/lib/dateutil/parser.py
# -*- coding:iso-8859-1 -*- """ Copyright (c) 2003-2007 Gustavo Niemeyer <gustavo@niemeyer.net> This module offers extensions to the standard python 2.3+ datetime module. """ __author__ = "Gustavo Niemeyer <gustavo@niemeyer.net>" __license__ = "PSF License" import datetime import string import time import sys import...
32,464
Python
.py
796
21.721106
81
0.367311
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,597
tz.py
midgetspy_Sick-Beard/lib/dateutil/tz.py
""" Copyright (c) 2003-2007 Gustavo Niemeyer <gustavo@niemeyer.net> This module offers extensions to the standard python 2.3+ datetime module. """ __author__ = "Gustavo Niemeyer <gustavo@niemeyer.net>" __license__ = "PSF License" import datetime import struct import time import sys import os relativedelta = None pa...
32,741
Python
.py
827
26.438936
77
0.507151
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,598
__init__.py
midgetspy_Sick-Beard/lib/dateutil/zoneinfo/__init__.py
""" Copyright (c) 2003-2005 Gustavo Niemeyer <gustavo@niemeyer.net> This module offers extensions to the standard python 2.3+ datetime module. """ from dateutil.tz import tzfile from tarfile import TarFile import os __author__ = "Gustavo Niemeyer <gustavo@niemeyer.net>" __license__ = "PSF License" __all__ = ["setca...
2,575
Python
.py
76
26.052632
67
0.600884
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)
1,599
__init__.py
midgetspy_Sick-Beard/lib/oauth2/__init__.py
""" The MIT License Copyright (c) 2007 Leah Culver, Joe Stump, Mark Paschal, Vic Fryzel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the right...
23,525
Python
.py
534
35.166667
134
0.638441
midgetspy/Sick-Beard
2,890
1,507
113
GPL-3.0
9/5/2024, 5:08:58 PM (Europe/Amsterdam)