id
int32
0
252k
repo
stringlengths
7
55
path
stringlengths
4
127
func_name
stringlengths
1
88
original_string
stringlengths
75
19.8k
language
stringclasses
1 value
code
stringlengths
75
19.8k
code_tokens
list
docstring
stringlengths
3
17.3k
docstring_tokens
list
sha
stringlengths
40
40
url
stringlengths
87
242
7,300
MicroPyramid/django-mfa
django_mfa/utils.py
build_uri
def build_uri(secret, name, initial_count=None, issuer_name=None): """ Returns the provisioning URI for the OTP; works for either TOTP or HOTP. This can then be encoded in a QR Code and used to provision the Google Authenticator app. For module-internal use. See also: http://code.goog...
python
def build_uri(secret, name, initial_count=None, issuer_name=None): """ Returns the provisioning URI for the OTP; works for either TOTP or HOTP. This can then be encoded in a QR Code and used to provision the Google Authenticator app. For module-internal use. See also: http://code.goog...
[ "def", "build_uri", "(", "secret", ",", "name", ",", "initial_count", "=", "None", ",", "issuer_name", "=", "None", ")", ":", "# initial_count may be 0 as a valid param", "is_initial_count_present", "=", "(", "initial_count", "is", "not", "None", ")", "otp_type", ...
Returns the provisioning URI for the OTP; works for either TOTP or HOTP. This can then be encoded in a QR Code and used to provision the Google Authenticator app. For module-internal use. See also: http://code.google.com/p/google-authenticator/wiki/KeyUriFormat @param [String] the hotp/t...
[ "Returns", "the", "provisioning", "URI", "for", "the", "OTP", ";", "works", "for", "either", "TOTP", "or", "HOTP", "." ]
7baf16297ffa8b5b4aa0b9961a889a964fcbdb39
https://github.com/MicroPyramid/django-mfa/blob/7baf16297ffa8b5b4aa0b9961a889a964fcbdb39/django_mfa/utils.py#L15-L57
7,301
MicroPyramid/django-mfa
django_mfa/utils.py
strings_equal
def strings_equal(s1, s2): """ Timing-attack resistant string comparison. Normal comparison using == will short-circuit on the first mismatching character. This avoids that by scanning the whole string, though we still reveal to a timing attack whether the strings are the same length. """ ...
python
def strings_equal(s1, s2): """ Timing-attack resistant string comparison. Normal comparison using == will short-circuit on the first mismatching character. This avoids that by scanning the whole string, though we still reveal to a timing attack whether the strings are the same length. """ ...
[ "def", "strings_equal", "(", "s1", ",", "s2", ")", ":", "try", ":", "s1", "=", "unicodedata", ".", "normalize", "(", "'NFKC'", ",", "str", "(", "s1", ")", ")", "s2", "=", "unicodedata", ".", "normalize", "(", "'NFKC'", ",", "str", "(", "s2", ")", ...
Timing-attack resistant string comparison. Normal comparison using == will short-circuit on the first mismatching character. This avoids that by scanning the whole string, though we still reveal to a timing attack whether the strings are the same length.
[ "Timing", "-", "attack", "resistant", "string", "comparison", "." ]
7baf16297ffa8b5b4aa0b9961a889a964fcbdb39
https://github.com/MicroPyramid/django-mfa/blob/7baf16297ffa8b5b4aa0b9961a889a964fcbdb39/django_mfa/utils.py#L79-L94
7,302
libyal/libbde
setup.py
GetPythonLibraryDirectoryPath
def GetPythonLibraryDirectoryPath(): """Retrieves the Python library directory path.""" path = sysconfig.get_python_lib(True) _, _, path = path.rpartition(sysconfig.PREFIX) if path.startswith(os.sep): path = path[1:] return path
python
def GetPythonLibraryDirectoryPath(): """Retrieves the Python library directory path.""" path = sysconfig.get_python_lib(True) _, _, path = path.rpartition(sysconfig.PREFIX) if path.startswith(os.sep): path = path[1:] return path
[ "def", "GetPythonLibraryDirectoryPath", "(", ")", ":", "path", "=", "sysconfig", ".", "get_python_lib", "(", "True", ")", "_", ",", "_", ",", "path", "=", "path", ".", "rpartition", "(", "sysconfig", ".", "PREFIX", ")", "if", "path", ".", "startswith", "...
Retrieves the Python library directory path.
[ "Retrieves", "the", "Python", "library", "directory", "path", "." ]
5f59d11dbb52690b4155f2cc3fcb1ac512d076a8
https://github.com/libyal/libbde/blob/5f59d11dbb52690b4155f2cc3fcb1ac512d076a8/setup.py#L267-L275
7,303
libyal/libbde
setup.py
custom_build_ext.run
def run(self): """Runs the build extension.""" compiler = new_compiler(compiler=self.compiler) if compiler.compiler_type == "msvc": self.define = [ ("UNICODE", ""), ] else: command = "sh configure --disable-shared-libs" output = self._RunCommand(command) print_l...
python
def run(self): """Runs the build extension.""" compiler = new_compiler(compiler=self.compiler) if compiler.compiler_type == "msvc": self.define = [ ("UNICODE", ""), ] else: command = "sh configure --disable-shared-libs" output = self._RunCommand(command) print_l...
[ "def", "run", "(", "self", ")", ":", "compiler", "=", "new_compiler", "(", "compiler", "=", "self", ".", "compiler", ")", "if", "compiler", ".", "compiler_type", "==", "\"msvc\"", ":", "self", ".", "define", "=", "[", "(", "\"UNICODE\"", ",", "\"\"", "...
Runs the build extension.
[ "Runs", "the", "build", "extension", "." ]
5f59d11dbb52690b4155f2cc3fcb1ac512d076a8
https://github.com/libyal/libbde/blob/5f59d11dbb52690b4155f2cc3fcb1ac512d076a8/setup.py#L82-L108
7,304
libyal/libbde
setup.py
ProjectInformation._ReadConfigureAc
def _ReadConfigureAc(self): """Reads configure.ac to initialize the project information.""" file_object = open("configure.ac", "rb") if not file_object: raise IOError("Unable to open: configure.ac") found_ac_init = False found_library_name = False for line in file_object.readlines(): ...
python
def _ReadConfigureAc(self): """Reads configure.ac to initialize the project information.""" file_object = open("configure.ac", "rb") if not file_object: raise IOError("Unable to open: configure.ac") found_ac_init = False found_library_name = False for line in file_object.readlines(): ...
[ "def", "_ReadConfigureAc", "(", "self", ")", ":", "file_object", "=", "open", "(", "\"configure.ac\"", ",", "\"rb\"", ")", "if", "not", "file_object", ":", "raise", "IOError", "(", "\"Unable to open: configure.ac\"", ")", "found_ac_init", "=", "False", "found_libr...
Reads configure.ac to initialize the project information.
[ "Reads", "configure", ".", "ac", "to", "initialize", "the", "project", "information", "." ]
5f59d11dbb52690b4155f2cc3fcb1ac512d076a8
https://github.com/libyal/libbde/blob/5f59d11dbb52690b4155f2cc3fcb1ac512d076a8/setup.py#L198-L229
7,305
libyal/libbde
setup.py
ProjectInformation._ReadMakefileAm
def _ReadMakefileAm(self): """Reads Makefile.am to initialize the project information.""" if not self.library_name: raise RuntimeError("Missing library name") file_object = open("Makefile.am", "rb") if not file_object: raise IOError("Unable to open: Makefile.am") found_subdirs = False ...
python
def _ReadMakefileAm(self): """Reads Makefile.am to initialize the project information.""" if not self.library_name: raise RuntimeError("Missing library name") file_object = open("Makefile.am", "rb") if not file_object: raise IOError("Unable to open: Makefile.am") found_subdirs = False ...
[ "def", "_ReadMakefileAm", "(", "self", ")", ":", "if", "not", "self", ".", "library_name", ":", "raise", "RuntimeError", "(", "\"Missing library name\"", ")", "file_object", "=", "open", "(", "\"Makefile.am\"", ",", "\"rb\"", ")", "if", "not", "file_object", "...
Reads Makefile.am to initialize the project information.
[ "Reads", "Makefile", ".", "am", "to", "initialize", "the", "project", "information", "." ]
5f59d11dbb52690b4155f2cc3fcb1ac512d076a8
https://github.com/libyal/libbde/blob/5f59d11dbb52690b4155f2cc3fcb1ac512d076a8/setup.py#L231-L264
7,306
amol-/dukpy
dukpy/babel.py
babel_compile
def babel_compile(source, **kwargs): """Compiles the given ``source`` from ES6 to ES5 using Babeljs""" presets = kwargs.get('presets') if not presets: kwargs['presets'] = ["es2015"] with open(BABEL_COMPILER, 'rb') as babel_js: return evaljs( (babel_js.read().decode('utf-8'), ...
python
def babel_compile(source, **kwargs): """Compiles the given ``source`` from ES6 to ES5 using Babeljs""" presets = kwargs.get('presets') if not presets: kwargs['presets'] = ["es2015"] with open(BABEL_COMPILER, 'rb') as babel_js: return evaljs( (babel_js.read().decode('utf-8'), ...
[ "def", "babel_compile", "(", "source", ",", "*", "*", "kwargs", ")", ":", "presets", "=", "kwargs", ".", "get", "(", "'presets'", ")", "if", "not", "presets", ":", "kwargs", "[", "'presets'", "]", "=", "[", "\"es2015\"", "]", "with", "open", "(", "BA...
Compiles the given ``source`` from ES6 to ES5 using Babeljs
[ "Compiles", "the", "given", "source", "from", "ES6", "to", "ES5", "using", "Babeljs" ]
69f56f375a217c9f907499c28dbc964af76feae6
https://github.com/amol-/dukpy/blob/69f56f375a217c9f907499c28dbc964af76feae6/dukpy/babel.py#L7-L20
7,307
amol-/dukpy
dukpy/coffee.py
coffee_compile
def coffee_compile(source): """Compiles the given ``source`` from CoffeeScript to JavaScript""" with open(COFFEE_COMPILER, 'rb') as coffeescript_js: return evaljs( (coffeescript_js.read().decode('utf-8'), 'CoffeeScript.compile(dukpy.coffeecode)'), coffeecode=source ...
python
def coffee_compile(source): """Compiles the given ``source`` from CoffeeScript to JavaScript""" with open(COFFEE_COMPILER, 'rb') as coffeescript_js: return evaljs( (coffeescript_js.read().decode('utf-8'), 'CoffeeScript.compile(dukpy.coffeecode)'), coffeecode=source ...
[ "def", "coffee_compile", "(", "source", ")", ":", "with", "open", "(", "COFFEE_COMPILER", ",", "'rb'", ")", "as", "coffeescript_js", ":", "return", "evaljs", "(", "(", "coffeescript_js", ".", "read", "(", ")", ".", "decode", "(", "'utf-8'", ")", ",", "'C...
Compiles the given ``source`` from CoffeeScript to JavaScript
[ "Compiles", "the", "given", "source", "from", "CoffeeScript", "to", "JavaScript" ]
69f56f375a217c9f907499c28dbc964af76feae6
https://github.com/amol-/dukpy/blob/69f56f375a217c9f907499c28dbc964af76feae6/dukpy/coffee.py#L7-L14
7,308
amol-/dukpy
dukpy/module_loader.py
JSModuleLoader.register_path
def register_path(self, path): """Registers a directory where to look for modules. By default only modules relative to current path are found. """ self._paths.insert(0, os.path.abspath(path))
python
def register_path(self, path): """Registers a directory where to look for modules. By default only modules relative to current path are found. """ self._paths.insert(0, os.path.abspath(path))
[ "def", "register_path", "(", "self", ",", "path", ")", ":", "self", ".", "_paths", ".", "insert", "(", "0", ",", "os", ".", "path", ".", "abspath", "(", "path", ")", ")" ]
Registers a directory where to look for modules. By default only modules relative to current path are found.
[ "Registers", "a", "directory", "where", "to", "look", "for", "modules", "." ]
69f56f375a217c9f907499c28dbc964af76feae6
https://github.com/amol-/dukpy/blob/69f56f375a217c9f907499c28dbc964af76feae6/dukpy/module_loader.py#L20-L25
7,309
amol-/dukpy
dukpy/module_loader.py
JSModuleLoader.lookup
def lookup(self, module_name): """Searches for a file providing given module. Returns the normalized module id and path of the file. """ for search_path in self._paths: module_path = os.path.join(search_path, module_name) new_module_name, module_file = self._look...
python
def lookup(self, module_name): """Searches for a file providing given module. Returns the normalized module id and path of the file. """ for search_path in self._paths: module_path = os.path.join(search_path, module_name) new_module_name, module_file = self._look...
[ "def", "lookup", "(", "self", ",", "module_name", ")", ":", "for", "search_path", "in", "self", ".", "_paths", ":", "module_path", "=", "os", ".", "path", ".", "join", "(", "search_path", ",", "module_name", ")", "new_module_name", ",", "module_file", "=",...
Searches for a file providing given module. Returns the normalized module id and path of the file.
[ "Searches", "for", "a", "file", "providing", "given", "module", "." ]
69f56f375a217c9f907499c28dbc964af76feae6
https://github.com/amol-/dukpy/blob/69f56f375a217c9f907499c28dbc964af76feae6/dukpy/module_loader.py#L27-L37
7,310
amol-/dukpy
dukpy/module_loader.py
JSModuleLoader.load
def load(self, module_name): """Returns source code and normalized module id of the given module. Only supports source code files encoded as UTF-8 """ module_name, path = self.lookup(module_name) if path: with open(path, 'rb') as f: return module_name...
python
def load(self, module_name): """Returns source code and normalized module id of the given module. Only supports source code files encoded as UTF-8 """ module_name, path = self.lookup(module_name) if path: with open(path, 'rb') as f: return module_name...
[ "def", "load", "(", "self", ",", "module_name", ")", ":", "module_name", ",", "path", "=", "self", ".", "lookup", "(", "module_name", ")", "if", "path", ":", "with", "open", "(", "path", ",", "'rb'", ")", "as", "f", ":", "return", "module_name", ",",...
Returns source code and normalized module id of the given module. Only supports source code files encoded as UTF-8
[ "Returns", "source", "code", "and", "normalized", "module", "id", "of", "the", "given", "module", "." ]
69f56f375a217c9f907499c28dbc964af76feae6
https://github.com/amol-/dukpy/blob/69f56f375a217c9f907499c28dbc964af76feae6/dukpy/module_loader.py#L39-L48
7,311
amol-/dukpy
dukpy/lessc.py
less_compile
def less_compile(source, options=None): """Compiles the given ``source`` from LESS to CSS""" options = options or {} res = NodeLikeInterpreter().evaljs( ('var result = null;' 'var less = require("less/less-node");', 'less.render(dukpy.lesscode, dukpy.lessoptions, function(error, ou...
python
def less_compile(source, options=None): """Compiles the given ``source`` from LESS to CSS""" options = options or {} res = NodeLikeInterpreter().evaljs( ('var result = null;' 'var less = require("less/less-node");', 'less.render(dukpy.lesscode, dukpy.lessoptions, function(error, ou...
[ "def", "less_compile", "(", "source", ",", "options", "=", "None", ")", ":", "options", "=", "options", "or", "{", "}", "res", "=", "NodeLikeInterpreter", "(", ")", ".", "evaljs", "(", "(", "'var result = null;'", "'var less = require(\"less/less-node\");'", ","...
Compiles the given ``source`` from LESS to CSS
[ "Compiles", "the", "given", "source", "from", "LESS", "to", "CSS" ]
69f56f375a217c9f907499c28dbc964af76feae6
https://github.com/amol-/dukpy/blob/69f56f375a217c9f907499c28dbc964af76feae6/dukpy/lessc.py#L4-L23
7,312
amol-/dukpy
dukpy/install.py
install_jspackage
def install_jspackage(package_name, version, modulesdir): """Installs a JavaScript package downloaded from npmjs.org. For example to install React:: install_jspackage('react', '0.14.8', './node_modules') To install last version provide `None` as the version. """ if not version: ve...
python
def install_jspackage(package_name, version, modulesdir): """Installs a JavaScript package downloaded from npmjs.org. For example to install React:: install_jspackage('react', '0.14.8', './node_modules') To install last version provide `None` as the version. """ if not version: ve...
[ "def", "install_jspackage", "(", "package_name", ",", "version", ",", "modulesdir", ")", ":", "if", "not", "version", ":", "version", "=", "''", "requirements", "=", "_resolve_dependencies", "(", "package_name", ",", "version", ")", "print", "(", "'Packages goin...
Installs a JavaScript package downloaded from npmjs.org. For example to install React:: install_jspackage('react', '0.14.8', './node_modules') To install last version provide `None` as the version.
[ "Installs", "a", "JavaScript", "package", "downloaded", "from", "npmjs", ".", "org", "." ]
69f56f375a217c9f907499c28dbc964af76feae6
https://github.com/amol-/dukpy/blob/69f56f375a217c9f907499c28dbc964af76feae6/dukpy/install.py#L39-L87
7,313
amol-/dukpy
dukpy/evaljs.py
JSInterpreter.evaljs
def evaljs(self, code, **kwargs): """Runs JavaScript code in the context of the interpreter. All arguments will be converted to plain javascript objects through the JSON encoder and will be available in `dukpy` global object. Returns the last object on javascript stack. ...
python
def evaljs(self, code, **kwargs): """Runs JavaScript code in the context of the interpreter. All arguments will be converted to plain javascript objects through the JSON encoder and will be available in `dukpy` global object. Returns the last object on javascript stack. ...
[ "def", "evaljs", "(", "self", ",", "code", ",", "*", "*", "kwargs", ")", ":", "jsvars", "=", "json", ".", "dumps", "(", "kwargs", ")", "jscode", "=", "self", ".", "_adapt_code", "(", "code", ")", "if", "not", "isinstance", "(", "jscode", ",", "byte...
Runs JavaScript code in the context of the interpreter. All arguments will be converted to plain javascript objects through the JSON encoder and will be available in `dukpy` global object. Returns the last object on javascript stack.
[ "Runs", "JavaScript", "code", "in", "the", "context", "of", "the", "interpreter", "." ]
69f56f375a217c9f907499c28dbc964af76feae6
https://github.com/amol-/dukpy/blob/69f56f375a217c9f907499c28dbc964af76feae6/dukpy/evaljs.py#L39-L61
7,314
amol-/dukpy
dukpy/tsc.py
typescript_compile
def typescript_compile(source): """Compiles the given ``source`` from TypeScript to ES5 using TypescriptServices.js""" with open(TS_COMPILER, 'r') as tsservices_js: return evaljs( (tsservices_js.read(), 'ts.transpile(dukpy.tscode, {options});'.format(options=TSC_OPTIONS)), ...
python
def typescript_compile(source): """Compiles the given ``source`` from TypeScript to ES5 using TypescriptServices.js""" with open(TS_COMPILER, 'r') as tsservices_js: return evaljs( (tsservices_js.read(), 'ts.transpile(dukpy.tscode, {options});'.format(options=TSC_OPTIONS)), ...
[ "def", "typescript_compile", "(", "source", ")", ":", "with", "open", "(", "TS_COMPILER", ",", "'r'", ")", "as", "tsservices_js", ":", "return", "evaljs", "(", "(", "tsservices_js", ".", "read", "(", ")", ",", "'ts.transpile(dukpy.tscode, {options});'", ".", "...
Compiles the given ``source`` from TypeScript to ES5 using TypescriptServices.js
[ "Compiles", "the", "given", "source", "from", "TypeScript", "to", "ES5", "using", "TypescriptServices", ".", "js" ]
69f56f375a217c9f907499c28dbc964af76feae6
https://github.com/amol-/dukpy/blob/69f56f375a217c9f907499c28dbc964af76feae6/dukpy/tsc.py#L8-L15
7,315
edoburu/django-private-storage
private_storage/views.py
PrivateStorageView.get_private_file
def get_private_file(self): """ Return all relevant data in a single object, so this is easy to extend and server implementations can pick what they need. """ return PrivateFile( request=self.request, storage=self.get_storage(), relative_name=s...
python
def get_private_file(self): """ Return all relevant data in a single object, so this is easy to extend and server implementations can pick what they need. """ return PrivateFile( request=self.request, storage=self.get_storage(), relative_name=s...
[ "def", "get_private_file", "(", "self", ")", ":", "return", "PrivateFile", "(", "request", "=", "self", ".", "request", ",", "storage", "=", "self", ".", "get_storage", "(", ")", ",", "relative_name", "=", "self", ".", "get_path", "(", ")", ")" ]
Return all relevant data in a single object, so this is easy to extend and server implementations can pick what they need.
[ "Return", "all", "relevant", "data", "in", "a", "single", "object", "so", "this", "is", "easy", "to", "extend", "and", "server", "implementations", "can", "pick", "what", "they", "need", "." ]
35b718024fee75b0ed3400f601976b20246c7d05
https://github.com/edoburu/django-private-storage/blob/35b718024fee75b0ed3400f601976b20246c7d05/private_storage/views.py#L55-L64
7,316
edoburu/django-private-storage
private_storage/views.py
PrivateStorageView.get
def get(self, request, *args, **kwargs): """ Handle incoming GET requests """ private_file = self.get_private_file() if not self.can_access_file(private_file): return HttpResponseForbidden('Private storage access denied') if not private_file.exists(): ...
python
def get(self, request, *args, **kwargs): """ Handle incoming GET requests """ private_file = self.get_private_file() if not self.can_access_file(private_file): return HttpResponseForbidden('Private storage access denied') if not private_file.exists(): ...
[ "def", "get", "(", "self", ",", "request", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "private_file", "=", "self", ".", "get_private_file", "(", ")", "if", "not", "self", ".", "can_access_file", "(", "private_file", ")", ":", "return", "HttpR...
Handle incoming GET requests
[ "Handle", "incoming", "GET", "requests" ]
35b718024fee75b0ed3400f601976b20246c7d05
https://github.com/edoburu/django-private-storage/blob/35b718024fee75b0ed3400f601976b20246c7d05/private_storage/views.py#L66-L78
7,317
edoburu/django-private-storage
private_storage/views.py
PrivateStorageView.serve_file
def serve_file(self, private_file): """ Serve the file that was retrieved from the storage. The relative path can be found with ``private_file.relative_name``. :type private_file: :class:`private_storage.models.PrivateFile` :rtype: django.http.HttpResponse """ re...
python
def serve_file(self, private_file): """ Serve the file that was retrieved from the storage. The relative path can be found with ``private_file.relative_name``. :type private_file: :class:`private_storage.models.PrivateFile` :rtype: django.http.HttpResponse """ re...
[ "def", "serve_file", "(", "self", ",", "private_file", ")", ":", "response", "=", "self", ".", "server_class", "(", ")", ".", "serve", "(", "private_file", ")", "if", "self", ".", "content_disposition", ":", "# Join syntax works in all Python versions. Python 3 does...
Serve the file that was retrieved from the storage. The relative path can be found with ``private_file.relative_name``. :type private_file: :class:`private_storage.models.PrivateFile` :rtype: django.http.HttpResponse
[ "Serve", "the", "file", "that", "was", "retrieved", "from", "the", "storage", ".", "The", "relative", "path", "can", "be", "found", "with", "private_file", ".", "relative_name", "." ]
35b718024fee75b0ed3400f601976b20246c7d05
https://github.com/edoburu/django-private-storage/blob/35b718024fee75b0ed3400f601976b20246c7d05/private_storage/views.py#L94-L112
7,318
edoburu/django-private-storage
private_storage/views.py
PrivateStorageView.get_content_disposition_filename
def get_content_disposition_filename(self, private_file): """ Return the filename in the download header. """ return self.content_disposition_filename or os.path.basename(private_file.relative_name)
python
def get_content_disposition_filename(self, private_file): """ Return the filename in the download header. """ return self.content_disposition_filename or os.path.basename(private_file.relative_name)
[ "def", "get_content_disposition_filename", "(", "self", ",", "private_file", ")", ":", "return", "self", ".", "content_disposition_filename", "or", "os", ".", "path", ".", "basename", "(", "private_file", ".", "relative_name", ")" ]
Return the filename in the download header.
[ "Return", "the", "filename", "in", "the", "download", "header", "." ]
35b718024fee75b0ed3400f601976b20246c7d05
https://github.com/edoburu/django-private-storage/blob/35b718024fee75b0ed3400f601976b20246c7d05/private_storage/views.py#L114-L118
7,319
edoburu/django-private-storage
private_storage/views.py
PrivateStorageView._encode_filename_header
def _encode_filename_header(self, filename): """ The filename, encoded to use in a ``Content-Disposition`` header. """ # Based on https://www.djangosnippets.org/snippets/1710/ user_agent = self.request.META.get('HTTP_USER_AGENT', None) if 'WebKit' in user_agent: ...
python
def _encode_filename_header(self, filename): """ The filename, encoded to use in a ``Content-Disposition`` header. """ # Based on https://www.djangosnippets.org/snippets/1710/ user_agent = self.request.META.get('HTTP_USER_AGENT', None) if 'WebKit' in user_agent: ...
[ "def", "_encode_filename_header", "(", "self", ",", "filename", ")", ":", "# Based on https://www.djangosnippets.org/snippets/1710/", "user_agent", "=", "self", ".", "request", ".", "META", ".", "get", "(", "'HTTP_USER_AGENT'", ",", "None", ")", "if", "'WebKit'", "i...
The filename, encoded to use in a ``Content-Disposition`` header.
[ "The", "filename", "encoded", "to", "use", "in", "a", "Content", "-", "Disposition", "header", "." ]
35b718024fee75b0ed3400f601976b20246c7d05
https://github.com/edoburu/django-private-storage/blob/35b718024fee75b0ed3400f601976b20246c7d05/private_storage/views.py#L120-L139
7,320
edoburu/django-private-storage
private_storage/servers.py
add_no_cache_headers
def add_no_cache_headers(func): """ Makes sure the retrieved file is not cached on disk, or cached by proxy servers in between. This would circumvent any checking whether the user may even access the file. """ @wraps(func) def _dec(*args, **kwargs): response = func(*args, **kwargs) ...
python
def add_no_cache_headers(func): """ Makes sure the retrieved file is not cached on disk, or cached by proxy servers in between. This would circumvent any checking whether the user may even access the file. """ @wraps(func) def _dec(*args, **kwargs): response = func(*args, **kwargs) ...
[ "def", "add_no_cache_headers", "(", "func", ")", ":", "@", "wraps", "(", "func", ")", "def", "_dec", "(", "*", "args", ",", "*", "*", "kwargs", ")", ":", "response", "=", "func", "(", "*", "args", ",", "*", "*", "kwargs", ")", "response", "[", "'...
Makes sure the retrieved file is not cached on disk, or cached by proxy servers in between. This would circumvent any checking whether the user may even access the file.
[ "Makes", "sure", "the", "retrieved", "file", "is", "not", "cached", "on", "disk", "or", "cached", "by", "proxy", "servers", "in", "between", ".", "This", "would", "circumvent", "any", "checking", "whether", "the", "user", "may", "even", "access", "the", "f...
35b718024fee75b0ed3400f601976b20246c7d05
https://github.com/edoburu/django-private-storage/blob/35b718024fee75b0ed3400f601976b20246c7d05/private_storage/servers.py#L43-L56
7,321
datamade/parserator
parserator/training.py
readTrainingData
def readTrainingData(file_locations, GROUP_LABEL): ''' Used in downstream tests ''' class Mock(object): pass mock_module = Mock() mock_module.PARENT_LABEL = GROUP_LABEL for location in file_locations: with open(location) as f: tree = etree.parse(f) xml = ...
python
def readTrainingData(file_locations, GROUP_LABEL): ''' Used in downstream tests ''' class Mock(object): pass mock_module = Mock() mock_module.PARENT_LABEL = GROUP_LABEL for location in file_locations: with open(location) as f: tree = etree.parse(f) xml = ...
[ "def", "readTrainingData", "(", "file_locations", ",", "GROUP_LABEL", ")", ":", "class", "Mock", "(", "object", ")", ":", "pass", "mock_module", "=", "Mock", "(", ")", "mock_module", ".", "PARENT_LABEL", "=", "GROUP_LABEL", "for", "location", "in", "file_locat...
Used in downstream tests
[ "Used", "in", "downstream", "tests" ]
4dc69b0d115bf33e2d169ff40b05143257a5f481
https://github.com/datamade/parserator/blob/4dc69b0d115bf33e2d169ff40b05143257a5f481/parserator/training.py#L58-L72
7,322
Bouke/django-user-sessions
user_sessions/templatetags/user_sessions.py
device
def device(value): """ Transform a User Agent into human readable text. Example output: * Safari on iPhone * Chrome on Windows 8.1 * Safari on OS X * Firefox * Linux * None """ browser = None for regex, name in BROWSERS: if regex.search(value): brow...
python
def device(value): """ Transform a User Agent into human readable text. Example output: * Safari on iPhone * Chrome on Windows 8.1 * Safari on OS X * Firefox * Linux * None """ browser = None for regex, name in BROWSERS: if regex.search(value): brow...
[ "def", "device", "(", "value", ")", ":", "browser", "=", "None", "for", "regex", ",", "name", "in", "BROWSERS", ":", "if", "regex", ".", "search", "(", "value", ")", ":", "browser", "=", "name", "break", "device", "=", "None", "for", "regex", ",", ...
Transform a User Agent into human readable text. Example output: * Safari on iPhone * Chrome on Windows 8.1 * Safari on OS X * Firefox * Linux * None
[ "Transform", "a", "User", "Agent", "into", "human", "readable", "text", "." ]
9362ad60d61b68faccac674e9aae030537ff821a
https://github.com/Bouke/django-user-sessions/blob/9362ad60d61b68faccac674e9aae030537ff821a/user_sessions/templatetags/user_sessions.py#L39-L77
7,323
Bouke/django-user-sessions
user_sessions/templatetags/user_sessions.py
location
def location(value): """ Transform an IP address into an approximate location. Example output: * Zwolle, The Netherlands * The Netherlands * None """ try: location = geoip() and geoip().city(value) except Exception: try: location = geoip() and geoip().co...
python
def location(value): """ Transform an IP address into an approximate location. Example output: * Zwolle, The Netherlands * The Netherlands * None """ try: location = geoip() and geoip().city(value) except Exception: try: location = geoip() and geoip().co...
[ "def", "location", "(", "value", ")", ":", "try", ":", "location", "=", "geoip", "(", ")", "and", "geoip", "(", ")", ".", "city", "(", "value", ")", "except", "Exception", ":", "try", ":", "location", "=", "geoip", "(", ")", "and", "geoip", "(", ...
Transform an IP address into an approximate location. Example output: * Zwolle, The Netherlands * The Netherlands * None
[ "Transform", "an", "IP", "address", "into", "an", "approximate", "location", "." ]
9362ad60d61b68faccac674e9aae030537ff821a
https://github.com/Bouke/django-user-sessions/blob/9362ad60d61b68faccac674e9aae030537ff821a/user_sessions/templatetags/user_sessions.py#L81-L103
7,324
dschep/lambda-decorators
lambda_decorators.py
before
def before(func): """ Run a function before the handler is invoked, is passed the event & context and must return an event & context too. Usage:: >>> # to create a reusable decorator >>> @before ... def print_request_id(event, context): ... print(context.aws_request...
python
def before(func): """ Run a function before the handler is invoked, is passed the event & context and must return an event & context too. Usage:: >>> # to create a reusable decorator >>> @before ... def print_request_id(event, context): ... print(context.aws_request...
[ "def", "before", "(", "func", ")", ":", "class", "BeforeDecorator", "(", "LambdaDecorator", ")", ":", "def", "before", "(", "self", ",", "event", ",", "context", ")", ":", "return", "func", "(", "event", ",", "context", ")", "return", "BeforeDecorator" ]
Run a function before the handler is invoked, is passed the event & context and must return an event & context too. Usage:: >>> # to create a reusable decorator >>> @before ... def print_request_id(event, context): ... print(context.aws_request_id) ... return ev...
[ "Run", "a", "function", "before", "the", "handler", "is", "invoked", "is", "passed", "the", "event", "&", "context", "and", "must", "return", "an", "event", "&", "context", "too", "." ]
9195914c8afe26843de9968d96dae6a89f061e8a
https://github.com/dschep/lambda-decorators/blob/9195914c8afe26843de9968d96dae6a89f061e8a/lambda_decorators.py#L234-L264
7,325
dschep/lambda-decorators
lambda_decorators.py
after
def after(func): """ Run a function after the handler is invoked, is passed the response and must return an response too. Usage:: >>> # to create a reusable decorator >>> @after ... def gnu_terry_pratchett(retval): ... retval.setdefault('Headers', {})['X-Clacks-Over...
python
def after(func): """ Run a function after the handler is invoked, is passed the response and must return an response too. Usage:: >>> # to create a reusable decorator >>> @after ... def gnu_terry_pratchett(retval): ... retval.setdefault('Headers', {})['X-Clacks-Over...
[ "def", "after", "(", "func", ")", ":", "class", "AfterDecorator", "(", "LambdaDecorator", ")", ":", "def", "after", "(", "self", ",", "retval", ")", ":", "return", "func", "(", "retval", ")", "return", "AfterDecorator" ]
Run a function after the handler is invoked, is passed the response and must return an response too. Usage:: >>> # to create a reusable decorator >>> @after ... def gnu_terry_pratchett(retval): ... retval.setdefault('Headers', {})['X-Clacks-Overhead'] = 'GNU Terry Pratchett...
[ "Run", "a", "function", "after", "the", "handler", "is", "invoked", "is", "passed", "the", "response", "and", "must", "return", "an", "response", "too", "." ]
9195914c8afe26843de9968d96dae6a89f061e8a
https://github.com/dschep/lambda-decorators/blob/9195914c8afe26843de9968d96dae6a89f061e8a/lambda_decorators.py#L267-L289
7,326
dschep/lambda-decorators
lambda_decorators.py
on_exception
def on_exception(func): """ Run a function when a handler thows an exception. It's return value is returned to AWS. Usage:: >>> # to create a reusable decorator >>> @on_exception ... def handle_errors(exception): ... print(exception) ... return {'statusC...
python
def on_exception(func): """ Run a function when a handler thows an exception. It's return value is returned to AWS. Usage:: >>> # to create a reusable decorator >>> @on_exception ... def handle_errors(exception): ... print(exception) ... return {'statusC...
[ "def", "on_exception", "(", "func", ")", ":", "class", "OnExceptionDecorator", "(", "LambdaDecorator", ")", ":", "def", "on_exception", "(", "self", ",", "exception", ")", ":", "return", "func", "(", "exception", ")", "return", "OnExceptionDecorator" ]
Run a function when a handler thows an exception. It's return value is returned to AWS. Usage:: >>> # to create a reusable decorator >>> @on_exception ... def handle_errors(exception): ... print(exception) ... return {'statusCode': 500, 'body': 'uh oh'} ...
[ "Run", "a", "function", "when", "a", "handler", "thows", "an", "exception", ".", "It", "s", "return", "value", "is", "returned", "to", "AWS", "." ]
9195914c8afe26843de9968d96dae6a89f061e8a
https://github.com/dschep/lambda-decorators/blob/9195914c8afe26843de9968d96dae6a89f061e8a/lambda_decorators.py#L292-L321
7,327
dschep/lambda-decorators
lambda_decorators.py
async_handler
def async_handler(handler): """ This decorator allows for use of async handlers by automatically running them in an event loop. The loop is added to the context object for if the handler needs it. Usage:: >>> from lambda_decorators import async_handler >>> async def foobar(): ...
python
def async_handler(handler): """ This decorator allows for use of async handlers by automatically running them in an event loop. The loop is added to the context object for if the handler needs it. Usage:: >>> from lambda_decorators import async_handler >>> async def foobar(): ...
[ "def", "async_handler", "(", "handler", ")", ":", "@", "wraps", "(", "handler", ")", "def", "wrapper", "(", "event", ",", "context", ")", ":", "context", ".", "loop", "=", "asyncio", ".", "get_event_loop", "(", ")", "return", "context", ".", "loop", "....
This decorator allows for use of async handlers by automatically running them in an event loop. The loop is added to the context object for if the handler needs it. Usage:: >>> from lambda_decorators import async_handler >>> async def foobar(): ... return 'foobar' >>> @...
[ "This", "decorator", "allows", "for", "use", "of", "async", "handlers", "by", "automatically", "running", "them", "in", "an", "event", "loop", ".", "The", "loop", "is", "added", "to", "the", "context", "object", "for", "if", "the", "handler", "needs", "it"...
9195914c8afe26843de9968d96dae6a89f061e8a
https://github.com/dschep/lambda-decorators/blob/9195914c8afe26843de9968d96dae6a89f061e8a/lambda_decorators.py#L324-L351
7,328
dschep/lambda-decorators
lambda_decorators.py
dump_json_body
def dump_json_body(handler): """ Automatically serialize response bodies with json.dumps. Returns a 500 error if the response cannot be serialized Usage:: >>> from lambda_decorators import dump_json_body >>> @dump_json_body ... def handler(event, context): ... return {'statusCode': 200, 'body': {'hel...
python
def dump_json_body(handler): """ Automatically serialize response bodies with json.dumps. Returns a 500 error if the response cannot be serialized Usage:: >>> from lambda_decorators import dump_json_body >>> @dump_json_body ... def handler(event, context): ... return {'statusCode': 200, 'body': {'hel...
[ "def", "dump_json_body", "(", "handler", ")", ":", "@", "wraps", "(", "handler", ")", "def", "wrapper", "(", "event", ",", "context", ")", ":", "response", "=", "handler", "(", "event", ",", "context", ")", "if", "'body'", "in", "response", ":", "try",...
Automatically serialize response bodies with json.dumps. Returns a 500 error if the response cannot be serialized Usage:: >>> from lambda_decorators import dump_json_body >>> @dump_json_body ... def handler(event, context): ... return {'statusCode': 200, 'body': {'hello': 'world'}} >>> handler({}, obje...
[ "Automatically", "serialize", "response", "bodies", "with", "json", ".", "dumps", "." ]
9195914c8afe26843de9968d96dae6a89f061e8a
https://github.com/dschep/lambda-decorators/blob/9195914c8afe26843de9968d96dae6a89f061e8a/lambda_decorators.py#L401-L425
7,329
dschep/lambda-decorators
lambda_decorators.py
json_http_resp
def json_http_resp(handler): """ Automatically serialize return value to the body of a successfull HTTP response. Returns a 500 error if the response cannot be serialized Usage:: >>> from lambda_decorators import json_http_resp >>> @json_http_resp ... def handler(event, context): ... return {...
python
def json_http_resp(handler): """ Automatically serialize return value to the body of a successfull HTTP response. Returns a 500 error if the response cannot be serialized Usage:: >>> from lambda_decorators import json_http_resp >>> @json_http_resp ... def handler(event, context): ... return {...
[ "def", "json_http_resp", "(", "handler", ")", ":", "@", "wraps", "(", "handler", ")", "def", "wrapper", "(", "event", ",", "context", ")", ":", "response", "=", "handler", "(", "event", ",", "context", ")", "try", ":", "body", "=", "json", ".", "dump...
Automatically serialize return value to the body of a successfull HTTP response. Returns a 500 error if the response cannot be serialized Usage:: >>> from lambda_decorators import json_http_resp >>> @json_http_resp ... def handler(event, context): ... return {'hello': 'world'} >>> handler({},...
[ "Automatically", "serialize", "return", "value", "to", "the", "body", "of", "a", "successfull", "HTTP", "response", "." ]
9195914c8afe26843de9968d96dae6a89f061e8a
https://github.com/dschep/lambda-decorators/blob/9195914c8afe26843de9968d96dae6a89f061e8a/lambda_decorators.py#L428-L459
7,330
dschep/lambda-decorators
lambda_decorators.py
load_json_body
def load_json_body(handler): """ Automatically deserialize event bodies with json.loads. Automatically returns a 400 BAD REQUEST if there is an error while parsing. Usage:: >>> from lambda_decorators import load_json_body >>> @load_json_body ... def handler(event, context): .....
python
def load_json_body(handler): """ Automatically deserialize event bodies with json.loads. Automatically returns a 400 BAD REQUEST if there is an error while parsing. Usage:: >>> from lambda_decorators import load_json_body >>> @load_json_body ... def handler(event, context): .....
[ "def", "load_json_body", "(", "handler", ")", ":", "@", "wraps", "(", "handler", ")", "def", "wrapper", "(", "event", ",", "context", ")", ":", "if", "isinstance", "(", "event", ".", "get", "(", "'body'", ")", ",", "str", ")", ":", "try", ":", "eve...
Automatically deserialize event bodies with json.loads. Automatically returns a 400 BAD REQUEST if there is an error while parsing. Usage:: >>> from lambda_decorators import load_json_body >>> @load_json_body ... def handler(event, context): ... return event['body']['foo'] >...
[ "Automatically", "deserialize", "event", "bodies", "with", "json", ".", "loads", "." ]
9195914c8afe26843de9968d96dae6a89f061e8a
https://github.com/dschep/lambda-decorators/blob/9195914c8afe26843de9968d96dae6a89f061e8a/lambda_decorators.py#L462-L489
7,331
dschep/lambda-decorators
lambda_decorators.py
json_schema_validator
def json_schema_validator(request_schema=None, response_schema=None): """ Validate your request & response payloads against a JSONSchema. *NOTE: depends on the* `jsonschema <https://github.com/Julian/jsonschema>`_ *package. If you're using* `serverless-python-requirements <https://github.com/UnitedInco...
python
def json_schema_validator(request_schema=None, response_schema=None): """ Validate your request & response payloads against a JSONSchema. *NOTE: depends on the* `jsonschema <https://github.com/Julian/jsonschema>`_ *package. If you're using* `serverless-python-requirements <https://github.com/UnitedInco...
[ "def", "json_schema_validator", "(", "request_schema", "=", "None", ",", "response_schema", "=", "None", ")", ":", "def", "wrapper_wrapper", "(", "handler", ")", ":", "@", "wraps", "(", "handler", ")", "def", "wrapper", "(", "event", ",", "context", ")", "...
Validate your request & response payloads against a JSONSchema. *NOTE: depends on the* `jsonschema <https://github.com/Julian/jsonschema>`_ *package. If you're using* `serverless-python-requirements <https://github.com/UnitedIncome/serverless-python-requirements>`_ *you're all set. If you cURLed* ``lambda_...
[ "Validate", "your", "request", "&", "response", "payloads", "against", "a", "JSONSchema", "." ]
9195914c8afe26843de9968d96dae6a89f061e8a
https://github.com/dschep/lambda-decorators/blob/9195914c8afe26843de9968d96dae6a89f061e8a/lambda_decorators.py#L492-L546
7,332
dschep/lambda-decorators
lambda_decorators.py
no_retry_on_failure
def no_retry_on_failure(handler): """ AWS Lambda retries scheduled lambdas that don't execute succesfully. This detects this by storing requests IDs in memory and exiting early on duplicates. Since this is in memory, don't use it on very frequently scheduled lambdas. It logs a critical message then...
python
def no_retry_on_failure(handler): """ AWS Lambda retries scheduled lambdas that don't execute succesfully. This detects this by storing requests IDs in memory and exiting early on duplicates. Since this is in memory, don't use it on very frequently scheduled lambdas. It logs a critical message then...
[ "def", "no_retry_on_failure", "(", "handler", ")", ":", "seen_request_ids", "=", "set", "(", ")", "@", "wraps", "(", "handler", ")", "def", "wrapper", "(", "event", ",", "context", ")", ":", "if", "context", ".", "aws_request_id", "in", "seen_request_ids", ...
AWS Lambda retries scheduled lambdas that don't execute succesfully. This detects this by storing requests IDs in memory and exiting early on duplicates. Since this is in memory, don't use it on very frequently scheduled lambdas. It logs a critical message then exits with a statusCode of 200 to avoid f...
[ "AWS", "Lambda", "retries", "scheduled", "lambdas", "that", "don", "t", "execute", "succesfully", "." ]
9195914c8afe26843de9968d96dae6a89f061e8a
https://github.com/dschep/lambda-decorators/blob/9195914c8afe26843de9968d96dae6a89f061e8a/lambda_decorators.py#L579-L617
7,333
dmarx/psaw
psaw/PushshiftAPI.py
PushshiftAPIMinimal._wrap_thing
def _wrap_thing(self, thing, kind): """Mimic praw.Submission and praw.Comment API""" thing['created'] = self._epoch_utc_to_local(thing['created_utc']) thing['d_'] = copy.deepcopy(thing) ThingType = namedtuple(kind, thing.keys()) thing = ThingType(**thing) return thing
python
def _wrap_thing(self, thing, kind): """Mimic praw.Submission and praw.Comment API""" thing['created'] = self._epoch_utc_to_local(thing['created_utc']) thing['d_'] = copy.deepcopy(thing) ThingType = namedtuple(kind, thing.keys()) thing = ThingType(**thing) return thing
[ "def", "_wrap_thing", "(", "self", ",", "thing", ",", "kind", ")", ":", "thing", "[", "'created'", "]", "=", "self", ".", "_epoch_utc_to_local", "(", "thing", "[", "'created_utc'", "]", ")", "thing", "[", "'d_'", "]", "=", "copy", ".", "deepcopy", "(",...
Mimic praw.Submission and praw.Comment API
[ "Mimic", "praw", ".", "Submission", "and", "praw", ".", "Comment", "API" ]
5702abdd1a0ccd60b115fc4b545eb2c087c56194
https://github.com/dmarx/psaw/blob/5702abdd1a0ccd60b115fc4b545eb2c087c56194/psaw/PushshiftAPI.py#L112-L118
7,334
dmarx/psaw
psaw/PushshiftAPI.py
PushshiftAPIMinimal._add_nec_args
def _add_nec_args(self, payload): """Adds 'limit' and 'created_utc' arguments to the payload as necessary.""" if self._limited(payload): # Do nothing I guess? Not sure how paging works on this endpoint... return if 'limit' not in payload: payload['limit'] = se...
python
def _add_nec_args(self, payload): """Adds 'limit' and 'created_utc' arguments to the payload as necessary.""" if self._limited(payload): # Do nothing I guess? Not sure how paging works on this endpoint... return if 'limit' not in payload: payload['limit'] = se...
[ "def", "_add_nec_args", "(", "self", ",", "payload", ")", ":", "if", "self", ".", "_limited", "(", "payload", ")", ":", "# Do nothing I guess? Not sure how paging works on this endpoint...", "return", "if", "'limit'", "not", "in", "payload", ":", "payload", "[", "...
Adds 'limit' and 'created_utc' arguments to the payload as necessary.
[ "Adds", "limit", "and", "created_utc", "arguments", "to", "the", "payload", "as", "necessary", "." ]
5702abdd1a0ccd60b115fc4b545eb2c087c56194
https://github.com/dmarx/psaw/blob/5702abdd1a0ccd60b115fc4b545eb2c087c56194/psaw/PushshiftAPI.py#L130-L147
7,335
pyroscope/pyrocore
src/pyrocore/scripts/rtmv.py
pretty_path
def pretty_path(path): """ Prettify path for logging. """ path = fmt.to_utf8(path) home_dir = os.path.expanduser("~") if path.startswith(home_dir): path = "~" + path[len(home_dir):] return '"%s"' % (path,)
python
def pretty_path(path): """ Prettify path for logging. """ path = fmt.to_utf8(path) home_dir = os.path.expanduser("~") if path.startswith(home_dir): path = "~" + path[len(home_dir):] return '"%s"' % (path,)
[ "def", "pretty_path", "(", "path", ")", ":", "path", "=", "fmt", ".", "to_utf8", "(", "path", ")", "home_dir", "=", "os", ".", "path", ".", "expanduser", "(", "\"~\"", ")", "if", "path", ".", "startswith", "(", "home_dir", ")", ":", "path", "=", "\...
Prettify path for logging.
[ "Prettify", "path", "for", "logging", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/rtmv.py#L31-L38
7,336
pyroscope/pyrocore
src/pyrocore/scripts/rtmv.py
RtorrentMove.guarded
def guarded(self, call, *args): """ Catch exceptions thrown by filesystem calls, and don't really execute them in dry-run mode. """ self.LOG.debug('%s(%s)' % ( call.__name__, ', '.join([pretty_path(i) for i in args]), )) if not self.options.dry_run: ...
python
def guarded(self, call, *args): """ Catch exceptions thrown by filesystem calls, and don't really execute them in dry-run mode. """ self.LOG.debug('%s(%s)' % ( call.__name__, ', '.join([pretty_path(i) for i in args]), )) if not self.options.dry_run: ...
[ "def", "guarded", "(", "self", ",", "call", ",", "*", "args", ")", ":", "self", ".", "LOG", ".", "debug", "(", "'%s(%s)'", "%", "(", "call", ".", "__name__", ",", "', '", ".", "join", "(", "[", "pretty_path", "(", "i", ")", "for", "i", "in", "a...
Catch exceptions thrown by filesystem calls, and don't really execute them in dry-run mode.
[ "Catch", "exceptions", "thrown", "by", "filesystem", "calls", "and", "don", "t", "really", "execute", "them", "in", "dry", "-", "run", "mode", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/rtmv.py#L82-L95
7,337
pyroscope/pyrocore
src/pyrocore/torrent/rtorrent.py
run
def run(): """ Module level test. """ logging.basicConfig(level=logging.DEBUG) load_config.ConfigLoader().load() config.debug = True print(repr(config.engine.item(sys.argv[1])))
python
def run(): """ Module level test. """ logging.basicConfig(level=logging.DEBUG) load_config.ConfigLoader().load() config.debug = True print(repr(config.engine.item(sys.argv[1])))
[ "def", "run", "(", ")", ":", "logging", ".", "basicConfig", "(", "level", "=", "logging", ".", "DEBUG", ")", "load_config", ".", "ConfigLoader", "(", ")", ".", "load", "(", ")", "config", ".", "debug", "=", "True", "print", "(", "repr", "(", "config"...
Module level test.
[ "Module", "level", "test", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/rtorrent.py#L848-L854
7,338
pyroscope/pyrocore
src/pyrocore/torrent/rtorrent.py
RtorrentItem._make_it_so
def _make_it_so(self, command, calls, *args, **kwargs): """ Perform some error-checked XMLRPC calls. """ observer = kwargs.pop('observer', False) args = (self._fields["hash"],) + args try: for call in calls: self._engine.LOG.debug("%s%s torrent #%s (%s...
python
def _make_it_so(self, command, calls, *args, **kwargs): """ Perform some error-checked XMLRPC calls. """ observer = kwargs.pop('observer', False) args = (self._fields["hash"],) + args try: for call in calls: self._engine.LOG.debug("%s%s torrent #%s (%s...
[ "def", "_make_it_so", "(", "self", ",", "command", ",", "calls", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "observer", "=", "kwargs", ".", "pop", "(", "'observer'", ",", "False", ")", "args", "=", "(", "self", ".", "_fields", "[", "\"has...
Perform some error-checked XMLRPC calls.
[ "Perform", "some", "error", "-", "checked", "XMLRPC", "calls", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/rtorrent.py#L60-L77
7,339
pyroscope/pyrocore
src/pyrocore/torrent/rtorrent.py
RtorrentItem.fetch
def fetch(self, name, engine_name=None): """ Get a field on demand. """ # TODO: Get each on-demand field in a multicall for all other items, since # we likely need it anyway; another (more easy) way would be to pre-fetch dynamically # with the list of fields from filters and outp...
python
def fetch(self, name, engine_name=None): """ Get a field on demand. """ # TODO: Get each on-demand field in a multicall for all other items, since # we likely need it anyway; another (more easy) way would be to pre-fetch dynamically # with the list of fields from filters and outp...
[ "def", "fetch", "(", "self", ",", "name", ",", "engine_name", "=", "None", ")", ":", "# TODO: Get each on-demand field in a multicall for all other items, since", "# we likely need it anyway; another (more easy) way would be to pre-fetch dynamically", "# with the list of fields from filt...
Get a field on demand.
[ "Get", "a", "field", "on", "demand", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/rtorrent.py#L167-L211
7,340
pyroscope/pyrocore
src/pyrocore/torrent/rtorrent.py
RtorrentItem.datapath
def datapath(self): """ Get an item's data path. """ path = self._fields['path'] if not path: # stopped item with no base_dir? path = self.fetch('directory') if path and not self._fields['is_multi_file']: path = os.path.join(path, self._fields['na...
python
def datapath(self): """ Get an item's data path. """ path = self._fields['path'] if not path: # stopped item with no base_dir? path = self.fetch('directory') if path and not self._fields['is_multi_file']: path = os.path.join(path, self._fields['na...
[ "def", "datapath", "(", "self", ")", ":", "path", "=", "self", ".", "_fields", "[", "'path'", "]", "if", "not", "path", ":", "# stopped item with no base_dir?", "path", "=", "self", ".", "fetch", "(", "'directory'", ")", "if", "path", "and", "not", "self...
Get an item's data path.
[ "Get", "an", "item", "s", "data", "path", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/rtorrent.py#L214-L222
7,341
pyroscope/pyrocore
src/pyrocore/torrent/rtorrent.py
RtorrentItem.announce_urls
def announce_urls(self, default=[]): # pylint: disable=dangerous-default-value """ Get a list of all announce URLs. Returns `default` if no trackers are found at all. """ try: response = self._engine._rpc.t.multicall(self._fields["hash"], 0, "t.url=", "t.is_enabled=") ...
python
def announce_urls(self, default=[]): # pylint: disable=dangerous-default-value """ Get a list of all announce URLs. Returns `default` if no trackers are found at all. """ try: response = self._engine._rpc.t.multicall(self._fields["hash"], 0, "t.url=", "t.is_enabled=") ...
[ "def", "announce_urls", "(", "self", ",", "default", "=", "[", "]", ")", ":", "# pylint: disable=dangerous-default-value", "try", ":", "response", "=", "self", ".", "_engine", ".", "_rpc", ".", "t", ".", "multicall", "(", "self", ".", "_fields", "[", "\"ha...
Get a list of all announce URLs. Returns `default` if no trackers are found at all.
[ "Get", "a", "list", "of", "all", "announce", "URLs", ".", "Returns", "default", "if", "no", "trackers", "are", "found", "at", "all", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/rtorrent.py#L225-L237
7,342
pyroscope/pyrocore
src/pyrocore/torrent/rtorrent.py
RtorrentItem.tag
def tag(self, tags): """ Add or remove tags. """ # Get tag list and add/remove given tags tags = tags.lower() previous = self.tagged tagset = previous.copy() for tag in tags.replace(',', ' ').split(): if tag.startswith('-'): tagset.disc...
python
def tag(self, tags): """ Add or remove tags. """ # Get tag list and add/remove given tags tags = tags.lower() previous = self.tagged tagset = previous.copy() for tag in tags.replace(',', ' ').split(): if tag.startswith('-'): tagset.disc...
[ "def", "tag", "(", "self", ",", "tags", ")", ":", "# Get tag list and add/remove given tags", "tags", "=", "tags", ".", "lower", "(", ")", "previous", "=", "self", ".", "tagged", "tagset", "=", "previous", ".", "copy", "(", ")", "for", "tag", "in", "tags...
Add or remove tags.
[ "Add", "or", "remove", "tags", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/rtorrent.py#L264-L284
7,343
pyroscope/pyrocore
src/pyrocore/torrent/rtorrent.py
RtorrentItem.set_throttle
def set_throttle(self, name): """ Assign to throttle group. """ if name.lower() == "null": name = "NULL" if name.lower() == "none": name = '' if name not in self._engine.known_throttle_names: if self._engine._rpc.throttle.up.max(xmlrpc.NOHASH,...
python
def set_throttle(self, name): """ Assign to throttle group. """ if name.lower() == "null": name = "NULL" if name.lower() == "none": name = '' if name not in self._engine.known_throttle_names: if self._engine._rpc.throttle.up.max(xmlrpc.NOHASH,...
[ "def", "set_throttle", "(", "self", ",", "name", ")", ":", "if", "name", ".", "lower", "(", ")", "==", "\"null\"", ":", "name", "=", "\"NULL\"", "if", "name", ".", "lower", "(", ")", "==", "\"none\"", ":", "name", "=", "''", "if", "name", "not", ...
Assign to throttle group.
[ "Assign", "to", "throttle", "group", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/rtorrent.py#L287-L312
7,344
pyroscope/pyrocore
src/pyrocore/torrent/rtorrent.py
RtorrentItem.purge
def purge(self): """ Delete PARTIAL data files and remove torrent from client. """ def partial_file(item): "Filter out partial files" #print "???", repr(item) return item.completed_chunks < item.size_chunks self.cull(file_filter=partial_file, attrs=["...
python
def purge(self): """ Delete PARTIAL data files and remove torrent from client. """ def partial_file(item): "Filter out partial files" #print "???", repr(item) return item.completed_chunks < item.size_chunks self.cull(file_filter=partial_file, attrs=["...
[ "def", "purge", "(", "self", ")", ":", "def", "partial_file", "(", "item", ")", ":", "\"Filter out partial files\"", "#print \"???\", repr(item)", "return", "item", ".", "completed_chunks", "<", "item", ".", "size_chunks", "self", ".", "cull", "(", "file_filter", ...
Delete PARTIAL data files and remove torrent from client.
[ "Delete", "PARTIAL", "data", "files", "and", "remove", "torrent", "from", "client", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/rtorrent.py#L388-L396
7,345
pyroscope/pyrocore
src/pyrocore/torrent/rtorrent.py
RtorrentEngine.load_config
def load_config(self, namespace=None, rcfile=None): """ Load file given in "rcfile". """ if namespace is None: namespace = config if namespace.scgi_url: return # already have the connection to rTorrent # Get and check config file name if not rcfi...
python
def load_config(self, namespace=None, rcfile=None): """ Load file given in "rcfile". """ if namespace is None: namespace = config if namespace.scgi_url: return # already have the connection to rTorrent # Get and check config file name if not rcfi...
[ "def", "load_config", "(", "self", ",", "namespace", "=", "None", ",", "rcfile", "=", "None", ")", ":", "if", "namespace", "is", "None", ":", "namespace", "=", "config", "if", "namespace", ".", "scgi_url", ":", "return", "# already have the connection to rTorr...
Load file given in "rcfile".
[ "Load", "file", "given", "in", "rcfile", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/rtorrent.py#L577-L628
7,346
pyroscope/pyrocore
src/pyrocore/torrent/rtorrent.py
RtorrentEngine._resolve_viewname
def _resolve_viewname(self, viewname): """ Check for special view names and return existing rTorrent one. """ if viewname == "-": try: # Only works with rTorrent-PS at this time! viewname = self.open().ui.current_view() except xmlrpc.ERRORS...
python
def _resolve_viewname(self, viewname): """ Check for special view names and return existing rTorrent one. """ if viewname == "-": try: # Only works with rTorrent-PS at this time! viewname = self.open().ui.current_view() except xmlrpc.ERRORS...
[ "def", "_resolve_viewname", "(", "self", ",", "viewname", ")", ":", "if", "viewname", "==", "\"-\"", ":", "try", ":", "# Only works with rTorrent-PS at this time!", "viewname", "=", "self", ".", "open", "(", ")", ".", "ui", ".", "current_view", "(", ")", "ex...
Check for special view names and return existing rTorrent one.
[ "Check", "for", "special", "view", "names", "and", "return", "existing", "rTorrent", "one", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/rtorrent.py#L655-L665
7,347
pyroscope/pyrocore
src/pyrocore/torrent/rtorrent.py
RtorrentEngine.open
def open(self): """ Open connection. """ # Only connect once if self._rpc is not None: return self._rpc # Get connection URL from rtorrent.rc self.load_config() # Reading abilities are on the downfall, so... if not config.scgi_url: ...
python
def open(self): """ Open connection. """ # Only connect once if self._rpc is not None: return self._rpc # Get connection URL from rtorrent.rc self.load_config() # Reading abilities are on the downfall, so... if not config.scgi_url: ...
[ "def", "open", "(", "self", ")", ":", "# Only connect once", "if", "self", ".", "_rpc", "is", "not", "None", ":", "return", "self", ".", "_rpc", "# Get connection URL from rtorrent.rc", "self", ".", "load_config", "(", ")", "# Reading abilities are on the downfall, ...
Open connection.
[ "Open", "connection", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/rtorrent.py#L668-L713
7,348
pyroscope/pyrocore
src/pyrocore/torrent/rtorrent.py
RtorrentEngine.multicall
def multicall(self, viewname, fields): """ Query the given fields of items in the given view. The result list contains named tuples, so you can access the fields directly by their name. """ commands = tuple('d.{}='.format(x) for x in fields) result_type = namedtu...
python
def multicall(self, viewname, fields): """ Query the given fields of items in the given view. The result list contains named tuples, so you can access the fields directly by their name. """ commands = tuple('d.{}='.format(x) for x in fields) result_type = namedtu...
[ "def", "multicall", "(", "self", ",", "viewname", ",", "fields", ")", ":", "commands", "=", "tuple", "(", "'d.{}='", ".", "format", "(", "x", ")", "for", "x", "in", "fields", ")", "result_type", "=", "namedtuple", "(", "'DownloadItem'", ",", "[", "x", ...
Query the given fields of items in the given view. The result list contains named tuples, so you can access the fields directly by their name.
[ "Query", "the", "given", "fields", "of", "items", "in", "the", "given", "view", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/rtorrent.py#L716-L725
7,349
pyroscope/pyrocore
src/pyrocore/torrent/rtorrent.py
RtorrentEngine.item
def item(self, infohash, prefetch=None, cache=False): """ Fetch a single item by its info hash. """ return next(self.items(infohash, prefetch, cache))
python
def item(self, infohash, prefetch=None, cache=False): """ Fetch a single item by its info hash. """ return next(self.items(infohash, prefetch, cache))
[ "def", "item", "(", "self", ",", "infohash", ",", "prefetch", "=", "None", ",", "cache", "=", "False", ")", ":", "return", "next", "(", "self", ".", "items", "(", "infohash", ",", "prefetch", ",", "cache", ")", ")" ]
Fetch a single item by its info hash.
[ "Fetch", "a", "single", "item", "by", "its", "info", "hash", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/rtorrent.py#L734-L737
7,350
pyroscope/pyrocore
src/pyrocore/torrent/broom.py
DiskSpaceManager._load_rules
def _load_rules(self): """Load rule definitions from config.""" for ruleset in self.active_rulesets: section_name = 'sweep_rules_' + ruleset.lower() try: ruledefs = getattr(self.config, section_name) except AttributeError: raise error.U...
python
def _load_rules(self): """Load rule definitions from config.""" for ruleset in self.active_rulesets: section_name = 'sweep_rules_' + ruleset.lower() try: ruledefs = getattr(self.config, section_name) except AttributeError: raise error.U...
[ "def", "_load_rules", "(", "self", ")", ":", "for", "ruleset", "in", "self", ".", "active_rulesets", ":", "section_name", "=", "'sweep_rules_'", "+", "ruleset", ".", "lower", "(", ")", "try", ":", "ruledefs", "=", "getattr", "(", "self", ".", "config", "...
Load rule definitions from config.
[ "Load", "rule", "definitions", "from", "config", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/broom.py#L54-L74
7,351
pyroscope/pyrocore
src/pyrocore/scripts/pyrotorque.py
RtorrentQueueManager._parse_schedule
def _parse_schedule(self, schedule): """ Parse a job schedule. """ result = {} for param in shlex.split(str(schedule)): # do not feed unicode to shlex try: key, val = param.split('=', 1) except (TypeError, ValueError): self.fatal("...
python
def _parse_schedule(self, schedule): """ Parse a job schedule. """ result = {} for param in shlex.split(str(schedule)): # do not feed unicode to shlex try: key, val = param.split('=', 1) except (TypeError, ValueError): self.fatal("...
[ "def", "_parse_schedule", "(", "self", ",", "schedule", ")", ":", "result", "=", "{", "}", "for", "param", "in", "shlex", ".", "split", "(", "str", "(", "schedule", ")", ")", ":", "# do not feed unicode to shlex", "try", ":", "key", ",", "val", "=", "p...
Parse a job schedule.
[ "Parse", "a", "job", "schedule", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/pyrotorque.py#L76-L89
7,352
pyroscope/pyrocore
src/pyrocore/scripts/pyrotorque.py
RtorrentQueueManager._validate_config
def _validate_config(self): """ Handle and check configuration. """ groups = dict( job=defaultdict(Bunch), httpd=defaultdict(Bunch), ) for key, val in config.torque.items(): # Auto-convert numbers and bools if val.isdigit(): ...
python
def _validate_config(self): """ Handle and check configuration. """ groups = dict( job=defaultdict(Bunch), httpd=defaultdict(Bunch), ) for key, val in config.torque.items(): # Auto-convert numbers and bools if val.isdigit(): ...
[ "def", "_validate_config", "(", "self", ")", ":", "groups", "=", "dict", "(", "job", "=", "defaultdict", "(", "Bunch", ")", ",", "httpd", "=", "defaultdict", "(", "Bunch", ")", ",", ")", "for", "key", ",", "val", "in", "config", ".", "torque", ".", ...
Handle and check configuration.
[ "Handle", "and", "check", "configuration", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/pyrotorque.py#L92-L146
7,353
pyroscope/pyrocore
src/pyrocore/scripts/pyrotorque.py
RtorrentQueueManager._add_jobs
def _add_jobs(self): """ Add configured jobs. """ for name, params in self.jobs.items(): if params.active: params.handler = params.handler(params) self.sched.add_cron_job(params.handler.run, **params.schedule)
python
def _add_jobs(self): """ Add configured jobs. """ for name, params in self.jobs.items(): if params.active: params.handler = params.handler(params) self.sched.add_cron_job(params.handler.run, **params.schedule)
[ "def", "_add_jobs", "(", "self", ")", ":", "for", "name", ",", "params", "in", "self", ".", "jobs", ".", "items", "(", ")", ":", "if", "params", ".", "active", ":", "params", ".", "handler", "=", "params", ".", "handler", "(", "params", ")", "self"...
Add configured jobs.
[ "Add", "configured", "jobs", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/pyrotorque.py#L149-L155
7,354
pyroscope/pyrocore
src/pyrocore/scripts/pyrotorque.py
RtorrentQueueManager._init_wsgi_server
def _init_wsgi_server(self): """ Set up WSGI HTTP server. """ self.wsgi_server = None if self.httpd.active: # Only import dependencies when server is active from waitress.server import WSGIServer from pyrocore.daemon import webapp # Set u...
python
def _init_wsgi_server(self): """ Set up WSGI HTTP server. """ self.wsgi_server = None if self.httpd.active: # Only import dependencies when server is active from waitress.server import WSGIServer from pyrocore.daemon import webapp # Set u...
[ "def", "_init_wsgi_server", "(", "self", ")", ":", "self", ".", "wsgi_server", "=", "None", "if", "self", ".", "httpd", ".", "active", ":", "# Only import dependencies when server is active", "from", "waitress", ".", "server", "import", "WSGIServer", "from", "pyro...
Set up WSGI HTTP server.
[ "Set", "up", "WSGI", "HTTP", "server", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/pyrotorque.py#L158-L184
7,355
pyroscope/pyrocore
src/pyrocore/scripts/pyrotorque.py
RtorrentQueueManager._run_forever
def _run_forever(self): """ Run configured jobs until termination request. """ while True: try: tick = time.time() asyncore.loop(timeout=self.POLL_TIMEOUT, use_poll=True) # Sleep for remaining poll cycle time tick += s...
python
def _run_forever(self): """ Run configured jobs until termination request. """ while True: try: tick = time.time() asyncore.loop(timeout=self.POLL_TIMEOUT, use_poll=True) # Sleep for remaining poll cycle time tick += s...
[ "def", "_run_forever", "(", "self", ")", ":", "while", "True", ":", "try", ":", "tick", "=", "time", ".", "time", "(", ")", "asyncore", ".", "loop", "(", "timeout", "=", "self", ".", "POLL_TIMEOUT", ",", "use_poll", "=", "True", ")", "# Sleep for remai...
Run configured jobs until termination request.
[ "Run", "configured", "jobs", "until", "termination", "request", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/pyrotorque.py#L187-L213
7,356
pyroscope/pyrocore
src/pyrocore/scripts/rtxmlrpc.py
read_blob
def read_blob(arg): """Read a BLOB from given ``@arg``.""" result = None if arg == '@-': result = sys.stdin.read() elif any(arg.startswith('@{}://'.format(x)) for x in {'http', 'https', 'ftp', 'file'}): if not requests: raise error.UserError("You must 'pip install requests' t...
python
def read_blob(arg): """Read a BLOB from given ``@arg``.""" result = None if arg == '@-': result = sys.stdin.read() elif any(arg.startswith('@{}://'.format(x)) for x in {'http', 'https', 'ftp', 'file'}): if not requests: raise error.UserError("You must 'pip install requests' t...
[ "def", "read_blob", "(", "arg", ")", ":", "result", "=", "None", "if", "arg", "==", "'@-'", ":", "result", "=", "sys", ".", "stdin", ".", "read", "(", ")", "elif", "any", "(", "arg", ".", "startswith", "(", "'@{}://'", ".", "format", "(", "x", ")...
Read a BLOB from given ``@arg``.
[ "Read", "a", "BLOB", "from", "given" ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/rtxmlrpc.py#L46-L64
7,357
pyroscope/pyrocore
src/pyrocore/scripts/rtxmlrpc.py
RtorrentXmlRpc.open
def open(self): """Open connection and return proxy.""" if not self.proxy: if not config.scgi_url: config.engine.load_config() if not config.scgi_url: self.LOG.error("You need to configure a XMLRPC connection, read" " https://py...
python
def open(self): """Open connection and return proxy.""" if not self.proxy: if not config.scgi_url: config.engine.load_config() if not config.scgi_url: self.LOG.error("You need to configure a XMLRPC connection, read" " https://py...
[ "def", "open", "(", "self", ")", ":", "if", "not", "self", ".", "proxy", ":", "if", "not", "config", ".", "scgi_url", ":", "config", ".", "engine", ".", "load_config", "(", ")", "if", "not", "config", ".", "scgi_url", ":", "self", ".", "LOG", ".", ...
Open connection and return proxy.
[ "Open", "connection", "and", "return", "proxy", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/rtxmlrpc.py#L111-L121
7,358
pyroscope/pyrocore
src/pyrocore/scripts/rtxmlrpc.py
RtorrentXmlRpc.execute
def execute(self, proxy, method, args): """Execute given XMLRPC call.""" try: result = getattr(proxy, method)(raw_xml=self.options.xml, *tuple(args)) except xmlrpc.ERRORS as exc: self.LOG.error("While calling %s(%s): %s" % (method, ", ".join(repr(i) for i in args), exc)) ...
python
def execute(self, proxy, method, args): """Execute given XMLRPC call.""" try: result = getattr(proxy, method)(raw_xml=self.options.xml, *tuple(args)) except xmlrpc.ERRORS as exc: self.LOG.error("While calling %s(%s): %s" % (method, ", ".join(repr(i) for i in args), exc)) ...
[ "def", "execute", "(", "self", ",", "proxy", ",", "method", ",", "args", ")", ":", "try", ":", "result", "=", "getattr", "(", "proxy", ",", "method", ")", "(", "raw_xml", "=", "self", ".", "options", ".", "xml", ",", "*", "tuple", "(", "args", ")...
Execute given XMLRPC call.
[ "Execute", "given", "XMLRPC", "call", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/rtxmlrpc.py#L149-L163
7,359
pyroscope/pyrocore
src/pyrocore/scripts/rtxmlrpc.py
RtorrentXmlRpc.do_repl
def do_repl(self): """REPL for rTorrent XMLRPC commands.""" from prompt_toolkit import prompt from prompt_toolkit.history import FileHistory from prompt_toolkit.auto_suggest import AutoSuggestFromHistory from prompt_toolkit.contrib.completers import WordCompleter self.op...
python
def do_repl(self): """REPL for rTorrent XMLRPC commands.""" from prompt_toolkit import prompt from prompt_toolkit.history import FileHistory from prompt_toolkit.auto_suggest import AutoSuggestFromHistory from prompt_toolkit.contrib.completers import WordCompleter self.op...
[ "def", "do_repl", "(", "self", ")", ":", "from", "prompt_toolkit", "import", "prompt", "from", "prompt_toolkit", ".", "history", "import", "FileHistory", "from", "prompt_toolkit", ".", "auto_suggest", "import", "AutoSuggestFromHistory", "from", "prompt_toolkit", ".", ...
REPL for rTorrent XMLRPC commands.
[ "REPL", "for", "rTorrent", "XMLRPC", "commands", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/rtxmlrpc.py#L179-L224
7,360
pyroscope/pyrocore
src/pyrocore/scripts/rtxmlrpc.py
RtorrentXmlRpc.do_import
def do_import(self): """Handle import files or streams passed with '-i'.""" tmp_import = None try: if self.args[0].startswith('@') and self.args[0] != '@-': import_file = os.path.expanduser(self.args[0][1:]) if not os.path.isfile(import_file): ...
python
def do_import(self): """Handle import files or streams passed with '-i'.""" tmp_import = None try: if self.args[0].startswith('@') and self.args[0] != '@-': import_file = os.path.expanduser(self.args[0][1:]) if not os.path.isfile(import_file): ...
[ "def", "do_import", "(", "self", ")", ":", "tmp_import", "=", "None", "try", ":", "if", "self", ".", "args", "[", "0", "]", ".", "startswith", "(", "'@'", ")", "and", "self", ".", "args", "[", "0", "]", "!=", "'@-'", ":", "import_file", "=", "os"...
Handle import files or streams passed with '-i'.
[ "Handle", "import", "files", "or", "streams", "passed", "with", "-", "i", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/rtxmlrpc.py#L227-L249
7,361
pyroscope/pyrocore
src/pyrocore/scripts/rtxmlrpc.py
RtorrentXmlRpc.do_command
def do_command(self): """Call a single command with arguments.""" method = self.args[0] raw_args = self.args[1:] if '=' in method: if raw_args: self.parser.error("Please don't mix rTorrent and shell argument styles!") method, raw_args = method.spl...
python
def do_command(self): """Call a single command with arguments.""" method = self.args[0] raw_args = self.args[1:] if '=' in method: if raw_args: self.parser.error("Please don't mix rTorrent and shell argument styles!") method, raw_args = method.spl...
[ "def", "do_command", "(", "self", ")", ":", "method", "=", "self", ".", "args", "[", "0", "]", "raw_args", "=", "self", ".", "args", "[", "1", ":", "]", "if", "'='", "in", "method", ":", "if", "raw_args", ":", "self", ".", "parser", ".", "error",...
Call a single command with arguments.
[ "Call", "a", "single", "command", "with", "arguments", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/rtxmlrpc.py#L252-L263
7,362
pyroscope/pyrocore
src/pyrocore/scripts/pyroadmin.py
AdminTool.download_resource
def download_resource(self, download_url, target, guard): """ Helper to download and install external resources. """ download_url = download_url.strip() if not os.path.isabs(target): target = os.path.join(config.config_dir, target) if os.path.exists(os.path.join(targ...
python
def download_resource(self, download_url, target, guard): """ Helper to download and install external resources. """ download_url = download_url.strip() if not os.path.isabs(target): target = os.path.join(config.config_dir, target) if os.path.exists(os.path.join(targ...
[ "def", "download_resource", "(", "self", ",", "download_url", ",", "target", ",", "guard", ")", ":", "download_url", "=", "download_url", ".", "strip", "(", ")", "if", "not", "os", ".", "path", ".", "isabs", "(", "target", ")", ":", "target", "=", "os"...
Helper to download and install external resources.
[ "Helper", "to", "download", "and", "install", "external", "resources", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/pyroadmin.py#L81-L102
7,363
pyroscope/pyrocore
docs/examples/rt-down-stats.py
fmt_duration
def fmt_duration(secs): """Format a duration in seconds.""" return ' '.join(fmt.human_duration(secs, 0, precision=2, short=True).strip().split())
python
def fmt_duration(secs): """Format a duration in seconds.""" return ' '.join(fmt.human_duration(secs, 0, precision=2, short=True).strip().split())
[ "def", "fmt_duration", "(", "secs", ")", ":", "return", "' '", ".", "join", "(", "fmt", ".", "human_duration", "(", "secs", ",", "0", ",", "precision", "=", "2", ",", "short", "=", "True", ")", ".", "strip", "(", ")", ".", "split", "(", ")", ")" ...
Format a duration in seconds.
[ "Format", "a", "duration", "in", "seconds", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/docs/examples/rt-down-stats.py#L13-L15
7,364
pyroscope/pyrocore
docs/examples/rt-down-stats.py
disk_free
def disk_free(path): """Return free bytes on partition holding `path`.""" stats = os.statvfs(path) return stats.f_bavail * stats.f_frsize
python
def disk_free(path): """Return free bytes on partition holding `path`.""" stats = os.statvfs(path) return stats.f_bavail * stats.f_frsize
[ "def", "disk_free", "(", "path", ")", ":", "stats", "=", "os", ".", "statvfs", "(", "path", ")", "return", "stats", ".", "f_bavail", "*", "stats", ".", "f_frsize" ]
Return free bytes on partition holding `path`.
[ "Return", "free", "bytes", "on", "partition", "holding", "path", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/docs/examples/rt-down-stats.py#L18-L21
7,365
pyroscope/pyrocore
src/pyrocore/util/matching.py
truth
def truth(val, context): """ Convert truth value in "val" to a boolean. """ try: 0 + val except TypeError: lower_val = val.lower() if lower_val in TRUE: return True elif lower_val in FALSE: return False else: raise FilterError(...
python
def truth(val, context): """ Convert truth value in "val" to a boolean. """ try: 0 + val except TypeError: lower_val = val.lower() if lower_val in TRUE: return True elif lower_val in FALSE: return False else: raise FilterError(...
[ "def", "truth", "(", "val", ",", "context", ")", ":", "try", ":", "0", "+", "val", "except", "TypeError", ":", "lower_val", "=", "val", ".", "lower", "(", ")", "if", "lower_val", "in", "TRUE", ":", "return", "True", "elif", "lower_val", "in", "FALSE"...
Convert truth value in "val" to a boolean.
[ "Convert", "truth", "value", "in", "val", "to", "a", "boolean", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/util/matching.py#L35-L52
7,366
pyroscope/pyrocore
src/pyrocore/util/matching.py
_time_ym_delta
def _time_ym_delta(timestamp, delta, months): """ Helper to add a year or month delta to a timestamp. """ timestamp = list(time.localtime(timestamp)) timestamp[int(months)] += delta return time.mktime(timestamp)
python
def _time_ym_delta(timestamp, delta, months): """ Helper to add a year or month delta to a timestamp. """ timestamp = list(time.localtime(timestamp)) timestamp[int(months)] += delta return time.mktime(timestamp)
[ "def", "_time_ym_delta", "(", "timestamp", ",", "delta", ",", "months", ")", ":", "timestamp", "=", "list", "(", "time", ".", "localtime", "(", "timestamp", ")", ")", "timestamp", "[", "int", "(", "months", ")", "]", "+=", "delta", "return", "time", "....
Helper to add a year or month delta to a timestamp.
[ "Helper", "to", "add", "a", "year", "or", "month", "delta", "to", "a", "timestamp", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/util/matching.py#L55-L60
7,367
pyroscope/pyrocore
src/pyrocore/util/matching.py
unquote_pre_filter
def unquote_pre_filter(pre_filter, _regex=re.compile(r'[\\]+')): """ Unquote a pre-filter condition. """ if pre_filter.startswith('"') and pre_filter.endswith('"'): # Unquote outer level pre_filter = pre_filter[1:-1] pre_filter = _regex.sub(lambda x: x.group(0)[:len(x.group(0)) // 2]...
python
def unquote_pre_filter(pre_filter, _regex=re.compile(r'[\\]+')): """ Unquote a pre-filter condition. """ if pre_filter.startswith('"') and pre_filter.endswith('"'): # Unquote outer level pre_filter = pre_filter[1:-1] pre_filter = _regex.sub(lambda x: x.group(0)[:len(x.group(0)) // 2]...
[ "def", "unquote_pre_filter", "(", "pre_filter", ",", "_regex", "=", "re", ".", "compile", "(", "r'[\\\\]+'", ")", ")", ":", "if", "pre_filter", ".", "startswith", "(", "'\"'", ")", "and", "pre_filter", ".", "endswith", "(", "'\"'", ")", ":", "# Unquote out...
Unquote a pre-filter condition.
[ "Unquote", "a", "pre", "-", "filter", "condition", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/util/matching.py#L63-L71
7,368
pyroscope/pyrocore
src/pyrocore/util/matching.py
ConditionParser._create_filter
def _create_filter(self, condition): """ Create a filter object from a textual condition. """ # "Normal" comparison operators? comparison = re.match(r"^(%s)(<[>=]?|>=?|!=|~)(.*)$" % self.ident_re, condition) if comparison: name, comparison, values = comparison.groups(...
python
def _create_filter(self, condition): """ Create a filter object from a textual condition. """ # "Normal" comparison operators? comparison = re.match(r"^(%s)(<[>=]?|>=?|!=|~)(.*)$" % self.ident_re, condition) if comparison: name, comparison, values = comparison.groups(...
[ "def", "_create_filter", "(", "self", ",", "condition", ")", ":", "# \"Normal\" comparison operators?", "comparison", "=", "re", ".", "match", "(", "r\"^(%s)(<[>=]?|>=?|!=|~)(.*)$\"", "%", "self", ".", "ident_re", ",", "condition", ")", "if", "comparison", ":", "n...
Create a filter object from a textual condition.
[ "Create", "a", "filter", "object", "from", "a", "textual", "condition", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/util/matching.py#L736-L778
7,369
pyroscope/pyrocore
src/pyrocore/util/matching.py
ConditionParser.parse
def parse(self, conditions): """ Parse filter conditions. @param conditions: multiple conditions. @type conditions: list or str """ conditions_text = conditions try: conditions = shlex.split(fmt.to_utf8(conditions)) except AttributeError: ...
python
def parse(self, conditions): """ Parse filter conditions. @param conditions: multiple conditions. @type conditions: list or str """ conditions_text = conditions try: conditions = shlex.split(fmt.to_utf8(conditions)) except AttributeError: ...
[ "def", "parse", "(", "self", ",", "conditions", ")", ":", "conditions_text", "=", "conditions", "try", ":", "conditions", "=", "shlex", ".", "split", "(", "fmt", ".", "to_utf8", "(", "conditions", ")", ")", "except", "AttributeError", ":", "# Not a string, a...
Parse filter conditions. @param conditions: multiple conditions. @type conditions: list or str
[ "Parse", "filter", "conditions", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/util/matching.py#L792-L862
7,370
pyroscope/pyrocore
src/pyrocore/torrent/jobs.py
_flux_engine_data
def _flux_engine_data(engine): """ Return rTorrent data set for pushing to InfluxDB. """ data = stats.engine_data(engine) # Make it flat data["up_rate"] = data["upload"][0] data["up_limit"] = data["upload"][1] data["down_rate"] = data["download"][0] data["down_limit"] = data["download"]...
python
def _flux_engine_data(engine): """ Return rTorrent data set for pushing to InfluxDB. """ data = stats.engine_data(engine) # Make it flat data["up_rate"] = data["upload"][0] data["up_limit"] = data["upload"][1] data["down_rate"] = data["download"][0] data["down_limit"] = data["download"]...
[ "def", "_flux_engine_data", "(", "engine", ")", ":", "data", "=", "stats", ".", "engine_data", "(", "engine", ")", "# Make it flat", "data", "[", "\"up_rate\"", "]", "=", "data", "[", "\"upload\"", "]", "[", "0", "]", "data", "[", "\"up_limit\"", "]", "=...
Return rTorrent data set for pushing to InfluxDB.
[ "Return", "rTorrent", "data", "set", "for", "pushing", "to", "InfluxDB", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/jobs.py#L35-L53
7,371
pyroscope/pyrocore
src/pyrocore/torrent/jobs.py
EngineStats.run
def run(self): """ Statistics logger job callback. """ try: proxy = config_ini.engine.open() self.LOG.info("Stats for %s - up %s, %s" % ( config_ini.engine.engine_id, fmt.human_duration(proxy.system.time() - config_ini.engine.startup, 0, 2,...
python
def run(self): """ Statistics logger job callback. """ try: proxy = config_ini.engine.open() self.LOG.info("Stats for %s - up %s, %s" % ( config_ini.engine.engine_id, fmt.human_duration(proxy.system.time() - config_ini.engine.startup, 0, 2,...
[ "def", "run", "(", "self", ")", ":", "try", ":", "proxy", "=", "config_ini", ".", "engine", ".", "open", "(", ")", "self", ".", "LOG", ".", "info", "(", "\"Stats for %s - up %s, %s\"", "%", "(", "config_ini", ".", "engine", ".", "engine_id", ",", "fmt"...
Statistics logger job callback.
[ "Statistics", "logger", "job", "callback", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/jobs.py#L68-L79
7,372
pyroscope/pyrocore
src/pyrocore/torrent/jobs.py
InfluxDBStats._influxdb_url
def _influxdb_url(self): """ Return REST API URL to access time series. """ url = "{0}/db/{1}/series".format(self.influxdb.url.rstrip('/'), self.config.dbname) if self.influxdb.user and self.influxdb.password: url += "?u={0}&p={1}".format(self.influxdb.user, self.influxdb.pa...
python
def _influxdb_url(self): """ Return REST API URL to access time series. """ url = "{0}/db/{1}/series".format(self.influxdb.url.rstrip('/'), self.config.dbname) if self.influxdb.user and self.influxdb.password: url += "?u={0}&p={1}".format(self.influxdb.user, self.influxdb.pa...
[ "def", "_influxdb_url", "(", "self", ")", ":", "url", "=", "\"{0}/db/{1}/series\"", ".", "format", "(", "self", ".", "influxdb", ".", "url", ".", "rstrip", "(", "'/'", ")", ",", "self", ".", "config", ".", "dbname", ")", "if", "self", ".", "influxdb", ...
Return REST API URL to access time series.
[ "Return", "REST", "API", "URL", "to", "access", "time", "series", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/jobs.py#L99-L107
7,373
pyroscope/pyrocore
src/pyrocore/torrent/jobs.py
InfluxDBStats._push_data
def _push_data(self): """ Push stats data to InfluxDB. """ if not (self.config.series or self.config.series_host): self.LOG.info("Misconfigured InfluxDB job, neither 'series' nor 'series_host' is set!") return # Assemble data fluxdata = [] if sel...
python
def _push_data(self): """ Push stats data to InfluxDB. """ if not (self.config.series or self.config.series_host): self.LOG.info("Misconfigured InfluxDB job, neither 'series' nor 'series_host' is set!") return # Assemble data fluxdata = [] if sel...
[ "def", "_push_data", "(", "self", ")", ":", "if", "not", "(", "self", ".", "config", ".", "series", "or", "self", ".", "config", ".", "series_host", ")", ":", "self", ".", "LOG", ".", "info", "(", "\"Misconfigured InfluxDB job, neither 'series' nor 'series_hos...
Push stats data to InfluxDB.
[ "Push", "stats", "data", "to", "InfluxDB", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/jobs.py#L110-L158
7,374
pyroscope/pyrocore
src/pyrocore/torrent/filter.py
FilterJobBase.run
def run(self): """ Filter job callback. """ from pyrocore import config try: config.engine.open() # TODO: select view into items items = [] self.run_filter(items) except (error.LoggableError, xmlrpc.ERRORS) as exc: self...
python
def run(self): """ Filter job callback. """ from pyrocore import config try: config.engine.open() # TODO: select view into items items = [] self.run_filter(items) except (error.LoggableError, xmlrpc.ERRORS) as exc: self...
[ "def", "run", "(", "self", ")", ":", "from", "pyrocore", "import", "config", "try", ":", "config", ".", "engine", ".", "open", "(", ")", "# TODO: select view into items", "items", "=", "[", "]", "self", ".", "run_filter", "(", "items", ")", "except", "("...
Filter job callback.
[ "Filter", "job", "callback", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/filter.py#L38-L49
7,375
pyroscope/pyrocore
src/pyrocore/scripts/chtor.py
replace_fields
def replace_fields(meta, patterns): """ Replace patterns in fields. """ for pattern in patterns: try: field, regex, subst, _ = pattern.split(pattern[-1]) # TODO: Allow numerical indices, and "+" for append namespace = meta keypath = [i.replace('\0', '...
python
def replace_fields(meta, patterns): """ Replace patterns in fields. """ for pattern in patterns: try: field, regex, subst, _ = pattern.split(pattern[-1]) # TODO: Allow numerical indices, and "+" for append namespace = meta keypath = [i.replace('\0', '...
[ "def", "replace_fields", "(", "meta", ",", "patterns", ")", ":", "for", "pattern", "in", "patterns", ":", "try", ":", "field", ",", "regex", ",", "subst", ",", "_", "=", "pattern", ".", "split", "(", "pattern", "[", "-", "1", "]", ")", "# TODO: Allow...
Replace patterns in fields.
[ "Replace", "patterns", "in", "fields", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/chtor.py#L34-L51
7,376
pyroscope/pyrocore
src/pyrocore/__init__.py
connect
def connect(config_dir=None, optional_config_files=None, cron_cfg="cron"): """ Initialize everything for interactive use. Returns a ready-to-use RtorrentEngine object. """ from pyrocore.scripts.base import ScriptBase from pyrocore.util import load_config ScriptBase.setup(cron_cfg=cron_cfg)...
python
def connect(config_dir=None, optional_config_files=None, cron_cfg="cron"): """ Initialize everything for interactive use. Returns a ready-to-use RtorrentEngine object. """ from pyrocore.scripts.base import ScriptBase from pyrocore.util import load_config ScriptBase.setup(cron_cfg=cron_cfg)...
[ "def", "connect", "(", "config_dir", "=", "None", ",", "optional_config_files", "=", "None", ",", "cron_cfg", "=", "\"cron\"", ")", ":", "from", "pyrocore", ".", "scripts", ".", "base", "import", "ScriptBase", "from", "pyrocore", ".", "util", "import", "load...
Initialize everything for interactive use. Returns a ready-to-use RtorrentEngine object.
[ "Initialize", "everything", "for", "interactive", "use", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/__init__.py#L23-L36
7,377
pyroscope/pyrocore
src/pyrocore/scripts/base.py
ScriptBase.setup
def setup(cls, cron_cfg="cron"): """ Set up the runtime environment. """ random.seed() logging_cfg = cls.LOGGING_CFG if "%s" in logging_cfg: logging_cfg = logging_cfg % (cron_cfg if "--cron" in sys.argv[1:] else "scripts",) logging_cfg = os.path.expanduser(log...
python
def setup(cls, cron_cfg="cron"): """ Set up the runtime environment. """ random.seed() logging_cfg = cls.LOGGING_CFG if "%s" in logging_cfg: logging_cfg = logging_cfg % (cron_cfg if "--cron" in sys.argv[1:] else "scripts",) logging_cfg = os.path.expanduser(log...
[ "def", "setup", "(", "cls", ",", "cron_cfg", "=", "\"cron\"", ")", ":", "random", ".", "seed", "(", ")", "logging_cfg", "=", "cls", ".", "LOGGING_CFG", "if", "\"%s\"", "in", "logging_cfg", ":", "logging_cfg", "=", "logging_cfg", "%", "(", "cron_cfg", "if...
Set up the runtime environment.
[ "Set", "up", "the", "runtime", "environment", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/base.py#L61-L76
7,378
pyroscope/pyrocore
src/pyrocore/scripts/base.py
ScriptBase._get_pkg_meta
def _get_pkg_meta(self): """ Try to find package metadata. """ logger = logging.getLogger('pyrocore.scripts.base.version_info') pkg_info = None warnings = [] for info_ext, info_name in (('.dist-info', 'METADATA'), ('.egg-info', 'PKG-INFO')): try: ...
python
def _get_pkg_meta(self): """ Try to find package metadata. """ logger = logging.getLogger('pyrocore.scripts.base.version_info') pkg_info = None warnings = [] for info_ext, info_name in (('.dist-info', 'METADATA'), ('.egg-info', 'PKG-INFO')): try: ...
[ "def", "_get_pkg_meta", "(", "self", ")", ":", "logger", "=", "logging", ".", "getLogger", "(", "'pyrocore.scripts.base.version_info'", ")", "pkg_info", "=", "None", "warnings", "=", "[", "]", "for", "info_ext", ",", "info_name", "in", "(", "(", "'.dist-info'"...
Try to find package metadata.
[ "Try", "to", "find", "package", "metadata", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/base.py#L79-L121
7,379
pyroscope/pyrocore
src/pyrocore/scripts/base.py
ScriptBase.add_bool_option
def add_bool_option(self, *args, **kwargs): """ Add a boolean option. @keyword help: Option description. """ dest = [o for o in args if o.startswith("--")][0].replace("--", "").replace("-", "_") self.parser.add_option(dest=dest, action="store_true", default=False, ...
python
def add_bool_option(self, *args, **kwargs): """ Add a boolean option. @keyword help: Option description. """ dest = [o for o in args if o.startswith("--")][0].replace("--", "").replace("-", "_") self.parser.add_option(dest=dest, action="store_true", default=False, ...
[ "def", "add_bool_option", "(", "self", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "dest", "=", "[", "o", "for", "o", "in", "args", "if", "o", ".", "startswith", "(", "\"--\"", ")", "]", "[", "0", "]", ".", "replace", "(", "\"--\"", ",...
Add a boolean option. @keyword help: Option description.
[ "Add", "a", "boolean", "option", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/base.py#L162-L169
7,380
pyroscope/pyrocore
src/pyrocore/scripts/base.py
ScriptBase.add_value_option
def add_value_option(self, *args, **kwargs): """ Add a value option. @keyword dest: Destination attribute, derived from long option name if not given. @keyword action: How to handle the option. @keyword help: Option description. @keyword default: If given, add th...
python
def add_value_option(self, *args, **kwargs): """ Add a value option. @keyword dest: Destination attribute, derived from long option name if not given. @keyword action: How to handle the option. @keyword help: Option description. @keyword default: If given, add th...
[ "def", "add_value_option", "(", "self", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "kwargs", "[", "'metavar'", "]", "=", "args", "[", "-", "1", "]", "if", "'dest'", "not", "in", "kwargs", ":", "kwargs", "[", "'dest'", "]", "=", "[", "o"...
Add a value option. @keyword dest: Destination attribute, derived from long option name if not given. @keyword action: How to handle the option. @keyword help: Option description. @keyword default: If given, add this value to the help string.
[ "Add", "a", "value", "option", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/base.py#L172-L185
7,381
pyroscope/pyrocore
src/pyrocore/scripts/base.py
ScriptBase.handle_completion
def handle_completion(self): """ Handle shell completion stuff. """ # We don't want these in the help, so handle them explicitely if len(sys.argv) > 1 and sys.argv[1].startswith("--help-completion-"): handler = getattr(self, sys.argv[1][2:].replace('-', '_'), None) ...
python
def handle_completion(self): """ Handle shell completion stuff. """ # We don't want these in the help, so handle them explicitely if len(sys.argv) > 1 and sys.argv[1].startswith("--help-completion-"): handler = getattr(self, sys.argv[1][2:].replace('-', '_'), None) ...
[ "def", "handle_completion", "(", "self", ")", ":", "# We don't want these in the help, so handle them explicitely", "if", "len", "(", "sys", ".", "argv", ")", ">", "1", "and", "sys", ".", "argv", "[", "1", "]", ".", "startswith", "(", "\"--help-completion-\"", "...
Handle shell completion stuff.
[ "Handle", "shell", "completion", "stuff", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/base.py#L224-L233
7,382
pyroscope/pyrocore
src/pyrocore/scripts/base.py
ScriptBase.help_completion_options
def help_completion_options(self): """ Return options of this command. """ for opt in self.parser.option_list: for lopt in opt._long_opts: yield lopt
python
def help_completion_options(self): """ Return options of this command. """ for opt in self.parser.option_list: for lopt in opt._long_opts: yield lopt
[ "def", "help_completion_options", "(", "self", ")", ":", "for", "opt", "in", "self", ".", "parser", ".", "option_list", ":", "for", "lopt", "in", "opt", ".", "_long_opts", ":", "yield", "lopt" ]
Return options of this command.
[ "Return", "options", "of", "this", "command", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/base.py#L236-L241
7,383
pyroscope/pyrocore
src/pyrocore/scripts/base.py
ScriptBase.fatal
def fatal(self, msg, exc=None): """ Exit on a fatal error. """ if exc is not None: self.LOG.fatal("%s (%s)" % (msg, exc)) if self.options.debug: return # let the caller re-raise it else: self.LOG.fatal(msg) sys.exit(error.EX_SOF...
python
def fatal(self, msg, exc=None): """ Exit on a fatal error. """ if exc is not None: self.LOG.fatal("%s (%s)" % (msg, exc)) if self.options.debug: return # let the caller re-raise it else: self.LOG.fatal(msg) sys.exit(error.EX_SOF...
[ "def", "fatal", "(", "self", ",", "msg", ",", "exc", "=", "None", ")", ":", "if", "exc", "is", "not", "None", ":", "self", ".", "LOG", ".", "fatal", "(", "\"%s (%s)\"", "%", "(", "msg", ",", "exc", ")", ")", "if", "self", ".", "options", ".", ...
Exit on a fatal error.
[ "Exit", "on", "a", "fatal", "error", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/base.py#L244-L253
7,384
pyroscope/pyrocore
src/pyrocore/scripts/base.py
ScriptBase.run
def run(self): """ The main program skeleton. """ log_total = True try: try: # Preparation steps self.get_options() # Template method with the tool's main loop self.mainloop() except error.LoggableE...
python
def run(self): """ The main program skeleton. """ log_total = True try: try: # Preparation steps self.get_options() # Template method with the tool's main loop self.mainloop() except error.LoggableE...
[ "def", "run", "(", "self", ")", ":", "log_total", "=", "True", "try", ":", "try", ":", "# Preparation steps", "self", ".", "get_options", "(", ")", "# Template method with the tool's main loop", "self", ".", "mainloop", "(", ")", "except", "error", ".", "Logga...
The main program skeleton.
[ "The", "main", "program", "skeleton", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/base.py#L256-L317
7,385
pyroscope/pyrocore
src/pyrocore/scripts/base.py
ScriptBaseWithConfig.add_options
def add_options(self): """ Add configuration options. """ super(ScriptBaseWithConfig, self).add_options() self.add_value_option("--config-dir", "DIR", help="configuration directory [{}]".format(os.environ.get('PYRO_CONFIG_DIR', self.CONFIG_DIR_DEFAULT))) self.add_val...
python
def add_options(self): """ Add configuration options. """ super(ScriptBaseWithConfig, self).add_options() self.add_value_option("--config-dir", "DIR", help="configuration directory [{}]".format(os.environ.get('PYRO_CONFIG_DIR', self.CONFIG_DIR_DEFAULT))) self.add_val...
[ "def", "add_options", "(", "self", ")", ":", "super", "(", "ScriptBaseWithConfig", ",", "self", ")", ".", "add_options", "(", ")", "self", ".", "add_value_option", "(", "\"--config-dir\"", ",", "\"DIR\"", ",", "help", "=", "\"configuration directory [{}]\"", "."...
Add configuration options.
[ "Add", "configuration", "options", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/base.py#L338-L350
7,386
pyroscope/pyrocore
src/pyrocore/scripts/base.py
ScriptBaseWithConfig.check_for_connection
def check_for_connection(self): """ Scan arguments for a `@name` one. """ for idx, arg in enumerate(self.args): if arg.startswith('@'): if arg[1:] not in config.connections: self.parser.error("Undefined connection '{}'!".format(arg[1:])) ...
python
def check_for_connection(self): """ Scan arguments for a `@name` one. """ for idx, arg in enumerate(self.args): if arg.startswith('@'): if arg[1:] not in config.connections: self.parser.error("Undefined connection '{}'!".format(arg[1:])) ...
[ "def", "check_for_connection", "(", "self", ")", ":", "for", "idx", ",", "arg", "in", "enumerate", "(", "self", ".", "args", ")", ":", "if", "arg", ".", "startswith", "(", "'@'", ")", ":", "if", "arg", "[", "1", ":", "]", "not", "in", "config", "...
Scan arguments for a `@name` one.
[ "Scan", "arguments", "for", "a" ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/base.py#L374-L384
7,387
pyroscope/pyrocore
src/pyrocore/scripts/base.py
PromptDecorator.quit
def quit(self): """ Exit the program due to user's choices. """ self.script.LOG.warn("Abort due to user choice!") sys.exit(self.QUIT_RC)
python
def quit(self): """ Exit the program due to user's choices. """ self.script.LOG.warn("Abort due to user choice!") sys.exit(self.QUIT_RC)
[ "def", "quit", "(", "self", ")", ":", "self", ".", "script", ".", "LOG", ".", "warn", "(", "\"Abort due to user choice!\"", ")", "sys", ".", "exit", "(", "self", ".", "QUIT_RC", ")" ]
Exit the program due to user's choices.
[ "Exit", "the", "program", "due", "to", "user", "s", "choices", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/scripts/base.py#L443-L447
7,388
pyroscope/pyrocore
src/pyrocore/daemon/webapp.py
redirect
def redirect(req, _log=pymagic.get_lazy_logger("redirect")): """ Redirect controller to emit a HTTP 301. """ log = req.environ.get("wsgilog.logger", _log) target = req.relative_url(req.urlvars.to) log.info("Redirecting '%s' to '%s'" % (req.url, target)) return exc.HTTPMovedPermanently(location=t...
python
def redirect(req, _log=pymagic.get_lazy_logger("redirect")): """ Redirect controller to emit a HTTP 301. """ log = req.environ.get("wsgilog.logger", _log) target = req.relative_url(req.urlvars.to) log.info("Redirecting '%s' to '%s'" % (req.url, target)) return exc.HTTPMovedPermanently(location=t...
[ "def", "redirect", "(", "req", ",", "_log", "=", "pymagic", ".", "get_lazy_logger", "(", "\"redirect\"", ")", ")", ":", "log", "=", "req", ".", "environ", ".", "get", "(", "\"wsgilog.logger\"", ",", "_log", ")", "target", "=", "req", ".", "relative_url",...
Redirect controller to emit a HTTP 301.
[ "Redirect", "controller", "to", "emit", "a", "HTTP", "301", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/daemon/webapp.py#L228-L234
7,389
pyroscope/pyrocore
src/pyrocore/daemon/webapp.py
make_app
def make_app(httpd_config): """ Factory for the monitoring webapp. """ #mimetypes.add_type('image/vnd.microsoft.icon', '.ico') # Default paths to serve static file from htdocs_paths = [ os.path.realpath(os.path.join(config.config_dir, "htdocs")), os.path.join(os.path.dirname(config....
python
def make_app(httpd_config): """ Factory for the monitoring webapp. """ #mimetypes.add_type('image/vnd.microsoft.icon', '.ico') # Default paths to serve static file from htdocs_paths = [ os.path.realpath(os.path.join(config.config_dir, "htdocs")), os.path.join(os.path.dirname(config....
[ "def", "make_app", "(", "httpd_config", ")", ":", "#mimetypes.add_type('image/vnd.microsoft.icon', '.ico')", "# Default paths to serve static file from", "htdocs_paths", "=", "[", "os", ".", "path", ".", "realpath", "(", "os", ".", "path", ".", "join", "(", "config", ...
Factory for the monitoring webapp.
[ "Factory", "for", "the", "monitoring", "webapp", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/daemon/webapp.py#L237-L253
7,390
pyroscope/pyrocore
src/pyrocore/daemon/webapp.py
JsonController.guarded
def guarded(self, func, *args, **kwargs): """ Call a function, return None on errors. """ try: return func(*args, **kwargs) except (EnvironmentError, error.LoggableError, xmlrpc.ERRORS) as g_exc: if func.__name__ not in self.ERRORS_LOGGED: self.LOG...
python
def guarded(self, func, *args, **kwargs): """ Call a function, return None on errors. """ try: return func(*args, **kwargs) except (EnvironmentError, error.LoggableError, xmlrpc.ERRORS) as g_exc: if func.__name__ not in self.ERRORS_LOGGED: self.LOG...
[ "def", "guarded", "(", "self", ",", "func", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "try", ":", "return", "func", "(", "*", "args", ",", "*", "*", "kwargs", ")", "except", "(", "EnvironmentError", ",", "error", ".", "LoggableError", ",...
Call a function, return None on errors.
[ "Call", "a", "function", "return", "None", "on", "errors", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/daemon/webapp.py#L112-L121
7,391
pyroscope/pyrocore
src/pyrocore/daemon/webapp.py
JsonController.json_engine
def json_engine(self, req): # pylint: disable=R0201,W0613 """ Return torrent engine data. """ try: return stats.engine_data(config.engine) except (error.LoggableError, xmlrpc.ERRORS) as torrent_exc: raise exc.HTTPInternalServerError(str(torrent_exc))
python
def json_engine(self, req): # pylint: disable=R0201,W0613 """ Return torrent engine data. """ try: return stats.engine_data(config.engine) except (error.LoggableError, xmlrpc.ERRORS) as torrent_exc: raise exc.HTTPInternalServerError(str(torrent_exc))
[ "def", "json_engine", "(", "self", ",", "req", ")", ":", "# pylint: disable=R0201,W0613", "try", ":", "return", "stats", ".", "engine_data", "(", "config", ".", "engine", ")", "except", "(", "error", ".", "LoggableError", ",", "xmlrpc", ".", "ERRORS", ")", ...
Return torrent engine data.
[ "Return", "torrent", "engine", "data", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/daemon/webapp.py#L124-L130
7,392
pyroscope/pyrocore
src/pyrocore/daemon/webapp.py
JsonController.json_charts
def json_charts(self, req): """ Return charting data. """ disk_used, disk_total, disk_detail = 0, 0, [] for disk_usage_path in self.cfg.disk_usage_path.split(os.pathsep): disk_usage = self.guarded(psutil.disk_usage, os.path.expanduser(disk_usage_path.strip())) if ...
python
def json_charts(self, req): """ Return charting data. """ disk_used, disk_total, disk_detail = 0, 0, [] for disk_usage_path in self.cfg.disk_usage_path.split(os.pathsep): disk_usage = self.guarded(psutil.disk_usage, os.path.expanduser(disk_usage_path.strip())) if ...
[ "def", "json_charts", "(", "self", ",", "req", ")", ":", "disk_used", ",", "disk_total", ",", "disk_detail", "=", "0", ",", "0", ",", "[", "]", "for", "disk_usage_path", "in", "self", ".", "cfg", ".", "disk_usage_path", ".", "split", "(", "os", ".", ...
Return charting data.
[ "Return", "charting", "data", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/daemon/webapp.py#L133-L155
7,393
pyroscope/pyrocore
src/pyrocore/daemon/webapp.py
Router.parse_route
def parse_route(cls, template): """ Parse a route definition, and return the compiled regex that matches it. """ regex = '' last_pos = 0 for match in cls.ROUTES_RE.finditer(template): regex += re.escape(template[last_pos:match.start()]) var_name = match.g...
python
def parse_route(cls, template): """ Parse a route definition, and return the compiled regex that matches it. """ regex = '' last_pos = 0 for match in cls.ROUTES_RE.finditer(template): regex += re.escape(template[last_pos:match.start()]) var_name = match.g...
[ "def", "parse_route", "(", "cls", ",", "template", ")", ":", "regex", "=", "''", "last_pos", "=", "0", "for", "match", "in", "cls", ".", "ROUTES_RE", ".", "finditer", "(", "template", ")", ":", "regex", "+=", "re", ".", "escape", "(", "template", "["...
Parse a route definition, and return the compiled regex that matches it.
[ "Parse", "a", "route", "definition", "and", "return", "the", "compiled", "regex", "that", "matches", "it", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/daemon/webapp.py#L173-L190
7,394
pyroscope/pyrocore
src/pyrocore/daemon/webapp.py
Router.add_route
def add_route(self, template, controller, **kwargs): """ Add a route definition `controller` can be either a controller instance, or the name of a callable that will be imported. """ if isinstance(controller, basestring): controller = pymagic.import_name(cont...
python
def add_route(self, template, controller, **kwargs): """ Add a route definition `controller` can be either a controller instance, or the name of a callable that will be imported. """ if isinstance(controller, basestring): controller = pymagic.import_name(cont...
[ "def", "add_route", "(", "self", ",", "template", ",", "controller", ",", "*", "*", "kwargs", ")", ":", "if", "isinstance", "(", "controller", ",", "basestring", ")", ":", "controller", "=", "pymagic", ".", "import_name", "(", "controller", ")", "self", ...
Add a route definition `controller` can be either a controller instance, or the name of a callable that will be imported.
[ "Add", "a", "route", "definition" ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/daemon/webapp.py#L198-L209
7,395
pyroscope/pyrocore
src/pyrocore/torrent/engine.py
_duration
def _duration(start, end): """ Return time delta. """ if start and end: if start > end: return None else: return end - start elif start: return time.time() - start else: return None
python
def _duration(start, end): """ Return time delta. """ if start and end: if start > end: return None else: return end - start elif start: return time.time() - start else: return None
[ "def", "_duration", "(", "start", ",", "end", ")", ":", "if", "start", "and", "end", ":", "if", "start", ">", "end", ":", "return", "None", "else", ":", "return", "end", "-", "start", "elif", "start", ":", "return", "time", ".", "time", "(", ")", ...
Return time delta.
[ "Return", "time", "delta", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/engine.py#L53-L64
7,396
pyroscope/pyrocore
src/pyrocore/torrent/engine.py
_fmt_files
def _fmt_files(filelist): """ Produce a file listing. """ depth = max(i.path.count('/') for i in filelist) pad = ['\uFFFE'] * depth base_indent = ' ' * 38 indent = 0 result = [] prev_path = pad sorted_files = sorted((i.path.split('/')[:-1]+pad, i.path.rsplit('/', 1)[-1], i) for i in...
python
def _fmt_files(filelist): """ Produce a file listing. """ depth = max(i.path.count('/') for i in filelist) pad = ['\uFFFE'] * depth base_indent = ' ' * 38 indent = 0 result = [] prev_path = pad sorted_files = sorted((i.path.split('/')[:-1]+pad, i.path.rsplit('/', 1)[-1], i) for i in...
[ "def", "_fmt_files", "(", "filelist", ")", ":", "depth", "=", "max", "(", "i", ".", "path", ".", "count", "(", "'/'", ")", "for", "i", "in", "filelist", ")", "pad", "=", "[", "'\\uFFFE'", "]", "*", "depth", "base_indent", "=", "' '", "*", "38", "...
Produce a file listing.
[ "Produce", "a", "file", "listing", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/engine.py#L142-L190
7,397
pyroscope/pyrocore
src/pyrocore/torrent/engine.py
detect_traits
def detect_traits(item): """ Build traits list from attributes of the passed item. Currently, "kind_51", "name" and "alias" are considered. See pyrocore.util.traits:dectect_traits for more details. """ return traits.detect_traits( name=item.name, alias=item.alias, filetype=(...
python
def detect_traits(item): """ Build traits list from attributes of the passed item. Currently, "kind_51", "name" and "alias" are considered. See pyrocore.util.traits:dectect_traits for more details. """ return traits.detect_traits( name=item.name, alias=item.alias, filetype=(...
[ "def", "detect_traits", "(", "item", ")", ":", "return", "traits", ".", "detect_traits", "(", "name", "=", "item", ".", "name", ",", "alias", "=", "item", ".", "alias", ",", "filetype", "=", "(", "list", "(", "item", ".", "fetch", "(", "\"kind_51\"", ...
Build traits list from attributes of the passed item. Currently, "kind_51", "name" and "alias" are considered. See pyrocore.util.traits:dectect_traits for more details.
[ "Build", "traits", "list", "from", "attributes", "of", "the", "passed", "item", ".", "Currently", "kind_51", "name", "and", "alias", "are", "considered", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/engine.py#L193-L202
7,398
pyroscope/pyrocore
src/pyrocore/torrent/engine.py
TorrentProxy.add_manifold_attribute
def add_manifold_attribute(cls, name): """ Register a manifold engine attribute. @return: field definition object, or None if "name" isn't a manifold attribute. """ if name.startswith("custom_"): try: return FieldDefinition.FIELDS[name] except...
python
def add_manifold_attribute(cls, name): """ Register a manifold engine attribute. @return: field definition object, or None if "name" isn't a manifold attribute. """ if name.startswith("custom_"): try: return FieldDefinition.FIELDS[name] except...
[ "def", "add_manifold_attribute", "(", "cls", ",", "name", ")", ":", "if", "name", ".", "startswith", "(", "\"custom_\"", ")", ":", "try", ":", "return", "FieldDefinition", ".", "FIELDS", "[", "name", "]", "except", "KeyError", ":", "field", "=", "OnDemandF...
Register a manifold engine attribute. @return: field definition object, or None if "name" isn't a manifold attribute.
[ "Register", "a", "manifold", "engine", "attribute", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/engine.py#L304-L331
7,399
pyroscope/pyrocore
src/pyrocore/torrent/engine.py
TorrentProxy.add_custom_fields
def add_custom_fields(cls, *args, **kw): """ Add any custom fields defined in the configuration. """ for factory in config.custom_field_factories: for field in factory(): setattr(cls, field.name, field)
python
def add_custom_fields(cls, *args, **kw): """ Add any custom fields defined in the configuration. """ for factory in config.custom_field_factories: for field in factory(): setattr(cls, field.name, field)
[ "def", "add_custom_fields", "(", "cls", ",", "*", "args", ",", "*", "*", "kw", ")", ":", "for", "factory", "in", "config", ".", "custom_field_factories", ":", "for", "field", "in", "factory", "(", ")", ":", "setattr", "(", "cls", ",", "field", ".", "...
Add any custom fields defined in the configuration.
[ "Add", "any", "custom", "fields", "defined", "in", "the", "configuration", "." ]
89ad01346a570943d20311a0b488440975876612
https://github.com/pyroscope/pyrocore/blob/89ad01346a570943d20311a0b488440975876612/src/pyrocore/torrent/engine.py#L335-L340