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
20,900
test_sessionauthenticate.py
evilhero_mylar/lib/cherrypy/test/test_sessionauthenticate.py
import cherrypy from cherrypy.test import helper class SessionAuthenticateTest(helper.CPWebCase): def setup_server(): def check(username, password): # Dummy check_username_and_password function if username != 'test' or password != 'password': return 'Wrong...
2,170
Python
.py
44
35.613636
82
0.596726
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,901
modfcgid.py
evilhero_mylar/lib/cherrypy/test/modfcgid.py
"""Wrapper for mod_fcgid, for use as a CherryPy HTTP server when testing. To autostart fcgid, the "apache" executable or script must be on your system path, or you must override the global APACHE_PATH. On some platforms, "apache" may be called "apachectl", "apache2ctl", or "httpd"--create a symlink to them if needed. ...
4,308
Python
.py
101
36.623762
77
0.691528
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,902
_test_states_demo.py
evilhero_mylar/lib/cherrypy/test/_test_states_demo.py
import os import sys import time starttime = time.time() import cherrypy class Root: def index(self): return "Hello World" index.exposed = True def mtimes(self): return repr(cherrypy.engine.publish("Autoreloader", "mtimes")) mtimes.exposed = True def pid(self): ...
1,945
Python
.py
51
31.588235
80
0.678706
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,903
logtest.py
evilhero_mylar/lib/cherrypy/test/logtest.py
"""logtest, a unittest.TestCase helper for testing log output.""" import sys import time import cherrypy try: # On Windows, msvcrt.getch reads a single char without output. import msvcrt def getchar(): return msvcrt.getch() except ImportError: # Unix getchr import tty, termios def ge...
6,611
Python
.py
152
31.302632
86
0.561131
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,904
test_refleaks.py
evilhero_mylar/lib/cherrypy/test/test_refleaks.py
"""Tests for refleaks.""" import gc from cherrypy._cpcompat import HTTPConnection, HTTPSConnection, ntob import threading import cherrypy from cherrypy import _cprequest data = object() def get_instances(cls): return [x for x in gc.get_objects() if isinstance(x, cls)] from cherrypy.test import helper class...
4,178
Python
.py
93
27.774194
84
0.496289
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,905
test_tutorials.py
evilhero_mylar/lib/cherrypy/test/test_tutorials.py
import sys import cherrypy from cherrypy.test import helper class TutorialTest(helper.CPWebCase): def setup_server(cls): conf = cherrypy.config.copy() def load_tut_module(name): """Import or reload tutorial module as needed.""" cherrypy.config.reset() ...
7,190
Python
.py
159
32.396226
89
0.560446
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,906
test_mime.py
evilhero_mylar/lib/cherrypy/test/test_mime.py
"""Tests for various MIME issues, including the safe_multipart Tool.""" import cherrypy from cherrypy._cpcompat import ntob, ntou, sorted def setup_server(): class Root: def multipart(self, parts): return repr(parts) multipart.exposed = True def multipart...
4,752
Python
.py
110
30.063636
91
0.503927
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,907
test_session.py
evilhero_mylar/lib/cherrypy/test/test_session.py
import os localDir = os.path.dirname(__file__) import sys import threading import time import cherrypy from cherrypy._cpcompat import copykeys, HTTPConnection, HTTPSConnection from cherrypy.lib import sessions from cherrypy.lib.httputil import response_codes def http_methods_allowed(methods=['GET', 'HEAD']): meth...
16,945
Python
.py
388
31.378866
90
0.571545
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,908
benchmark.py
evilhero_mylar/lib/cherrypy/test/benchmark.py
"""CherryPy Benchmark Tool Usage: benchmark.py --null --notests --help --cpmodpy --modpython --ab=path --apache=path --null: use a null Request object (to bench the HTTP server only) --notests: start the server but do not run the tests; this allows you to check th...
12,824
Python
.py
334
30.167665
90
0.590631
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,909
test_wsgiapps.py
evilhero_mylar/lib/cherrypy/test/test_wsgiapps.py
from cherrypy.test import helper class WSGIGraftTests(helper.CPWebCase): def setup_server(): import os curdir = os.path.join(os.getcwd(), os.path.dirname(__file__)) import cherrypy def test_app(environ, start_response): status = '200 OK' r...
3,819
Python
.py
84
31.547619
72
0.568722
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,910
webtest.py
evilhero_mylar/lib/cherrypy/test/webtest.py
"""Extensions to unittest for web frameworks. Use the WebCase.getPage method to request a page from your HTTP server. Framework Integration ===================== If you have control over your server process, you can handle errors in the server-side of the HTTP conversation a bit better. You must run both the client ...
17,977
Python
.py
445
29.283146
93
0.558905
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,911
test_objectmapping.py
evilhero_mylar/lib/cherrypy/test/test_objectmapping.py
import cherrypy from cherrypy._cptree import Application from cherrypy.test import helper script_names = ["", "/foo", "/users/fred/blog", "/corp/blog"] class ObjectMappingTest(helper.CPWebCase): def setup_server(): class Root: def index(self, name="world"): return name ...
14,816
Python
.py
306
33.839869
93
0.572018
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,912
test_json.py
evilhero_mylar/lib/cherrypy/test/test_json.py
import cherrypy from cherrypy.test import helper from cherrypy._cpcompat import json class JsonTest(helper.CPWebCase): def setup_server(): class Root(object): def plain(self): return 'hello' plain.exposed = True def json_string(self): re...
2,541
Python
.py
62
28.919355
77
0.538462
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,913
__init__.py
evilhero_mylar/lib/cherrypy/test/__init__.py
"""Regression test suite for CherryPy. Run 'nosetests -s test/' to exercise all tests. The '-s' flag instructs nose to output stdout messages, wihch is crucial to the 'interactive' mode of webtest.py. If you run these tests without the '-s' flag, don't be surprised if the test seems to hang: it's waiting for your int...
698
Python
.py
20
31.45
77
0.719168
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,914
test_auth_digest.py
evilhero_mylar/lib/cherrypy/test/test_auth_digest.py
# This file is part of CherryPy <http://www.cherrypy.org/> # -*- coding: utf-8 -*- # vim:ts=4:sw=4:expandtab:fileencoding=utf-8 import cherrypy from cherrypy.lib import auth_digest from cherrypy.test import helper class DigestAuthTest(helper.CPWebCase): def setup_server(): class Root: def i...
4,553
Python
.py
93
38.344086
167
0.591791
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,915
test_proxy.py
evilhero_mylar/lib/cherrypy/test/test_proxy.py
import cherrypy from cherrypy.test import helper script_names = ["", "/path/to/myapp"] class ProxyTest(helper.CPWebCase): def setup_server(): # Set up site cherrypy.config.update({ 'tools.proxy.on': True, 'tools.proxy.base': 'www.mydomain.test', }) ...
5,161
Python
.py
103
34.533981
85
0.53125
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,916
test_caching.py
evilhero_mylar/lib/cherrypy/test/test_caching.py
import datetime import gzip from itertools import count import os curdir = os.path.join(os.getcwd(), os.path.dirname(__file__)) import sys import threading import time import urllib import cherrypy from cherrypy._cpcompat import next, ntob, quote, xrange from cherrypy.lib import httputil gif_bytes = ntob('GIF89a\x01\...
13,057
Python
.py
274
35.343066
92
0.598044
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,917
modpy.py
evilhero_mylar/lib/cherrypy/test/modpy.py
"""Wrapper for mod_python, for use as a CherryPy HTTP server when testing. To autostart modpython, the "apache" executable or script must be on your system path, or you must override the global APACHE_PATH. On some platforms, "apache" may be called "apachectl" or "apache2ctl"-- create a symlink to them if needed. If ...
5,091
Python
.py
130
33.176923
77
0.694696
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,918
test_logging.py
evilhero_mylar/lib/cherrypy/test/test_logging.py
"""Basic tests for the CherryPy core: request handling.""" import os localDir = os.path.dirname(__file__) import cherrypy access_log = os.path.join(localDir, "access.log") error_log = os.path.join(localDir, "error.log") # Some unicode strings. tartaros = u'\u03a4\u1f71\u03c1\u03c4\u03b1\u03c1\u03bf\u03c2' erebos = ...
4,920
Python
.py
113
31.876106
79
0.566616
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,919
test_httpauth.py
evilhero_mylar/lib/cherrypy/test/test_httpauth.py
import cherrypy from cherrypy._cpcompat import md5, sha, ntob from cherrypy.lib import httpauth from cherrypy.test import helper class HTTPAuthTest(helper.CPWebCase): def setup_server(): class Root: def index(self): return "This is public." index.exposed = True ...
5,844
Python
.py
120
36.758333
167
0.580381
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,920
test_core.py
evilhero_mylar/lib/cherrypy/test/test_core.py
"""Basic tests for the CherryPy core: request handling.""" import os localDir = os.path.dirname(__file__) import sys import types import cherrypy from cherrypy._cpcompat import IncompleteRead, itervalues, ntob from cherrypy import _cptools, tools from cherrypy.lib import httputil, static favicon_path = os.path.join...
24,100
Python
.py
488
35.122951
101
0.576053
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,921
test_conn.py
evilhero_mylar/lib/cherrypy/test/test_conn.py
"""Tests for TCP connection handling, including proper and timely close.""" import socket import sys import time timeout = 1 import cherrypy from cherrypy._cpcompat import HTTPConnection, HTTPSConnection, NotConnected, BadStatusLine from cherrypy._cpcompat import ntob, urlopen, unicodestr from cherrypy.test import w...
26,382
Python
.py
606
32.462046
91
0.588155
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,922
modwsgi.py
evilhero_mylar/lib/cherrypy/test/modwsgi.py
"""Wrapper for mod_wsgi, for use as a CherryPy HTTP server. To autostart modwsgi, the "apache" executable or script must be on your system path, or you must override the global APACHE_PATH. On some platforms, "apache" may be called "apachectl" or "apache2ctl"-- create a symlink to them if needed. KNOWN BUGS ========...
4,880
Python
.py
118
35.5
90
0.680401
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,923
modfastcgi.py
evilhero_mylar/lib/cherrypy/test/modfastcgi.py
"""Wrapper for mod_fastcgi, for use as a CherryPy HTTP server when testing. To autostart fastcgi, the "apache" executable or script must be on your system path, or you must override the global APACHE_PATH. On some platforms, "apache" may be called "apachectl", "apache2ctl", or "httpd"--create a symlink to them if need...
4,709
Python
.py
110
36.927273
91
0.696295
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,924
helper.py
evilhero_mylar/lib/cherrypy/test/helper.py
"""A library of helper functions for the CherryPy test suite.""" import datetime import logging log = logging.getLogger(__name__) import os thisdir = os.path.abspath(os.path.dirname(__file__)) serverpem = os.path.join(os.getcwd(), thisdir, 'test.pem') import re import sys import time import warnings import cherrypy ...
16,187
Python
.py
386
31.650259
99
0.595244
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,925
test_xmlrpc.py
evilhero_mylar/lib/cherrypy/test/test_xmlrpc.py
import sys from xmlrpclib import DateTime, Fault, ServerProxy, SafeTransport class HTTPSTransport(SafeTransport): """Subclass of SafeTransport to fix sock.recv errors (by using file).""" def request(self, host, handler, request_body, verbose=0): # issue XML-RPC request h = self.make_connec...
5,726
Python
.py
135
30.881481
83
0.582007
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,926
test_encoding.py
evilhero_mylar/lib/cherrypy/test/test_encoding.py
import gzip import sys import cherrypy from cherrypy._cpcompat import BytesIO, IncompleteRead, ntob, ntou europoundUnicode = ntou('\x80\xa3') sing = u"\u6bdb\u6cfd\u4e1c: Sing, Little Birdie?" sing8 = sing.encode('utf-8') sing16 = sing.encode('utf-16') from cherrypy.test import helper class EncodingTests(helper....
16,652
Python
.py
314
36.828025
99
0.5346
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,927
test_static.py
evilhero_mylar/lib/cherrypy/test/test_static.py
from cherrypy._cpcompat import HTTPConnection, HTTPSConnection, ntob from cherrypy._cpcompat import BytesIO import os curdir = os.path.join(os.getcwd(), os.path.dirname(__file__)) has_space_filepath = os.path.join(curdir, 'static', 'has space.html') bigfile_filepath = os.path.join(curdir, "static", "bigfile.log") BIGF...
11,354
Python
.py
254
31.988189
82
0.56546
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,928
test_misc_tools.py
evilhero_mylar/lib/cherrypy/test/test_misc_tools.py
import os localDir = os.path.dirname(__file__) logfile = os.path.join(localDir, "test_misc_tools.log") import cherrypy from cherrypy import tools def setup_server(): class Root: def index(self): yield "Hello, world" index.exposed = True h = [("Content-Language", "en-GB"), ('Co...
7,411
Python
.py
163
34.03681
94
0.588019
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,929
test_config.py
evilhero_mylar/lib/cherrypy/test/test_config.py
"""Tests for the CherryPy configuration system.""" import os, sys localDir = os.path.join(os.getcwd(), os.path.dirname(__file__)) from cherrypy._cpcompat import ntob, StringIO import unittest import cherrypy def setup_server(): class Root: _cp_config = {'foo': 'this', 'bar': 'tha...
7,799
Python
.py
194
30.06701
83
0.551391
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,930
sessiondemo.py
evilhero_mylar/lib/cherrypy/test/sessiondemo.py
#!/usr/bin/python """A session demonstration app.""" import calendar from datetime import datetime import sys import cherrypy from cherrypy.lib import sessions from cherrypy._cpcompat import copyitems page = """ <html> <head> <style type='text/css'> table { border-collapse: collapse; border: 1px solid #663333; } th ...
5,420
Python
.py
133
34.323308
102
0.615444
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,931
test_dynamicobjectmapping.py
evilhero_mylar/lib/cherrypy/test/test_dynamicobjectmapping.py
import cherrypy from cherrypy._cptree import Application from cherrypy.test import helper script_names = ["", "/foo", "/users/fred/blog", "/corp/blog"] def setup_server(): class SubSubRoot: def index(self): return "SubSubRoot index" index.exposed = True def default(self, *ar...
12,565
Python
.py
313
28.450479
100
0.553982
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,932
test_httplib.py
evilhero_mylar/lib/cherrypy/test/test_httplib.py
"""Tests for cherrypy/lib/httputil.py.""" import unittest from cherrypy.lib import httputil class UtilityTests(unittest.TestCase): def test_urljoin(self): # Test all slash+atom combinations for SCRIPT_NAME and PATH_INFO self.assertEqual(httputil.urljoin("/sn/", "/pi/"), "/sn/pi/") se...
1,291
Python
.py
24
46.416667
72
0.58903
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,933
checkerdemo.py
evilhero_mylar/lib/cherrypy/test/checkerdemo.py
"""Demonstration app for cherrypy.checker. This application is intentionally broken and badly designed. To demonstrate the output of the CherryPy Checker, simply execute this module. """ import os import cherrypy thisdir = os.path.dirname(os.path.abspath(__file__)) class Root: pass if __name__ == '__main__': ...
1,844
Python
.py
43
31.372093
71
0.532554
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,934
test_etags.py
evilhero_mylar/lib/cherrypy/test/test_etags.py
import cherrypy from cherrypy.test import helper class ETagTest(helper.CPWebCase): def setup_server(): class Root: def resource(self): return "Oh wah ta goo Siam." resource.exposed = True def fail(self, code): code = int(cod...
3,071
Python
.py
68
33.970588
83
0.580546
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,935
test_http.py
evilhero_mylar/lib/cherrypy/test/test_http.py
"""Tests for managing HTTP issues (malformed requests, etc).""" import mimetypes import cherrypy from cherrypy._cpcompat import HTTPConnection, HTTPSConnection, ntob def encode_multipart_formdata(files): """Return (content_type, body) ready for httplib.HTTP instance. files: a sequence of (name, filenam...
6,423
Python
.py
143
33.846154
85
0.574769
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,936
test_bus.py
evilhero_mylar/lib/cherrypy/test/test_bus.py
import threading import time import unittest import cherrypy from cherrypy._cpcompat import get_daemon, set from cherrypy.process import wspbus msg = "Listener %d on channel %s: %s." class PublishSubscribeTests(unittest.TestCase): def get_listener(self, channel, index): def listener(arg=None): ...
8,871
Python
.py
207
31.63285
84
0.558086
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,937
__init__.py
evilhero_mylar/lib/cherrypy/scaffold/__init__.py
"""<MyProject>, a CherryPy application. Use this as a base for creating new CherryPy applications. When you want to make a new app, copy and paste this folder to some other location (maybe site-packages) and rename it to the name of your project, then tweak as desired. Even before any tweaking, this should serve a fe...
1,803
Python
.py
45
34.644444
74
0.641791
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,938
reprconf.py
evilhero_mylar/lib/cherrypy/lib/reprconf.py
"""Generic configuration system using unrepr. Configuration data may be supplied as a Python dictionary, as a filename, or as an open file object. When you supply a filename or file, Python's builtin ConfigParser is used (with some extensions). Namespaces ---------- Configuration keys are separated into namespaces b...
14,704
Python
.py
400
27.095
78
0.567425
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,939
sessions.py
evilhero_mylar/lib/cherrypy/lib/sessions.py
"""Session implementation for CherryPy. You need to edit your config file to use sessions. Here's an example:: [/] tools.sessions.on = True tools.sessions.storage_type = "file" tools.sessions.storage_path = "/home/site/sessions" tools.sessions.timeout = 60 This sets the session to be stored in fi...
33,435
Python
.py
787
33.170267
81
0.608002
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,940
locking.py
evilhero_mylar/lib/cherrypy/lib/locking.py
import datetime class NeverExpires(object): def expired(self): return False class Timer(object): """ A simple timer that will indicate when an expiration time has passed. """ def __init__(self, expiration): "Create a timer that expires at `expiration` (UTC datetime)" self...
1,224
Python
.py
36
26.805556
76
0.640612
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,941
profiler.py
evilhero_mylar/lib/cherrypy/lib/profiler.py
"""Profiler tools for CherryPy. CherryPy users ============== You can profile any of your pages as follows:: from cherrypy.lib import profiler class Root: p = profile.Profiler("/path/to/profile/dir") def index(self): self.p.run(self._index) index.exposed = True ...
6,514
Python
.py
172
28.872093
79
0.588282
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,942
httpauth.py
evilhero_mylar/lib/cherrypy/lib/httpauth.py
""" This module defines functions to implement HTTP Digest Authentication (:rfc:`2617`). This has full compliance with 'Digest' and 'Basic' authentication methods. In 'Digest' it supports both MD5 and MD5-sess algorithms. Usage: First use 'doAuth' to request the client authentication for a certain resource. Yo...
13,030
Python
.py
285
39.740351
79
0.6525
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,943
xmlrpcutil.py
evilhero_mylar/lib/cherrypy/lib/xmlrpcutil.py
import sys import cherrypy from cherrypy._cpcompat import ntob def get_xmlrpclib(): try: import xmlrpc.client as x except ImportError: import xmlrpclib as x return x def process_body(): """Return (params, method) from request body.""" try: return get_xmlrpclib().loads(ch...
1,608
Python
.py
44
29.977273
66
0.640877
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,944
httputil.py
evilhero_mylar/lib/cherrypy/lib/httputil.py
"""HTTP library functions. This module contains functions for building an HTTP application framework: any one, not just one whose name starts with "Ch". ;) If you reference any modules from some popular framework inside *this* module, FuManChu will personally hang you up by your thumbs and submit you to a public canin...
18,204
Python
.py
424
34.200472
79
0.608388
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,945
auth_digest.py
evilhero_mylar/lib/cherrypy/lib/auth_digest.py
# This file is part of CherryPy <http://www.cherrypy.org/> # -*- coding: utf-8 -*- # vim:ts=4:sw=4:expandtab:fileencoding=utf-8 __doc__ = """An implementation of the server-side of HTTP Digest Access Authentication, which is described in :rfc:`2617`. Example usage, using the built-in get_ha1_dict_plain function which...
14,185
Python
.py
319
34.968652
79
0.610294
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,946
encoding.py
evilhero_mylar/lib/cherrypy/lib/encoding.py
import struct import time import cherrypy from cherrypy._cpcompat import basestring, BytesIO, ntob, set, unicodestr from cherrypy.lib import file_generator from cherrypy.lib import is_closable_iterator from cherrypy.lib import set_vary_header def decode(encoding=None, default_encoding='utf-8'): """Replace or ext...
16,226
Python
.py
363
30.77686
79
0.536096
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,947
jsontools.py
evilhero_mylar/lib/cherrypy/lib/jsontools.py
import cherrypy from cherrypy._cpcompat import basestring, ntou, json_encode, json_decode def json_processor(entity): """Read application/json data into request.json.""" if not entity.headers.get(ntou("Content-Length"), ntou("")): raise cherrypy.HTTPError(411) body = entity.fp.read() try: ...
3,935
Python
.py
77
43.987013
79
0.699401
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,948
auth.py
evilhero_mylar/lib/cherrypy/lib/auth.py
import cherrypy from cherrypy.lib import httpauth def check_auth(users, encrypt=None, realm=None): """If an authorization header contains credentials, return True or False. """ request = cherrypy.serving.request if 'authorization' in request.headers: # make sure the provided credentials are co...
3,224
Python
.py
75
33.24
77
0.637992
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,949
__init__.py
evilhero_mylar/lib/cherrypy/lib/__init__.py
"""CherryPy Library""" # Deprecated in CherryPy 3.2 -- remove in CherryPy 3.3 from cherrypy.lib.reprconf import unrepr, modules, attributes def is_iterator(obj): '''Returns a boolean indicating if the object provided implements the iterator protocol (i.e. like a generator). This will return false for ob...
2,520
Python
.py
69
29.405797
79
0.64662
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,950
static.py
evilhero_mylar/lib/cherrypy/lib/static.py
import os import re import stat import mimetypes try: from io import UnsupportedOperation except ImportError: UnsupportedOperation = object() import cherrypy from cherrypy._cpcompat import ntob, unquote from cherrypy.lib import cptools, httputil, file_generator_limited mimetypes.init() mimetypes.types_map['...
14,778
Python
.py
320
35.871875
79
0.607778
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,951
gctools.py
evilhero_mylar/lib/cherrypy/lib/gctools.py
import gc import inspect import os import sys import time try: import objgraph except ImportError: objgraph = None import cherrypy from cherrypy import _cprequest, _cpwsgi from cherrypy.process.plugins import SimplePlugin class ReferrerTree(object): """An object which gathers all referrers of an object...
7,362
Python
.py
177
29.875706
79
0.545836
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,952
cptools.py
evilhero_mylar/lib/cherrypy/lib/cptools.py
"""Functions for builtin CherryPy tools.""" import logging import re import cherrypy from cherrypy._cpcompat import basestring, md5, set, unicodestr from cherrypy.lib import httputil as _httputil from cherrypy.lib import is_iterator # Conditional HTTP request support # def v...
23,188
Python
.py
520
35.094231
79
0.607368
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,953
caching.py
evilhero_mylar/lib/cherrypy/lib/caching.py
""" CherryPy implements a simple caching system as a pluggable Tool. This tool tries to be an (in-process) HTTP/1.1-compliant cache. It's not quite there yet, but it's probably good enough for most sites. In general, GET responses are cached (along with selecting headers) and, if another request arrives for the same r...
17,149
Python
.py
385
34.246753
79
0.60843
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,954
covercp.py
evilhero_mylar/lib/cherrypy/lib/covercp.py
"""Code-coverage tools for CherryPy. To use this module, or the coverage tools in the test suite, you need to download 'coverage.py', either Gareth Rees' `original implementation <http://www.garethrees.org/2001/12/04/python-coverage/>`_ or Ned Batchelder's `enhanced version: <http://www.nedbatchelder.com/code/modules/...
11,592
Python
.py
334
25.502994
78
0.551183
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,955
auth_basic.py
evilhero_mylar/lib/cherrypy/lib/auth_basic.py
# This file is part of CherryPy <http://www.cherrypy.org/> # -*- coding: utf-8 -*- # vim:ts=4:sw=4:expandtab:fileencoding=utf-8 __doc__ = """This module provides a CherryPy 3.x tool which implements the server-side of HTTP Basic Access Authentication, as described in :rfc:`2617`. Example usage, using the built-in che...
3,426
Python
.py
71
41.070423
79
0.685252
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,956
xmlrpc.py
evilhero_mylar/lib/cherrypy/lib/xmlrpc.py
import sys import cherrypy def process_body(): """Return (params, method) from request body.""" try: import xmlrpclib return xmlrpclib.loads(cherrypy.request.body.read()) except Exception: return ('ERROR PARAMS', ), 'ERRORMETHOD' def patched_path(path): """Return 'path', doc...
1,397
Python
.py
38
30.421053
65
0.643175
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,957
cpstats.py
evilhero_mylar/lib/cherrypy/lib/cpstats.py
"""CPStats, a package for collecting and reporting on program statistics. Overview ======== Statistics about program operation are an invaluable monitoring and debugging tool. Unfortunately, the gathering and reporting of these critical values is usually ad-hoc. This package aims to add a centralized place for gather...
22,770
Python
.py
577
31.058925
79
0.586016
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,958
http.py
evilhero_mylar/lib/cherrypy/lib/http.py
import warnings warnings.warn('cherrypy.lib.http has been deprecated and will be removed ' 'in CherryPy 3.3 use cherrypy.lib.httputil instead.', DeprecationWarning) from cherrypy.lib.httputil import *
230
Python
.py
5
39.2
74
0.723214
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,959
lockfile.py
evilhero_mylar/lib/cherrypy/lib/lockfile.py
""" Platform-independent file locking. Inspired by and modeled after zc.lockfile. """ import os try: import msvcrt except ImportError: pass try: import fcntl except ImportError: pass class LockError(Exception): "Could not obtain a lock" msg = "Unable to lock %r" def __init__(self, pa...
3,301
Python
.py
108
22.796296
77
0.591947
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,960
win32.py
evilhero_mylar/lib/cherrypy/process/win32.py
"""Windows service. Requires pywin32.""" import os import win32api import win32con import win32event import win32service import win32serviceutil from cherrypy.process import wspbus, plugins class ConsoleCtrlHandler(plugins.SimplePlugin): """A WSPBus plugin for handling Win32 console events (like Ctrl-C).""" ...
5,772
Python
.py
137
32.394161
78
0.614807
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,961
plugins.py
evilhero_mylar/lib/cherrypy/process/plugins.py
"""Site services for use with a Web Site Process Bus.""" import os import re import signal as _signal import sys import time import threading from cherrypy._cpcompat import basestring, get_daemon, get_thread_ident from cherrypy._cpcompat import ntob, set, Timer, SetDaemonProperty # _module__file__base is used by Aut...
25,833
Python
.py
587
33.042589
101
0.584687
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,962
servers.py
evilhero_mylar/lib/cherrypy/process/servers.py
""" Starting in CherryPy 3.1, cherrypy.server is implemented as an :ref:`Engine Plugin<plugins>`. It's an instance of :class:`cherrypy._cpserver.Server`, which is a subclass of :class:`cherrypy.process.servers.ServerAdapter`. The ``ServerAdapter`` class is designed to control other servers, as well. Multiple servers/p...
15,443
Python
.py
379
32.424802
79
0.611897
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,963
__init__.py
evilhero_mylar/lib/cherrypy/process/__init__.py
"""Site container for an HTTP server. A Web Site Process Bus object is used to connect applications, servers, and frameworks with site-wide services such as daemonization, process reload, signal handling, drop privileges, PID file management, logging for all of these, and many more. The 'plugins' module defines a few...
536
Python
.py
11
47.454545
72
0.819923
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,964
wspbus.py
evilhero_mylar/lib/cherrypy/process/wspbus.py
"""An implementation of the Web Site Process Bus. This module is completely standalone, depending only on the stdlib. Web Site Process Bus -------------------- A Bus object is used to contain and manage site-wide behavior: daemonization, HTTP server start/stop, process reload, signal handling, drop privileges, PID f...
16,432
Python
.py
374
34.508021
79
0.619494
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,965
wsgiserver2.py
evilhero_mylar/lib/cherrypy/wsgiserver/wsgiserver2.py
"""A high-speed, production ready, thread pooled, generic HTTP server. Simplest example on how to use this module directly (without using CherryPy's application machinery):: from cherrypy import wsgiserver def my_crazy_app(environ, start_response): status = '200 OK' response_headers = [('Cont...
90,364
Python
.py
2,103
30.21826
79
0.540184
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,966
ssl_pyopenssl.py
evilhero_mylar/lib/cherrypy/wsgiserver/ssl_pyopenssl.py
"""A library for integrating pyOpenSSL with CherryPy. The OpenSSL module must be importable for SSL functionality. You can obtain it from `here <https://launchpad.net/pyopenssl>`_. To use this module, set CherryPyWSGIServer.ssl_adapter to an instance of SSLAdapter. There are two ways to use SSL: Method One ---------...
9,219
Python
.py
201
35.144279
79
0.59168
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,967
ssl_builtin.py
evilhero_mylar/lib/cherrypy/wsgiserver/ssl_builtin.py
"""A library for integrating Python's builtin ``ssl`` library with CherryPy. The ssl module must be importable for SSL functionality. To use this module, set ``CherryPyWSGIServer.ssl_adapter`` to an instance of ``BuiltinSSLAdapter``. """ try: import ssl except ImportError: ssl = None try: from _pyio imp...
3,242
Python
.py
76
32.5
78
0.606349
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,968
wsgiserver3.py
evilhero_mylar/lib/cherrypy/wsgiserver/wsgiserver3.py
"""A high-speed, production ready, thread pooled, generic HTTP server. Simplest example on how to use this module directly (without using CherryPy's application machinery):: from cherrypy import wsgiserver def my_crazy_app(environ, start_response): status = '200 OK' response_headers = [('Cont...
79,001
Python
.py
1,816
31.726322
79
0.561848
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,969
__init__.py
evilhero_mylar/lib/cherrypy/wsgiserver/__init__.py
__all__ = ['HTTPRequest', 'HTTPConnection', 'HTTPServer', 'SizeCheckWrapper', 'KnownLengthRFile', 'ChunkedRFile', 'MaxSizeExceeded', 'NoSSLError', 'FatalSSLAlert', 'WorkerThread', 'ThreadPool', 'SSLAdapter', 'CherryPyWSGIServer', 'Gateway', 'WSGIGateway', 'WSGIGate...
579
Python
.py
13
37.461538
72
0.653097
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,970
tzfile.py
evilhero_mylar/lib/pytz/tzfile.py
#!/usr/bin/env python ''' $Id: tzfile.py,v 1.8 2004/06/03 00:15:24 zenzen Exp $ ''' try: from cStringIO import StringIO except ImportError: from io import StringIO from datetime import datetime, timedelta from struct import unpack, calcsize from pytz.tzinfo import StaticTzInfo, DstTzInfo, memorized_ttinfo fro...
4,869
Python
.py
119
30.882353
77
0.570795
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,971
lazy.py
evilhero_mylar/lib/pytz/lazy.py
from threading import RLock try: from UserDict import DictMixin except ImportError: from collections import Mapping as DictMixin # With lazy loading, we might end up with multiple threads triggering # it at the same time. We need a lock. _fill_lock = RLock() class LazyDict(DictMixin): """Dictionary popu...
5,263
Python
.py
138
26.891304
75
0.485574
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,972
__init__.py
evilhero_mylar/lib/pytz/__init__.py
''' datetime.tzinfo timezone definitions generated from the Olson timezone database: ftp://elsie.nci.nih.gov/pub/tz*.tar.gz See the datetime section of the Python Library Reference for information on how to use these modules. ''' # The Olson database is updated several times a year. OLSON_VERSION = '2014j' VERSI...
34,011
Python
.py
1,404
20.87963
81
0.683302
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,973
tzinfo.py
evilhero_mylar/lib/pytz/tzinfo.py
'''Base classes and helpers for building zone specific tzinfo classes''' from datetime import datetime, timedelta, tzinfo from bisect import bisect_right try: set except NameError: from sets import Set as set import pytz from pytz.exceptions import AmbiguousTimeError, NonExistentTimeError __all__ = [] _time...
19,368
Python
.py
461
32.885033
81
0.603382
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,974
exceptions.py
evilhero_mylar/lib/pytz/exceptions.py
''' Custom exceptions raised by pytz. ''' __all__ = [ 'UnknownTimeZoneError', 'InvalidTimeError', 'AmbiguousTimeError', 'NonExistentTimeError', ] class UnknownTimeZoneError(KeyError): '''Exception raised when pytz is passed an unknown timezone. >>> isinstance(UnknownTimeZoneError(), LookupError)...
1,333
Python
.py
33
35.909091
78
0.754086
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,975
reference.py
evilhero_mylar/lib/pytz/reference.py
''' Reference tzinfo implementations from the Python docs. Used for testing against as they are only correct for the years 1987 to 2006. Do not use these for real code. ''' from datetime import tzinfo, timedelta, datetime from pytz import utc, UTC, HOUR, ZERO # A class building tzinfo objects for fixed-offset time zo...
3,649
Python
.py
97
30.989691
76
0.641965
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,976
comicvinetalker.py
evilhero_mylar/lib/comictaggerlib/comicvinetalker.py
"""A python class to manage communication with Comic Vine's REST API""" # Copyright 2012-2014 Anthony Beville # 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/lice...
29,991
Python
.py
632
36.003165
159
0.585121
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,977
optionalmsgdialog.py
evilhero_mylar/lib/comictaggerlib/optionalmsgdialog.py
"""A PyQt4 dialog to show a message and let the user check a box Example usage: checked = OptionalMessageDialog.msg(self, "Disclaimer", "This is beta software, and you are using it at your own risk!", ) said_yes, checked = OptionalMessageDialog.question(self, "Que...
3,372
Python
.py
84
30.809524
96
0.640553
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,978
pagebrowser.py
evilhero_mylar/lib/comictaggerlib/pagebrowser.py
"""A PyQT4 dialog to show pages of a comic archive""" # Copyright 2012-2014 Anthony Beville # 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 ...
3,682
Python
.py
86
34.046512
99
0.659753
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,979
renamewindow.py
evilhero_mylar/lib/comictaggerlib/renamewindow.py
"""A PyQT4 dialog to confirm rename""" # Copyright 2012-2014 Anthony Beville # 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 requir...
5,742
Python
.py
124
35.540323
75
0.635239
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,980
comicvinecacher.py
evilhero_mylar/lib/comictaggerlib/comicvinecacher.py
"""A python class to manage caching of data from Comic Vine""" # Copyright 2012-2014 Anthony Beville # 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/LICE...
14,868
Python
.py
368
26.652174
137
0.492187
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,981
exportwindow.py
evilhero_mylar/lib/comictaggerlib/exportwindow.py
"""A PyQT4 dialog to confirm and set options for export to zip""" # Copyright 2012-2014 Anthony Beville # 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/L...
2,119
Python
.py
45
40.866667
74
0.739659
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,982
fileselectionlist.py
evilhero_mylar/lib/comictaggerlib/fileselectionlist.py
# coding=utf-8 """A PyQt4 widget for managing list of comic archive files""" # Copyright 2012-2014 Anthony Beville # 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...
16,058
Python
.py
363
33.044077
106
0.623702
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,983
cbltransformer.py
evilhero_mylar/lib/comictaggerlib/cbltransformer.py
"""A class to manage modifying metadata specifically for CBL/CBI""" # Copyright 2012-2014 Anthony Beville # 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...
3,643
Python
.py
76
35.026316
79
0.58291
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,984
filerenamer.py
evilhero_mylar/lib/comictaggerlib/filerenamer.py
"""Functions for renaming files based on metadata""" # Copyright 2012-2014 Anthony Beville # 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 #...
6,107
Python
.py
122
39.598361
100
0.586456
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,985
issueidentifier.py
evilhero_mylar/lib/comictaggerlib/issueidentifier.py
"""A class to automatically identify a comic archive""" # Copyright 2012-2014 Anthony Beville # 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...
26,956
Python
.py
591
33.072758
104
0.551803
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,986
issueselectionwindow.py
evilhero_mylar/lib/comictaggerlib/issueselectionwindow.py
"""A PyQT4 dialog to select specific issue from list""" # Copyright 2012-2014 Anthony Beville # 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...
6,868
Python
.py
147
35.714286
79
0.634621
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,987
settings.py
evilhero_mylar/lib/comictaggerlib/settings.py
"""Settings class for ComicTagger app""" # Copyright 2012-2014 Anthony Beville # 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 requ...
18,839
Python
.py
307
53.068404
145
0.648119
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,988
crediteditorwindow.py
evilhero_mylar/lib/comictaggerlib/crediteditorwindow.py
"""A PyQT4 dialog to edit credits""" # Copyright 2012-2014 Anthony Beville # 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...
3,070
Python
.py
71
35.070423
79
0.66308
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,989
imagehasher.py
evilhero_mylar/lib/comictaggerlib/imagehasher.py
"""A class to manage creating image content hashes, and calculate hamming distances""" # Copyright 2013 Anthony Beville # 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.apach...
6,803
Python
.py
148
36.702703
90
0.62466
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,990
volumeselectionwindow.py
evilhero_mylar/lib/comictaggerlib/volumeselectionwindow.py
"""A PyQT4 dialog to select specific series/volume from list""" # Copyright 2012-2014 Anthony Beville # 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/LIC...
15,105
Python
.py
335
34.608955
93
0.64506
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,991
settingswindow.py
evilhero_mylar/lib/comictaggerlib/settingswindow.py
"""A PyQT4 dialog to enter app settings""" # Copyright 2012-2014 Anthony Beville # 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 re...
11,783
Python
.py
216
44.166667
115
0.677439
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,992
cli.py
evilhero_mylar/lib/comictaggerlib/cli.py
#!/usr/bin/python """ComicTagger CLI functions""" # Copyright 2013 Anthony Beville # 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...
20,764
Python
.py
472
31.194915
117
0.554509
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,993
imagepopup.py
evilhero_mylar/lib/comictaggerlib/imagepopup.py
"""A PyQT4 widget to display a popup image""" # Copyright 2012-2014 Anthony Beville # 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...
3,226
Python
.py
70
38.085714
88
0.674218
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,994
imagefetcher.py
evilhero_mylar/lib/comictaggerlib/imagefetcher.py
"""A class to manage fetching and caching of images by URL""" # Copyright 2012-2014 Anthony Beville # 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/LICEN...
5,429
Python
.py
137
28.759124
79
0.585911
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,995
options.py
evilhero_mylar/lib/comictaggerlib/options.py
"""CLI options class for ComicTagger app""" # Copyright 2012-2014 Anthony Beville # 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 r...
17,841
Python
.py
383
33.067885
146
0.520643
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,996
coverimagewidget.py
evilhero_mylar/lib/comictaggerlib/coverimagewidget.py
"""A PyQt4 widget to display cover images Display cover images from either a local archive, or from Comic Vine. TODO: This should be re-factored using subclasses! """ # Copyright 2012-2014 Anthony Beville # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in complian...
10,721
Python
.py
258
32.093023
87
0.633417
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,997
pageloader.py
evilhero_mylar/lib/comictaggerlib/pageloader.py
"""A PyQT4 class to load a page image from a ComicArchive in a background thread""" # Copyright 2012-2014 Anthony Beville # 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.apa...
2,202
Python
.py
52
36.076923
83
0.704972
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,998
pagelisteditor.py
evilhero_mylar/lib/comictaggerlib/pagelisteditor.py
"""A PyQt4 widget for editing the page list info""" # Copyright 2012-2014 Anthony Beville # 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 # ...
10,053
Python
.py
225
34.897778
79
0.648792
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)
20,999
matchselectionwindow.py
evilhero_mylar/lib/comictaggerlib/matchselectionwindow.py
"""A PyQT4 dialog to select from automated issue matches""" # Copyright 2012-2014 Anthony Beville # 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...
5,689
Python
.py
121
37.528926
79
0.668656
evilhero/mylar
977
173
0
GPL-3.0
9/5/2024, 5:12:46 PM (Europe/Amsterdam)