partition
stringclasses
3 values
func_name
stringlengths
1
134
docstring
stringlengths
1
46.9k
path
stringlengths
4
223
original_string
stringlengths
75
104k
code
stringlengths
75
104k
docstring_tokens
listlengths
1
1.97k
repo
stringlengths
7
55
language
stringclasses
1 value
url
stringlengths
87
315
code_tokens
listlengths
19
28.4k
sha
stringlengths
40
40
test
Config.write_default_config
Write the default config to the user's config file. :param bool overwrite: Write over an existing config if it exists.
cli_helpers/config.py
def write_default_config(self, overwrite=False): """Write the default config to the user's config file. :param bool overwrite: Write over an existing config if it exists. """ destination = self.user_config_file() if not overwrite and os.path.exists(destination): retu...
def write_default_config(self, overwrite=False): """Write the default config to the user's config file. :param bool overwrite: Write over an existing config if it exists. """ destination = self.user_config_file() if not overwrite and os.path.exists(destination): retu...
[ "Write", "the", "default", "config", "to", "the", "user", "s", "config", "file", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/config.py#L133-L143
[ "def", "write_default_config", "(", "self", ",", "overwrite", "=", "False", ")", ":", "destination", "=", "self", ".", "user_config_file", "(", ")", "if", "not", "overwrite", "and", "os", ".", "path", ".", "exists", "(", "destination", ")", ":", "return", ...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
Config.write
Write the current config to a file (defaults to user config). :param str outfile: The path to the file to write to. :param None/str section: The config section to write, or :data:`None` to write the entire config.
cli_helpers/config.py
def write(self, outfile=None, section=None): """Write the current config to a file (defaults to user config). :param str outfile: The path to the file to write to. :param None/str section: The config section to write, or :data:`None` to write the entire config. ...
def write(self, outfile=None, section=None): """Write the current config to a file (defaults to user config). :param str outfile: The path to the file to write to. :param None/str section: The config section to write, or :data:`None` to write the entire config. ...
[ "Write", "the", "current", "config", "to", "a", "file", "(", "defaults", "to", "user", "config", ")", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/config.py#L145-L153
[ "def", "write", "(", "self", ",", "outfile", "=", "None", ",", "section", "=", "None", ")", ":", "with", "io", ".", "open", "(", "outfile", "or", "self", ".", "user_config_file", "(", ")", ",", "'wb'", ")", "as", "f", ":", "self", ".", "data", "....
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
Config.read_config_file
Read a config file *f*. :param str f: The path to a file to read.
cli_helpers/config.py
def read_config_file(self, f): """Read a config file *f*. :param str f: The path to a file to read. """ configspec = self.default_file if self.validate else None try: config = ConfigObj(infile=f, configspec=configspec, interpolation=Fal...
def read_config_file(self, f): """Read a config file *f*. :param str f: The path to a file to read. """ configspec = self.default_file if self.validate else None try: config = ConfigObj(infile=f, configspec=configspec, interpolation=Fal...
[ "Read", "a", "config", "file", "*", "f", "*", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/config.py#L155-L177
[ "def", "read_config_file", "(", "self", ",", "f", ")", ":", "configspec", "=", "self", ".", "default_file", "if", "self", ".", "validate", "else", "None", "try", ":", "config", "=", "ConfigObj", "(", "infile", "=", "f", ",", "configspec", "=", "configspe...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
Config.read_config_files
Read a list of config files. :param iterable files: An iterable (e.g. list) of files to read.
cli_helpers/config.py
def read_config_files(self, files): """Read a list of config files. :param iterable files: An iterable (e.g. list) of files to read. """ errors = {} for _file in files: config, valid = self.read_config_file(_file) self.update(config) if valid ...
def read_config_files(self, files): """Read a list of config files. :param iterable files: An iterable (e.g. list) of files to read. """ errors = {} for _file in files: config, valid = self.read_config_file(_file) self.update(config) if valid ...
[ "Read", "a", "list", "of", "config", "files", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/config.py#L179-L190
[ "def", "read_config_files", "(", "self", ",", "files", ")", ":", "errors", "=", "{", "}", "for", "_file", "in", "files", ":", "config", ",", "valid", "=", "self", ".", "read_config_file", "(", "_file", ")", "self", ".", "update", "(", "config", ")", ...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
bytes_to_string
Convert bytes *b* to a string. Hexlify bytes that can't be decoded.
cli_helpers/utils.py
def bytes_to_string(b): """Convert bytes *b* to a string. Hexlify bytes that can't be decoded. """ if isinstance(b, binary_type): try: return b.decode('utf8') except UnicodeDecodeError: return '0x' + binascii.hexlify(b).decode('ascii') return b
def bytes_to_string(b): """Convert bytes *b* to a string. Hexlify bytes that can't be decoded. """ if isinstance(b, binary_type): try: return b.decode('utf8') except UnicodeDecodeError: return '0x' + binascii.hexlify(b).decode('ascii') return b
[ "Convert", "bytes", "*", "b", "*", "to", "a", "string", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/utils.py#L10-L21
[ "def", "bytes_to_string", "(", "b", ")", ":", "if", "isinstance", "(", "b", ",", "binary_type", ")", ":", "try", ":", "return", "b", ".", "decode", "(", "'utf8'", ")", "except", "UnicodeDecodeError", ":", "return", "'0x'", "+", "binascii", ".", "hexlify"...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
truncate_string
Truncate string values.
cli_helpers/utils.py
def truncate_string(value, max_width=None): """Truncate string values.""" if isinstance(value, text_type) and max_width is not None and len(value) > max_width: return value[:max_width] return value
def truncate_string(value, max_width=None): """Truncate string values.""" if isinstance(value, text_type) and max_width is not None and len(value) > max_width: return value[:max_width] return value
[ "Truncate", "string", "values", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/utils.py#L32-L36
[ "def", "truncate_string", "(", "value", ",", "max_width", "=", "None", ")", ":", "if", "isinstance", "(", "value", ",", "text_type", ")", "and", "max_width", "is", "not", "None", "and", "len", "(", "value", ")", ">", "max_width", ":", "return", "value", ...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
filter_dict_by_key
Filter the dict *d* to remove keys not in *keys*.
cli_helpers/utils.py
def filter_dict_by_key(d, keys): """Filter the dict *d* to remove keys not in *keys*.""" return {k: v for k, v in d.items() if k in keys}
def filter_dict_by_key(d, keys): """Filter the dict *d* to remove keys not in *keys*.""" return {k: v for k, v in d.items() if k in keys}
[ "Filter", "the", "dict", "*", "d", "*", "to", "remove", "keys", "not", "in", "*", "keys", "*", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/utils.py#L45-L47
[ "def", "filter_dict_by_key", "(", "d", ",", "keys", ")", ":", "return", "{", "k", ":", "v", "for", "k", ",", "v", "in", "d", ".", "items", "(", ")", "if", "k", "in", "keys", "}" ]
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
unique_items
Return the unique items from iterable *seq* (in order).
cli_helpers/utils.py
def unique_items(seq): """Return the unique items from iterable *seq* (in order).""" seen = set() return [x for x in seq if not (x in seen or seen.add(x))]
def unique_items(seq): """Return the unique items from iterable *seq* (in order).""" seen = set() return [x for x in seq if not (x in seen or seen.add(x))]
[ "Return", "the", "unique", "items", "from", "iterable", "*", "seq", "*", "(", "in", "order", ")", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/utils.py#L50-L53
[ "def", "unique_items", "(", "seq", ")", ":", "seen", "=", "set", "(", ")", "return", "[", "x", "for", "x", "in", "seq", "if", "not", "(", "x", "in", "seen", "or", "seen", ".", "add", "(", "x", ")", ")", "]" ]
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
replace
Replace multiple values in a string
cli_helpers/utils.py
def replace(s, replace): """Replace multiple values in a string""" for r in replace: s = s.replace(*r) return s
def replace(s, replace): """Replace multiple values in a string""" for r in replace: s = s.replace(*r) return s
[ "Replace", "multiple", "values", "in", "a", "string" ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/utils.py#L64-L68
[ "def", "replace", "(", "s", ",", "replace", ")", ":", "for", "r", "in", "replace", ":", "s", "=", "s", ".", "replace", "(", "*", "r", ")", "return", "s" ]
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
adapter
Wrap the formatting inside a function for TabularOutputFormatter.
cli_helpers/tabular_output/tsv_output_adapter.py
def adapter(data, headers, **kwargs): """Wrap the formatting inside a function for TabularOutputFormatter.""" for row in chain((headers,), data): yield "\t".join((replace(r, (('\n', r'\n'), ('\t', r'\t'))) for r in row))
def adapter(data, headers, **kwargs): """Wrap the formatting inside a function for TabularOutputFormatter.""" for row in chain((headers,), data): yield "\t".join((replace(r, (('\n', r'\n'), ('\t', r'\t'))) for r in row))
[ "Wrap", "the", "formatting", "inside", "a", "function", "for", "TabularOutputFormatter", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/tabular_output/tsv_output_adapter.py#L13-L16
[ "def", "adapter", "(", "data", ",", "headers", ",", "*", "*", "kwargs", ")", ":", "for", "row", "in", "chain", "(", "(", "headers", ",", ")", ",", "data", ")", ":", "yield", "\"\\t\"", ".", "join", "(", "(", "replace", "(", "r", ",", "(", "(", ...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
BaseCommand.call_and_exit
Run the *cmd* and exit with the proper exit code.
tasks.py
def call_and_exit(self, cmd, shell=True): """Run the *cmd* and exit with the proper exit code.""" sys.exit(subprocess.call(cmd, shell=shell))
def call_and_exit(self, cmd, shell=True): """Run the *cmd* and exit with the proper exit code.""" sys.exit(subprocess.call(cmd, shell=shell))
[ "Run", "the", "*", "cmd", "*", "and", "exit", "with", "the", "proper", "exit", "code", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/tasks.py#L31-L33
[ "def", "call_and_exit", "(", "self", ",", "cmd", ",", "shell", "=", "True", ")", ":", "sys", ".", "exit", "(", "subprocess", ".", "call", "(", "cmd", ",", "shell", "=", "shell", ")", ")" ]
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
BaseCommand.call_in_sequence
Run multiple commmands in a row, exiting if one fails.
tasks.py
def call_in_sequence(self, cmds, shell=True): """Run multiple commmands in a row, exiting if one fails.""" for cmd in cmds: if subprocess.call(cmd, shell=shell) == 1: sys.exit(1)
def call_in_sequence(self, cmds, shell=True): """Run multiple commmands in a row, exiting if one fails.""" for cmd in cmds: if subprocess.call(cmd, shell=shell) == 1: sys.exit(1)
[ "Run", "multiple", "commmands", "in", "a", "row", "exiting", "if", "one", "fails", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/tasks.py#L35-L39
[ "def", "call_in_sequence", "(", "self", ",", "cmds", ",", "shell", "=", "True", ")", ":", "for", "cmd", "in", "cmds", ":", "if", "subprocess", ".", "call", "(", "cmd", ",", "shell", "=", "shell", ")", "==", "1", ":", "sys", ".", "exit", "(", "1",...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
BaseCommand.apply_options
Apply command-line options.
tasks.py
def apply_options(self, cmd, options=()): """Apply command-line options.""" for option in (self.default_cmd_options + options): cmd = self.apply_option(cmd, option, active=getattr(self, option, False)) return cmd
def apply_options(self, cmd, options=()): """Apply command-line options.""" for option in (self.default_cmd_options + options): cmd = self.apply_option(cmd, option, active=getattr(self, option, False)) return cmd
[ "Apply", "command", "-", "line", "options", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/tasks.py#L41-L46
[ "def", "apply_options", "(", "self", ",", "cmd", ",", "options", "=", "(", ")", ")", ":", "for", "option", "in", "(", "self", ".", "default_cmd_options", "+", "options", ")", ":", "cmd", "=", "self", ".", "apply_option", "(", "cmd", ",", "option", ",...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
BaseCommand.apply_option
Apply a command-line option.
tasks.py
def apply_option(self, cmd, option, active=True): """Apply a command-line option.""" return re.sub(r'{{{}\:(?P<option>[^}}]*)}}'.format(option), '\g<option>' if active else '', cmd)
def apply_option(self, cmd, option, active=True): """Apply a command-line option.""" return re.sub(r'{{{}\:(?P<option>[^}}]*)}}'.format(option), '\g<option>' if active else '', cmd)
[ "Apply", "a", "command", "-", "line", "option", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/tasks.py#L48-L51
[ "def", "apply_option", "(", "self", ",", "cmd", ",", "option", ",", "active", "=", "True", ")", ":", "return", "re", ".", "sub", "(", "r'{{{}\\:(?P<option>[^}}]*)}}'", ".", "format", "(", "option", ")", ",", "'\\g<option>'", "if", "active", "else", "''", ...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
lint.initialize_options
Set the default options.
tasks.py
def initialize_options(self): """Set the default options.""" self.branch = 'master' self.fix = False super(lint, self).initialize_options()
def initialize_options(self): """Set the default options.""" self.branch = 'master' self.fix = False super(lint, self).initialize_options()
[ "Set", "the", "default", "options", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/tasks.py#L64-L68
[ "def", "initialize_options", "(", "self", ")", ":", "self", ".", "branch", "=", "'master'", "self", ".", "fix", "=", "False", "super", "(", "lint", ",", "self", ")", ".", "initialize_options", "(", ")" ]
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
lint.run
Run the linter.
tasks.py
def run(self): """Run the linter.""" cmd = 'pep8radius {branch} {{fix: --in-place}}{{verbose: -vv}}' cmd = cmd.format(branch=self.branch) self.call_and_exit(self.apply_options(cmd, ('fix', )))
def run(self): """Run the linter.""" cmd = 'pep8radius {branch} {{fix: --in-place}}{{verbose: -vv}}' cmd = cmd.format(branch=self.branch) self.call_and_exit(self.apply_options(cmd, ('fix', )))
[ "Run", "the", "linter", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/tasks.py#L70-L74
[ "def", "run", "(", "self", ")", ":", "cmd", "=", "'pep8radius {branch} {{fix: --in-place}}{{verbose: -vv}}'", "cmd", "=", "cmd", ".", "format", "(", "branch", "=", "self", ".", "branch", ")", "self", ".", "call_and_exit", "(", "self", ".", "apply_options", "("...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
docs.run
Generate and view the documentation.
tasks.py
def run(self): """Generate and view the documentation.""" cmds = (self.clean_docs_cmd, self.html_docs_cmd, self.view_docs_cmd) self.call_in_sequence(cmds)
def run(self): """Generate and view the documentation.""" cmds = (self.clean_docs_cmd, self.html_docs_cmd, self.view_docs_cmd) self.call_in_sequence(cmds)
[ "Generate", "and", "view", "the", "documentation", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/tasks.py#L119-L122
[ "def", "run", "(", "self", ")", ":", "cmds", "=", "(", "self", ".", "clean_docs_cmd", ",", "self", ".", "html_docs_cmd", ",", "self", ".", "view_docs_cmd", ")", "self", ".", "call_in_sequence", "(", "cmds", ")" ]
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
truncate_string
Truncate very long strings. Only needed for tabular representation, because trying to tabulate very long data is problematic in terms of performance, and does not make any sense visually. :param iterable data: An :term:`iterable` (e.g. list) of rows. :param iterable headers: The column headers. ...
cli_helpers/tabular_output/preprocessors.py
def truncate_string(data, headers, max_field_width=None, **_): """Truncate very long strings. Only needed for tabular representation, because trying to tabulate very long data is problematic in terms of performance, and does not make any sense visually. :param iterable data: An :term:`iterable` (e....
def truncate_string(data, headers, max_field_width=None, **_): """Truncate very long strings. Only needed for tabular representation, because trying to tabulate very long data is problematic in terms of performance, and does not make any sense visually. :param iterable data: An :term:`iterable` (e....
[ "Truncate", "very", "long", "strings", ".", "Only", "needed", "for", "tabular", "representation", "because", "trying", "to", "tabulate", "very", "long", "data", "is", "problematic", "in", "terms", "of", "performance", "and", "does", "not", "make", "any", "sens...
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/tabular_output/preprocessors.py#L11-L24
[ "def", "truncate_string", "(", "data", ",", "headers", ",", "max_field_width", "=", "None", ",", "*", "*", "_", ")", ":", "return", "(", "(", "[", "utils", ".", "truncate_string", "(", "v", ",", "max_field_width", ")", "for", "v", "in", "row", "]", "...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
convert_to_string
Convert all *data* and *headers* to strings. Binary data that cannot be decoded is converted to a hexadecimal representation via :func:`binascii.hexlify`. :param iterable data: An :term:`iterable` (e.g. list) of rows. :param iterable headers: The column headers. :return: The processed data and hea...
cli_helpers/tabular_output/preprocessors.py
def convert_to_string(data, headers, **_): """Convert all *data* and *headers* to strings. Binary data that cannot be decoded is converted to a hexadecimal representation via :func:`binascii.hexlify`. :param iterable data: An :term:`iterable` (e.g. list) of rows. :param iterable headers: The colum...
def convert_to_string(data, headers, **_): """Convert all *data* and *headers* to strings. Binary data that cannot be decoded is converted to a hexadecimal representation via :func:`binascii.hexlify`. :param iterable data: An :term:`iterable` (e.g. list) of rows. :param iterable headers: The colum...
[ "Convert", "all", "*", "data", "*", "and", "*", "headers", "*", "to", "strings", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/tabular_output/preprocessors.py#L27-L40
[ "def", "convert_to_string", "(", "data", ",", "headers", ",", "*", "*", "_", ")", ":", "return", "(", "(", "[", "utils", ".", "to_string", "(", "v", ")", "for", "v", "in", "row", "]", "for", "row", "in", "data", ")", ",", "[", "utils", ".", "to...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
override_missing_value
Override missing values in the *data* with *missing_value*. A missing value is any value that is :data:`None`. :param iterable data: An :term:`iterable` (e.g. list) of rows. :param iterable headers: The column headers. :param missing_value: The default value to use for missing data. :return: The p...
cli_helpers/tabular_output/preprocessors.py
def override_missing_value(data, headers, missing_value='', **_): """Override missing values in the *data* with *missing_value*. A missing value is any value that is :data:`None`. :param iterable data: An :term:`iterable` (e.g. list) of rows. :param iterable headers: The column headers. :param mis...
def override_missing_value(data, headers, missing_value='', **_): """Override missing values in the *data* with *missing_value*. A missing value is any value that is :data:`None`. :param iterable data: An :term:`iterable` (e.g. list) of rows. :param iterable headers: The column headers. :param mis...
[ "Override", "missing", "values", "in", "the", "*", "data", "*", "with", "*", "missing_value", "*", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/tabular_output/preprocessors.py#L43-L56
[ "def", "override_missing_value", "(", "data", ",", "headers", ",", "missing_value", "=", "''", ",", "*", "*", "_", ")", ":", "return", "(", "(", "[", "missing_value", "if", "v", "is", "None", "else", "v", "for", "v", "in", "row", "]", "for", "row", ...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
override_tab_value
Override tab values in the *data* with *new_value*. :param iterable data: An :term:`iterable` (e.g. list) of rows. :param iterable headers: The column headers. :param new_value: The new value to use for tab. :return: The processed data and headers. :rtype: tuple
cli_helpers/tabular_output/preprocessors.py
def override_tab_value(data, headers, new_value=' ', **_): """Override tab values in the *data* with *new_value*. :param iterable data: An :term:`iterable` (e.g. list) of rows. :param iterable headers: The column headers. :param new_value: The new value to use for tab. :return: The processed dat...
def override_tab_value(data, headers, new_value=' ', **_): """Override tab values in the *data* with *new_value*. :param iterable data: An :term:`iterable` (e.g. list) of rows. :param iterable headers: The column headers. :param new_value: The new value to use for tab. :return: The processed dat...
[ "Override", "tab", "values", "in", "the", "*", "data", "*", "with", "*", "new_value", "*", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/tabular_output/preprocessors.py#L59-L71
[ "def", "override_tab_value", "(", "data", ",", "headers", ",", "new_value", "=", "' '", ",", "*", "*", "_", ")", ":", "return", "(", "(", "[", "v", ".", "replace", "(", "'\\t'", ",", "new_value", ")", "if", "isinstance", "(", "v", ",", "text_type"...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
bytes_to_string
Convert all *data* and *headers* bytes to strings. Binary data that cannot be decoded is converted to a hexadecimal representation via :func:`binascii.hexlify`. :param iterable data: An :term:`iterable` (e.g. list) of rows. :param iterable headers: The column headers. :return: The processed data a...
cli_helpers/tabular_output/preprocessors.py
def bytes_to_string(data, headers, **_): """Convert all *data* and *headers* bytes to strings. Binary data that cannot be decoded is converted to a hexadecimal representation via :func:`binascii.hexlify`. :param iterable data: An :term:`iterable` (e.g. list) of rows. :param iterable headers: The c...
def bytes_to_string(data, headers, **_): """Convert all *data* and *headers* bytes to strings. Binary data that cannot be decoded is converted to a hexadecimal representation via :func:`binascii.hexlify`. :param iterable data: An :term:`iterable` (e.g. list) of rows. :param iterable headers: The c...
[ "Convert", "all", "*", "data", "*", "and", "*", "headers", "*", "bytes", "to", "strings", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/tabular_output/preprocessors.py#L74-L87
[ "def", "bytes_to_string", "(", "data", ",", "headers", ",", "*", "*", "_", ")", ":", "return", "(", "(", "[", "utils", ".", "bytes_to_string", "(", "v", ")", "for", "v", "in", "row", "]", "for", "row", "in", "data", ")", ",", "[", "utils", ".", ...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
align_decimals
Align numbers in *data* on their decimal points. Whitespace padding is added before a number so that all numbers in a column are aligned. Outputting data before aligning the decimals:: 1 2.1 10.59 Outputting data after aligning the decimals:: 1 2.1 ...
cli_helpers/tabular_output/preprocessors.py
def align_decimals(data, headers, column_types=(), **_): """Align numbers in *data* on their decimal points. Whitespace padding is added before a number so that all numbers in a column are aligned. Outputting data before aligning the decimals:: 1 2.1 10.59 Outputting data...
def align_decimals(data, headers, column_types=(), **_): """Align numbers in *data* on their decimal points. Whitespace padding is added before a number so that all numbers in a column are aligned. Outputting data before aligning the decimals:: 1 2.1 10.59 Outputting data...
[ "Align", "numbers", "in", "*", "data", "*", "on", "their", "decimal", "points", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/tabular_output/preprocessors.py#L90-L134
[ "def", "align_decimals", "(", "data", ",", "headers", ",", "column_types", "=", "(", ")", ",", "*", "*", "_", ")", ":", "pointpos", "=", "len", "(", "headers", ")", "*", "[", "0", "]", "data", "=", "list", "(", "data", ")", "for", "row", "in", ...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
quote_whitespaces
Quote leading/trailing whitespace in *data*. When outputing data with leading or trailing whitespace, it can be useful to put quotation marks around the value so the whitespace is more apparent. If one value in a column needs quoted, then all values in that column are quoted to keep things consistent. ...
cli_helpers/tabular_output/preprocessors.py
def quote_whitespaces(data, headers, quotestyle="'", **_): """Quote leading/trailing whitespace in *data*. When outputing data with leading or trailing whitespace, it can be useful to put quotation marks around the value so the whitespace is more apparent. If one value in a column needs quoted, then al...
def quote_whitespaces(data, headers, quotestyle="'", **_): """Quote leading/trailing whitespace in *data*. When outputing data with leading or trailing whitespace, it can be useful to put quotation marks around the value so the whitespace is more apparent. If one value in a column needs quoted, then al...
[ "Quote", "leading", "/", "trailing", "whitespace", "in", "*", "data", "*", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/tabular_output/preprocessors.py#L137-L173
[ "def", "quote_whitespaces", "(", "data", ",", "headers", ",", "quotestyle", "=", "\"'\"", ",", "*", "*", "_", ")", ":", "whitespace", "=", "tuple", "(", "string", ".", "whitespace", ")", "quote", "=", "len", "(", "headers", ")", "*", "[", "False", "]...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
style_output
Style the *data* and *headers* (e.g. bold, italic, and colors) .. NOTE:: This requires the `Pygments <http://pygments.org/>`_ library to be installed. You can install it with CLI Helpers as an extra:: $ pip install cli_helpers[styles] Example usage:: from cli_helpers.tabul...
cli_helpers/tabular_output/preprocessors.py
def style_output(data, headers, style=None, header_token='Token.Output.Header', odd_row_token='Token.Output.OddRow', even_row_token='Token.Output.EvenRow', **_): """Style the *data* and *headers* (e.g. bold, italic, and colors) .. NOTE:: This requires ...
def style_output(data, headers, style=None, header_token='Token.Output.Header', odd_row_token='Token.Output.OddRow', even_row_token='Token.Output.EvenRow', **_): """Style the *data* and *headers* (e.g. bold, italic, and colors) .. NOTE:: This requires ...
[ "Style", "the", "*", "data", "*", "and", "*", "headers", "*", "(", "e", ".", "g", ".", "bold", "italic", "and", "colors", ")" ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/tabular_output/preprocessors.py#L176-L230
[ "def", "style_output", "(", "data", ",", "headers", ",", "style", "=", "None", ",", "header_token", "=", "'Token.Output.Header'", ",", "odd_row_token", "=", "'Token.Output.OddRow'", ",", "even_row_token", "=", "'Token.Output.EvenRow'", ",", "*", "*", "_", ")", "...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
format_numbers
Format numbers according to a format specification. This uses Python's format specification to format numbers of the following types: :class:`int`, :class:`py2:long` (Python 2), :class:`float`, and :class:`~decimal.Decimal`. See the :ref:`python:formatspec` for more information about the format strings...
cli_helpers/tabular_output/preprocessors.py
def format_numbers(data, headers, column_types=(), integer_format=None, float_format=None, **_): """Format numbers according to a format specification. This uses Python's format specification to format numbers of the following types: :class:`int`, :class:`py2:long` (Python 2), :class:`fl...
def format_numbers(data, headers, column_types=(), integer_format=None, float_format=None, **_): """Format numbers according to a format specification. This uses Python's format specification to format numbers of the following types: :class:`int`, :class:`py2:long` (Python 2), :class:`fl...
[ "Format", "numbers", "according", "to", "a", "format", "specification", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/tabular_output/preprocessors.py#L233-L266
[ "def", "format_numbers", "(", "data", ",", "headers", ",", "column_types", "=", "(", ")", ",", "integer_format", "=", "None", ",", "float_format", "=", "None", ",", "*", "*", "_", ")", ":", "if", "(", "integer_format", "is", "None", "and", "float_format"...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
_get_separator
Get a row separator for row *num*.
cli_helpers/tabular_output/vertical_table_adapter.py
def _get_separator(num, sep_title, sep_character, sep_length): """Get a row separator for row *num*.""" left_divider_length = right_divider_length = sep_length if isinstance(sep_length, tuple): left_divider_length, right_divider_length = sep_length left_divider = sep_character * left_divider_len...
def _get_separator(num, sep_title, sep_character, sep_length): """Get a row separator for row *num*.""" left_divider_length = right_divider_length = sep_length if isinstance(sep_length, tuple): left_divider_length, right_divider_length = sep_length left_divider = sep_character * left_divider_len...
[ "Get", "a", "row", "separator", "for", "row", "*", "num", "*", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/tabular_output/vertical_table_adapter.py#L14-L24
[ "def", "_get_separator", "(", "num", ",", "sep_title", ",", "sep_character", ",", "sep_length", ")", ":", "left_divider_length", "=", "right_divider_length", "=", "sep_length", "if", "isinstance", "(", "sep_length", ",", "tuple", ")", ":", "left_divider_length", "...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
_format_row
Format a row.
cli_helpers/tabular_output/vertical_table_adapter.py
def _format_row(headers, row): """Format a row.""" formatted_row = [' | '.join(field) for field in zip(headers, row)] return '\n'.join(formatted_row)
def _format_row(headers, row): """Format a row.""" formatted_row = [' | '.join(field) for field in zip(headers, row)] return '\n'.join(formatted_row)
[ "Format", "a", "row", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/tabular_output/vertical_table_adapter.py#L27-L30
[ "def", "_format_row", "(", "headers", ",", "row", ")", ":", "formatted_row", "=", "[", "' | '", ".", "join", "(", "field", ")", "for", "field", "in", "zip", "(", "headers", ",", "row", ")", "]", "return", "'\\n'", ".", "join", "(", "formatted_row", "...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
vertical_table
Format *data* and *headers* as an vertical table. The values in *data* and *headers* must be strings. :param iterable data: An :term:`iterable` (e.g. list) of rows. :param iterable headers: The column headers. :param str sep_title: The title given to each row separator. Defaults to ...
cli_helpers/tabular_output/vertical_table_adapter.py
def vertical_table(data, headers, sep_title='{n}. row', sep_character='*', sep_length=27): """Format *data* and *headers* as an vertical table. The values in *data* and *headers* must be strings. :param iterable data: An :term:`iterable` (e.g. list) of rows. :param iterable headers:...
def vertical_table(data, headers, sep_title='{n}. row', sep_character='*', sep_length=27): """Format *data* and *headers* as an vertical table. The values in *data* and *headers* must be strings. :param iterable data: An :term:`iterable` (e.g. list) of rows. :param iterable headers:...
[ "Format", "*", "data", "*", "and", "*", "headers", "*", "as", "an", "vertical", "table", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/tabular_output/vertical_table_adapter.py#L33-L60
[ "def", "vertical_table", "(", "data", ",", "headers", ",", "sep_title", "=", "'{n}. row'", ",", "sep_character", "=", "'*'", ",", "sep_length", "=", "27", ")", ":", "header_len", "=", "max", "(", "[", "len", "(", "x", ")", "for", "x", "in", "headers", ...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
adapter
Wrap vertical table in a function for TabularOutputFormatter.
cli_helpers/tabular_output/vertical_table_adapter.py
def adapter(data, headers, **kwargs): """Wrap vertical table in a function for TabularOutputFormatter.""" keys = ('sep_title', 'sep_character', 'sep_length') return vertical_table(data, headers, **filter_dict_by_key(kwargs, keys))
def adapter(data, headers, **kwargs): """Wrap vertical table in a function for TabularOutputFormatter.""" keys = ('sep_title', 'sep_character', 'sep_length') return vertical_table(data, headers, **filter_dict_by_key(kwargs, keys))
[ "Wrap", "vertical", "table", "in", "a", "function", "for", "TabularOutputFormatter", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/tabular_output/vertical_table_adapter.py#L63-L66
[ "def", "adapter", "(", "data", ",", "headers", ",", "*", "*", "kwargs", ")", ":", "keys", "=", "(", "'sep_title'", ",", "'sep_character'", ",", "'sep_length'", ")", "return", "vertical_table", "(", "data", ",", "headers", ",", "*", "*", "filter_dict_by_key...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
adapter
Wrap the formatting inside a function for TabularOutputFormatter.
cli_helpers/tabular_output/delimited_output_adapter.py
def adapter(data, headers, table_format='csv', **kwargs): """Wrap the formatting inside a function for TabularOutputFormatter.""" keys = ('dialect', 'delimiter', 'doublequote', 'escapechar', 'quotechar', 'quoting', 'skipinitialspace', 'strict') if table_format == 'csv': delimiter = ',' ...
def adapter(data, headers, table_format='csv', **kwargs): """Wrap the formatting inside a function for TabularOutputFormatter.""" keys = ('dialect', 'delimiter', 'doublequote', 'escapechar', 'quotechar', 'quoting', 'skipinitialspace', 'strict') if table_format == 'csv': delimiter = ',' ...
[ "Wrap", "the", "formatting", "inside", "a", "function", "for", "TabularOutputFormatter", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/tabular_output/delimited_output_adapter.py#L26-L48
[ "def", "adapter", "(", "data", ",", "headers", ",", "table_format", "=", "'csv'", ",", "*", "*", "kwargs", ")", ":", "keys", "=", "(", "'dialect'", ",", "'delimiter'", ",", "'doublequote'", ",", "'escapechar'", ",", "'quotechar'", ",", "'quoting'", ",", ...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
adapter
Wrap terminaltables inside a function for TabularOutputFormatter.
cli_helpers/tabular_output/terminaltables_adapter.py
def adapter(data, headers, table_format=None, **kwargs): """Wrap terminaltables inside a function for TabularOutputFormatter.""" keys = ('title', ) table = table_format_handler[table_format] t = table([headers] + list(data), **filter_dict_by_key(kwargs, keys)) dimensions = terminaltables.width_an...
def adapter(data, headers, table_format=None, **kwargs): """Wrap terminaltables inside a function for TabularOutputFormatter.""" keys = ('title', ) table = table_format_handler[table_format] t = table([headers] + list(data), **filter_dict_by_key(kwargs, keys)) dimensions = terminaltables.width_an...
[ "Wrap", "terminaltables", "inside", "a", "function", "for", "TabularOutputFormatter", "." ]
dbcli/cli_helpers
python
https://github.com/dbcli/cli_helpers/blob/3ebd891ac0c02bad061182dbcb54a47fb21980ae/cli_helpers/tabular_output/terminaltables_adapter.py#L83-L96
[ "def", "adapter", "(", "data", ",", "headers", ",", "table_format", "=", "None", ",", "*", "*", "kwargs", ")", ":", "keys", "=", "(", "'title'", ",", ")", "table", "=", "table_format_handler", "[", "table_format", "]", "t", "=", "table", "(", "[", "h...
3ebd891ac0c02bad061182dbcb54a47fb21980ae
test
render_template
Copy template and substitute template strings File `template_file` is copied to `dst_file`. Then, each template variable is replaced by a value. Template variables are of the form {{val}} Example: Contents of template_file: VAR1={{val1}} VAR2={{val2}} VAR3={{val3}} ...
nltools/misc.py
def render_template(template_file, dst_file, **kwargs): """Copy template and substitute template strings File `template_file` is copied to `dst_file`. Then, each template variable is replaced by a value. Template variables are of the form {{val}} Example: Contents of template_file: ...
def render_template(template_file, dst_file, **kwargs): """Copy template and substitute template strings File `template_file` is copied to `dst_file`. Then, each template variable is replaced by a value. Template variables are of the form {{val}} Example: Contents of template_file: ...
[ "Copy", "template", "and", "substitute", "template", "strings" ]
gooofy/py-nltools
python
https://github.com/gooofy/py-nltools/blob/26b990e816fe840dfc69a4dfee01354201b921be/nltools/misc.py#L273-L311
[ "def", "render_template", "(", "template_file", ",", "dst_file", ",", "*", "*", "kwargs", ")", ":", "with", "open", "(", "template_file", ")", "as", "f", ":", "template_text", "=", "f", ".", "read", "(", ")", "dst_text", "=", "template_text", "for", "key...
26b990e816fe840dfc69a4dfee01354201b921be
test
CK_OBJECT_HANDLE.to_dict
convert the fields of the object into a dictionnary
PyKCS11/__init__.py
def to_dict(self): """ convert the fields of the object into a dictionnary """ # all the attibutes defined by PKCS#11 all_attributes = PyKCS11.CKA.keys() # only use the integer values and not the strings like 'CKM_RSA_PKCS' all_attributes = [attr for attr in all_...
def to_dict(self): """ convert the fields of the object into a dictionnary """ # all the attibutes defined by PKCS#11 all_attributes = PyKCS11.CKA.keys() # only use the integer values and not the strings like 'CKM_RSA_PKCS' all_attributes = [attr for attr in all_...
[ "convert", "the", "fields", "of", "the", "object", "into", "a", "dictionnary" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L129-L155
[ "def", "to_dict", "(", "self", ")", ":", "# all the attibutes defined by PKCS#11", "all_attributes", "=", "PyKCS11", ".", "CKA", ".", "keys", "(", ")", "# only use the integer values and not the strings like 'CKM_RSA_PKCS'", "all_attributes", "=", "[", "attr", "for", "att...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
CkClass.flags2text
parse the `self.flags` field and create a list of `CKF_*` strings corresponding to bits set in flags :return: a list of strings :rtype: list
PyKCS11/__init__.py
def flags2text(self): """ parse the `self.flags` field and create a list of `CKF_*` strings corresponding to bits set in flags :return: a list of strings :rtype: list """ r = [] for v in self.flags_dict.keys(): if self.flags & v: ...
def flags2text(self): """ parse the `self.flags` field and create a list of `CKF_*` strings corresponding to bits set in flags :return: a list of strings :rtype: list """ r = [] for v in self.flags_dict.keys(): if self.flags & v: ...
[ "parse", "the", "self", ".", "flags", "field", "and", "create", "a", "list", "of", "CKF_", "*", "strings", "corresponding", "to", "bits", "set", "in", "flags" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L182-L194
[ "def", "flags2text", "(", "self", ")", ":", "r", "=", "[", "]", "for", "v", "in", "self", ".", "flags_dict", ".", "keys", "(", ")", ":", "if", "self", ".", "flags", "&", "v", ":", "r", ".", "append", "(", "self", ".", "flags_dict", "[", "v", ...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
CkClass.to_dict
convert the fields of the object into a dictionnary
PyKCS11/__init__.py
def to_dict(self): """ convert the fields of the object into a dictionnary """ dico = dict() for field in self.fields.keys(): if field == "flags": dico[field] = self.flags2text() elif field == "state": dico[field] = self.sta...
def to_dict(self): """ convert the fields of the object into a dictionnary """ dico = dict() for field in self.fields.keys(): if field == "flags": dico[field] = self.flags2text() elif field == "state": dico[field] = self.sta...
[ "convert", "the", "fields", "of", "the", "object", "into", "a", "dictionnary" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L196-L208
[ "def", "to_dict", "(", "self", ")", ":", "dico", "=", "dict", "(", ")", "for", "field", "in", "self", ".", "fields", ".", "keys", "(", ")", ":", "if", "field", "==", "\"flags\"", ":", "dico", "[", "field", "]", "=", "self", ".", "flags2text", "("...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
PyKCS11Lib.load
load a PKCS#11 library :type pkcs11dll_filename: string :param pkcs11dll_filename: the library name. If this parameter is not set then the environment variable `PYKCS11LIB` is used instead :returns: a :class:`PyKCS11Lib` object :raises: :class:`PyKCS11Error` (-1): wh...
PyKCS11/__init__.py
def load(self, pkcs11dll_filename=None, *init_string): """ load a PKCS#11 library :type pkcs11dll_filename: string :param pkcs11dll_filename: the library name. If this parameter is not set then the environment variable `PYKCS11LIB` is used instead :returns: a...
def load(self, pkcs11dll_filename=None, *init_string): """ load a PKCS#11 library :type pkcs11dll_filename: string :param pkcs11dll_filename: the library name. If this parameter is not set then the environment variable `PYKCS11LIB` is used instead :returns: a...
[ "load", "a", "PKCS#11", "library" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L466-L483
[ "def", "load", "(", "self", ",", "pkcs11dll_filename", "=", "None", ",", "*", "init_string", ")", ":", "if", "pkcs11dll_filename", "is", "None", ":", "pkcs11dll_filename", "=", "os", ".", "getenv", "(", "\"PYKCS11LIB\"", ")", "if", "pkcs11dll_filename", "is", ...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
PyKCS11Lib.initToken
C_InitToken :param slot: slot number returned by :func:`getSlotList` :type slot: integer :param pin: Security Officer's initial PIN :param label: new label of the token
PyKCS11/__init__.py
def initToken(self, slot, pin, label): """ C_InitToken :param slot: slot number returned by :func:`getSlotList` :type slot: integer :param pin: Security Officer's initial PIN :param label: new label of the token """ pin1 = ckbytelist(pin) rv = sel...
def initToken(self, slot, pin, label): """ C_InitToken :param slot: slot number returned by :func:`getSlotList` :type slot: integer :param pin: Security Officer's initial PIN :param label: new label of the token """ pin1 = ckbytelist(pin) rv = sel...
[ "C_InitToken" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L485-L497
[ "def", "initToken", "(", "self", ",", "slot", ",", "pin", ",", "label", ")", ":", "pin1", "=", "ckbytelist", "(", "pin", ")", "rv", "=", "self", ".", "lib", ".", "C_InitToken", "(", "slot", ",", "pin1", ",", "label", ")", "if", "rv", "!=", "CKR_O...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
PyKCS11Lib.getInfo
C_GetInfo :return: a :class:`CK_INFO` object
PyKCS11/__init__.py
def getInfo(self): """ C_GetInfo :return: a :class:`CK_INFO` object """ info = PyKCS11.LowLevel.CK_INFO() rv = self.lib.C_GetInfo(info) if rv != CKR_OK: raise PyKCS11Error(rv) i = CK_INFO() i.cryptokiVersion = (info.cryptokiVersion.ma...
def getInfo(self): """ C_GetInfo :return: a :class:`CK_INFO` object """ info = PyKCS11.LowLevel.CK_INFO() rv = self.lib.C_GetInfo(info) if rv != CKR_OK: raise PyKCS11Error(rv) i = CK_INFO() i.cryptokiVersion = (info.cryptokiVersion.ma...
[ "C_GetInfo" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L499-L518
[ "def", "getInfo", "(", "self", ")", ":", "info", "=", "PyKCS11", ".", "LowLevel", ".", "CK_INFO", "(", ")", "rv", "=", "self", ".", "lib", ".", "C_GetInfo", "(", "info", ")", "if", "rv", "!=", "CKR_OK", ":", "raise", "PyKCS11Error", "(", "rv", ")",...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
PyKCS11Lib.getSlotList
C_GetSlotList :param tokenPresent: `False` (default) to list all slots, `True` to list only slots with present tokens :type tokenPresent: bool :return: a list of available slots :rtype: list
PyKCS11/__init__.py
def getSlotList(self, tokenPresent=False): """ C_GetSlotList :param tokenPresent: `False` (default) to list all slots, `True` to list only slots with present tokens :type tokenPresent: bool :return: a list of available slots :rtype: list """ slo...
def getSlotList(self, tokenPresent=False): """ C_GetSlotList :param tokenPresent: `False` (default) to list all slots, `True` to list only slots with present tokens :type tokenPresent: bool :return: a list of available slots :rtype: list """ slo...
[ "C_GetSlotList" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L520-L539
[ "def", "getSlotList", "(", "self", ",", "tokenPresent", "=", "False", ")", ":", "slotList", "=", "PyKCS11", ".", "LowLevel", ".", "ckintlist", "(", ")", "rv", "=", "self", ".", "lib", ".", "C_GetSlotList", "(", "CK_TRUE", "if", "tokenPresent", "else", "C...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
PyKCS11Lib.getSlotInfo
C_GetSlotInfo :param slot: slot number returned by :func:`getSlotList` :type slot: integer :return: a :class:`CK_SLOT_INFO` object
PyKCS11/__init__.py
def getSlotInfo(self, slot): """ C_GetSlotInfo :param slot: slot number returned by :func:`getSlotList` :type slot: integer :return: a :class:`CK_SLOT_INFO` object """ slotInfo = PyKCS11.LowLevel.CK_SLOT_INFO() rv = self.lib.C_GetSlotInfo(slot, slotInfo) ...
def getSlotInfo(self, slot): """ C_GetSlotInfo :param slot: slot number returned by :func:`getSlotList` :type slot: integer :return: a :class:`CK_SLOT_INFO` object """ slotInfo = PyKCS11.LowLevel.CK_SLOT_INFO() rv = self.lib.C_GetSlotInfo(slot, slotInfo) ...
[ "C_GetSlotInfo" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L541-L561
[ "def", "getSlotInfo", "(", "self", ",", "slot", ")", ":", "slotInfo", "=", "PyKCS11", ".", "LowLevel", ".", "CK_SLOT_INFO", "(", ")", "rv", "=", "self", ".", "lib", ".", "C_GetSlotInfo", "(", "slot", ",", "slotInfo", ")", "if", "rv", "!=", "CKR_OK", ...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
PyKCS11Lib.getTokenInfo
C_GetTokenInfo :param slot: slot number returned by :func:`getSlotList` :type slot: integer :return: a :class:`CK_TOKEN_INFO` object
PyKCS11/__init__.py
def getTokenInfo(self, slot): """ C_GetTokenInfo :param slot: slot number returned by :func:`getSlotList` :type slot: integer :return: a :class:`CK_TOKEN_INFO` object """ tokeninfo = PyKCS11.LowLevel.CK_TOKEN_INFO() rv = self.lib.C_GetTokenInfo(slot, toke...
def getTokenInfo(self, slot): """ C_GetTokenInfo :param slot: slot number returned by :func:`getSlotList` :type slot: integer :return: a :class:`CK_TOKEN_INFO` object """ tokeninfo = PyKCS11.LowLevel.CK_TOKEN_INFO() rv = self.lib.C_GetTokenInfo(slot, toke...
[ "C_GetTokenInfo" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L563-L615
[ "def", "getTokenInfo", "(", "self", ",", "slot", ")", ":", "tokeninfo", "=", "PyKCS11", ".", "LowLevel", ".", "CK_TOKEN_INFO", "(", ")", "rv", "=", "self", ".", "lib", ".", "C_GetTokenInfo", "(", "slot", ",", "tokeninfo", ")", "if", "rv", "!=", "CKR_OK...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
PyKCS11Lib.openSession
C_OpenSession :param slot: slot number returned by :func:`getSlotList` :type slot: integer :param flags: 0 (default), `CKF_RW_SESSION` for RW session :type flags: integer :return: a :class:`Session` object
PyKCS11/__init__.py
def openSession(self, slot, flags=0): """ C_OpenSession :param slot: slot number returned by :func:`getSlotList` :type slot: integer :param flags: 0 (default), `CKF_RW_SESSION` for RW session :type flags: integer :return: a :class:`Session` object """ ...
def openSession(self, slot, flags=0): """ C_OpenSession :param slot: slot number returned by :func:`getSlotList` :type slot: integer :param flags: 0 (default), `CKF_RW_SESSION` for RW session :type flags: integer :return: a :class:`Session` object """ ...
[ "C_OpenSession" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L617-L633
[ "def", "openSession", "(", "self", ",", "slot", ",", "flags", "=", "0", ")", ":", "se", "=", "PyKCS11", ".", "LowLevel", ".", "CK_SESSION_HANDLE", "(", ")", "flags", "|=", "CKF_SERIAL_SESSION", "rv", "=", "self", ".", "lib", ".", "C_OpenSession", "(", ...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
PyKCS11Lib.closeAllSessions
C_CloseAllSessions :param slot: slot number :type slot: integer
PyKCS11/__init__.py
def closeAllSessions(self, slot): """ C_CloseAllSessions :param slot: slot number :type slot: integer """ rv = self.lib.C_CloseAllSessions(slot) if rv != CKR_OK: raise PyKCS11Error(rv)
def closeAllSessions(self, slot): """ C_CloseAllSessions :param slot: slot number :type slot: integer """ rv = self.lib.C_CloseAllSessions(slot) if rv != CKR_OK: raise PyKCS11Error(rv)
[ "C_CloseAllSessions" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L635-L644
[ "def", "closeAllSessions", "(", "self", ",", "slot", ")", ":", "rv", "=", "self", ".", "lib", ".", "C_CloseAllSessions", "(", "slot", ")", "if", "rv", "!=", "CKR_OK", ":", "raise", "PyKCS11Error", "(", "rv", ")" ]
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
PyKCS11Lib.getMechanismList
C_GetMechanismList :param slot: slot number returned by :func:`getSlotList` :type slot: integer :return: the list of available mechanisms for a slot :rtype: list
PyKCS11/__init__.py
def getMechanismList(self, slot): """ C_GetMechanismList :param slot: slot number returned by :func:`getSlotList` :type slot: integer :return: the list of available mechanisms for a slot :rtype: list """ mechanismList = PyKCS11.LowLevel.ckintlist() ...
def getMechanismList(self, slot): """ C_GetMechanismList :param slot: slot number returned by :func:`getSlotList` :type slot: integer :return: the list of available mechanisms for a slot :rtype: list """ mechanismList = PyKCS11.LowLevel.ckintlist() ...
[ "C_GetMechanismList" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L646-L668
[ "def", "getMechanismList", "(", "self", ",", "slot", ")", ":", "mechanismList", "=", "PyKCS11", ".", "LowLevel", ".", "ckintlist", "(", ")", "rv", "=", "self", ".", "lib", ".", "C_GetMechanismList", "(", "slot", ",", "mechanismList", ")", "if", "rv", "!=...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
PyKCS11Lib.getMechanismInfo
C_GetMechanismInfo :param slot: slot number returned by :func:`getSlotList` :type slot: integer :param type: a `CKM_*` type :type type: integer :return: information about a mechanism :rtype: a :class:`CK_MECHANISM_INFO` object
PyKCS11/__init__.py
def getMechanismInfo(self, slot, type): """ C_GetMechanismInfo :param slot: slot number returned by :func:`getSlotList` :type slot: integer :param type: a `CKM_*` type :type type: integer :return: information about a mechanism :rtype: a :class:`CK_MECHANI...
def getMechanismInfo(self, slot, type): """ C_GetMechanismInfo :param slot: slot number returned by :func:`getSlotList` :type slot: integer :param type: a `CKM_*` type :type type: integer :return: information about a mechanism :rtype: a :class:`CK_MECHANI...
[ "C_GetMechanismInfo" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L670-L691
[ "def", "getMechanismInfo", "(", "self", ",", "slot", ",", "type", ")", ":", "info", "=", "PyKCS11", ".", "LowLevel", ".", "CK_MECHANISM_INFO", "(", ")", "rv", "=", "self", ".", "lib", ".", "C_GetMechanismInfo", "(", "slot", ",", "CKM", "[", "type", "]"...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
PyKCS11Lib.waitForSlotEvent
C_WaitForSlotEvent :param flags: 0 (default) or `CKF_DONT_BLOCK` :type flags: integer :return: slot :rtype: integer
PyKCS11/__init__.py
def waitForSlotEvent(self, flags=0): """ C_WaitForSlotEvent :param flags: 0 (default) or `CKF_DONT_BLOCK` :type flags: integer :return: slot :rtype: integer """ tmp = 0 (rv, slot) = self.lib.C_WaitForSlotEvent(flags, tmp) if rv != CKR_OK: ...
def waitForSlotEvent(self, flags=0): """ C_WaitForSlotEvent :param flags: 0 (default) or `CKF_DONT_BLOCK` :type flags: integer :return: slot :rtype: integer """ tmp = 0 (rv, slot) = self.lib.C_WaitForSlotEvent(flags, tmp) if rv != CKR_OK: ...
[ "C_WaitForSlotEvent" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L693-L707
[ "def", "waitForSlotEvent", "(", "self", ",", "flags", "=", "0", ")", ":", "tmp", "=", "0", "(", "rv", ",", "slot", ")", "=", "self", ".", "lib", ".", "C_WaitForSlotEvent", "(", "flags", ",", "tmp", ")", "if", "rv", "!=", "CKR_OK", ":", "raise", "...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
DigestSession.update
C_DigestUpdate :param data: data to add to the digest :type data: bytes or string
PyKCS11/__init__.py
def update(self, data): """ C_DigestUpdate :param data: data to add to the digest :type data: bytes or string """ data1 = ckbytelist(data) rv = self._lib.C_DigestUpdate(self._session, data1) if rv != CKR_OK: raise PyKCS11Error(rv) retu...
def update(self, data): """ C_DigestUpdate :param data: data to add to the digest :type data: bytes or string """ data1 = ckbytelist(data) rv = self._lib.C_DigestUpdate(self._session, data1) if rv != CKR_OK: raise PyKCS11Error(rv) retu...
[ "C_DigestUpdate" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L807-L818
[ "def", "update", "(", "self", ",", "data", ")", ":", "data1", "=", "ckbytelist", "(", "data", ")", "rv", "=", "self", ".", "_lib", ".", "C_DigestUpdate", "(", "self", ".", "_session", ",", "data1", ")", "if", "rv", "!=", "CKR_OK", ":", "raise", "Py...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
DigestSession.digestKey
C_DigestKey :param handle: key handle :type handle: CK_OBJECT_HANDLE
PyKCS11/__init__.py
def digestKey(self, handle): """ C_DigestKey :param handle: key handle :type handle: CK_OBJECT_HANDLE """ rv = self._lib.C_DigestKey(self._session, handle) if rv != CKR_OK: raise PyKCS11Error(rv) return self
def digestKey(self, handle): """ C_DigestKey :param handle: key handle :type handle: CK_OBJECT_HANDLE """ rv = self._lib.C_DigestKey(self._session, handle) if rv != CKR_OK: raise PyKCS11Error(rv) return self
[ "C_DigestKey" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L820-L830
[ "def", "digestKey", "(", "self", ",", "handle", ")", ":", "rv", "=", "self", ".", "_lib", ".", "C_DigestKey", "(", "self", ".", "_session", ",", "handle", ")", "if", "rv", "!=", "CKR_OK", ":", "raise", "PyKCS11Error", "(", "rv", ")", "return", "self"...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
DigestSession.final
C_DigestFinal :return: the digest :rtype: ckbytelist
PyKCS11/__init__.py
def final(self): """ C_DigestFinal :return: the digest :rtype: ckbytelist """ digest = ckbytelist() # Get the size of the digest rv = self._lib.C_DigestFinal(self._session, digest) if rv != CKR_OK: raise PyKCS11Error(rv) # Get ...
def final(self): """ C_DigestFinal :return: the digest :rtype: ckbytelist """ digest = ckbytelist() # Get the size of the digest rv = self._lib.C_DigestFinal(self._session, digest) if rv != CKR_OK: raise PyKCS11Error(rv) # Get ...
[ "C_DigestFinal" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L832-L848
[ "def", "final", "(", "self", ")", ":", "digest", "=", "ckbytelist", "(", ")", "# Get the size of the digest", "rv", "=", "self", ".", "_lib", ".", "C_DigestFinal", "(", "self", ".", "_session", ",", "digest", ")", "if", "rv", "!=", "CKR_OK", ":", "raise"...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.closeSession
C_CloseSession
PyKCS11/__init__.py
def closeSession(self): """ C_CloseSession """ rv = self.lib.C_CloseSession(self.session) if rv != CKR_OK: raise PyKCS11Error(rv)
def closeSession(self): """ C_CloseSession """ rv = self.lib.C_CloseSession(self.session) if rv != CKR_OK: raise PyKCS11Error(rv)
[ "C_CloseSession" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L877-L883
[ "def", "closeSession", "(", "self", ")", ":", "rv", "=", "self", ".", "lib", ".", "C_CloseSession", "(", "self", ".", "session", ")", "if", "rv", "!=", "CKR_OK", ":", "raise", "PyKCS11Error", "(", "rv", ")" ]
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.getSessionInfo
C_GetSessionInfo :return: a :class:`CK_SESSION_INFO` object
PyKCS11/__init__.py
def getSessionInfo(self): """ C_GetSessionInfo :return: a :class:`CK_SESSION_INFO` object """ sessioninfo = PyKCS11.LowLevel.CK_SESSION_INFO() rv = self.lib.C_GetSessionInfo(self.session, sessioninfo) if rv != CKR_OK: raise PyKCS11Error(rv) s...
def getSessionInfo(self): """ C_GetSessionInfo :return: a :class:`CK_SESSION_INFO` object """ sessioninfo = PyKCS11.LowLevel.CK_SESSION_INFO() rv = self.lib.C_GetSessionInfo(self.session, sessioninfo) if rv != CKR_OK: raise PyKCS11Error(rv) s...
[ "C_GetSessionInfo" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L885-L901
[ "def", "getSessionInfo", "(", "self", ")", ":", "sessioninfo", "=", "PyKCS11", ".", "LowLevel", ".", "CK_SESSION_INFO", "(", ")", "rv", "=", "self", ".", "lib", ".", "C_GetSessionInfo", "(", "self", ".", "session", ",", "sessioninfo", ")", "if", "rv", "!...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.login
C_Login :param pin: the user's PIN or None for CKF_PROTECTED_AUTHENTICATION_PATH :type pin: string :param user_type: the user type. The default value is CKU_USER. You may also use CKU_SO :type user_type: integer
PyKCS11/__init__.py
def login(self, pin, user_type=CKU_USER): """ C_Login :param pin: the user's PIN or None for CKF_PROTECTED_AUTHENTICATION_PATH :type pin: string :param user_type: the user type. The default value is CKU_USER. You may also use CKU_SO :type user_type: integer ...
def login(self, pin, user_type=CKU_USER): """ C_Login :param pin: the user's PIN or None for CKF_PROTECTED_AUTHENTICATION_PATH :type pin: string :param user_type: the user type. The default value is CKU_USER. You may also use CKU_SO :type user_type: integer ...
[ "C_Login" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L903-L916
[ "def", "login", "(", "self", ",", "pin", ",", "user_type", "=", "CKU_USER", ")", ":", "pin1", "=", "ckbytelist", "(", "pin", ")", "rv", "=", "self", ".", "lib", ".", "C_Login", "(", "self", ".", "session", ",", "user_type", ",", "pin1", ")", "if", ...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.logout
C_Logout
PyKCS11/__init__.py
def logout(self): """ C_Logout """ rv = self.lib.C_Logout(self.session) if rv != CKR_OK: raise PyKCS11Error(rv) del self
def logout(self): """ C_Logout """ rv = self.lib.C_Logout(self.session) if rv != CKR_OK: raise PyKCS11Error(rv) del self
[ "C_Logout" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L918-L926
[ "def", "logout", "(", "self", ")", ":", "rv", "=", "self", ".", "lib", ".", "C_Logout", "(", "self", ".", "session", ")", "if", "rv", "!=", "CKR_OK", ":", "raise", "PyKCS11Error", "(", "rv", ")", "del", "self" ]
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.initPin
C_InitPIN :param pin: new PIN
PyKCS11/__init__.py
def initPin(self, pin): """ C_InitPIN :param pin: new PIN """ new_pin1 = ckbytelist(pin) rv = self.lib.C_InitPIN(self.session, new_pin1) if rv != CKR_OK: raise PyKCS11Error(rv)
def initPin(self, pin): """ C_InitPIN :param pin: new PIN """ new_pin1 = ckbytelist(pin) rv = self.lib.C_InitPIN(self.session, new_pin1) if rv != CKR_OK: raise PyKCS11Error(rv)
[ "C_InitPIN" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L928-L937
[ "def", "initPin", "(", "self", ",", "pin", ")", ":", "new_pin1", "=", "ckbytelist", "(", "pin", ")", "rv", "=", "self", ".", "lib", ".", "C_InitPIN", "(", "self", ".", "session", ",", "new_pin1", ")", "if", "rv", "!=", "CKR_OK", ":", "raise", "PyKC...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.setPin
C_SetPIN :param old_pin: old PIN :param new_pin: new PIN
PyKCS11/__init__.py
def setPin(self, old_pin, new_pin): """ C_SetPIN :param old_pin: old PIN :param new_pin: new PIN """ old_pin1 = ckbytelist(old_pin) new_pin1 = ckbytelist(new_pin) rv = self.lib.C_SetPIN(self.session, old_pin1, new_pin1) if rv != CKR_OK: ...
def setPin(self, old_pin, new_pin): """ C_SetPIN :param old_pin: old PIN :param new_pin: new PIN """ old_pin1 = ckbytelist(old_pin) new_pin1 = ckbytelist(new_pin) rv = self.lib.C_SetPIN(self.session, old_pin1, new_pin1) if rv != CKR_OK: ...
[ "C_SetPIN" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L939-L950
[ "def", "setPin", "(", "self", ",", "old_pin", ",", "new_pin", ")", ":", "old_pin1", "=", "ckbytelist", "(", "old_pin", ")", "new_pin1", "=", "ckbytelist", "(", "new_pin", ")", "rv", "=", "self", ".", "lib", ".", "C_SetPIN", "(", "self", ".", "session",...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.createObject
C_CreateObject :param template: object template
PyKCS11/__init__.py
def createObject(self, template): """ C_CreateObject :param template: object template """ attrs = self._template2ckattrlist(template) handle = PyKCS11.LowLevel.CK_OBJECT_HANDLE() rv = self.lib.C_CreateObject(self.session, attrs, handle) if rv != PyKCS11.C...
def createObject(self, template): """ C_CreateObject :param template: object template """ attrs = self._template2ckattrlist(template) handle = PyKCS11.LowLevel.CK_OBJECT_HANDLE() rv = self.lib.C_CreateObject(self.session, attrs, handle) if rv != PyKCS11.C...
[ "C_CreateObject" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L952-L963
[ "def", "createObject", "(", "self", ",", "template", ")", ":", "attrs", "=", "self", ".", "_template2ckattrlist", "(", "template", ")", "handle", "=", "PyKCS11", ".", "LowLevel", ".", "CK_OBJECT_HANDLE", "(", ")", "rv", "=", "self", ".", "lib", ".", "C_C...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.destroyObject
C_DestroyObject :param obj: object ID
PyKCS11/__init__.py
def destroyObject(self, obj): """ C_DestroyObject :param obj: object ID """ rv = self.lib.C_DestroyObject(self.session, obj) if rv != CKR_OK: raise PyKCS11Error(rv)
def destroyObject(self, obj): """ C_DestroyObject :param obj: object ID """ rv = self.lib.C_DestroyObject(self.session, obj) if rv != CKR_OK: raise PyKCS11Error(rv)
[ "C_DestroyObject" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L965-L973
[ "def", "destroyObject", "(", "self", ",", "obj", ")", ":", "rv", "=", "self", ".", "lib", ".", "C_DestroyObject", "(", "self", ".", "session", ",", "obj", ")", "if", "rv", "!=", "CKR_OK", ":", "raise", "PyKCS11Error", "(", "rv", ")" ]
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.digestSession
C_DigestInit/C_DigestUpdate/C_DigestKey/C_DigestFinal :param mecha: the digesting mechanism to be used (use `MechanismSHA1` for `CKM_SHA_1`) :type mecha: :class:`Mechanism` :return: A :class:`DigestSession` object :rtype: DigestSession
PyKCS11/__init__.py
def digestSession(self, mecha=MechanismSHA1): """ C_DigestInit/C_DigestUpdate/C_DigestKey/C_DigestFinal :param mecha: the digesting mechanism to be used (use `MechanismSHA1` for `CKM_SHA_1`) :type mecha: :class:`Mechanism` :return: A :class:`DigestSession` object ...
def digestSession(self, mecha=MechanismSHA1): """ C_DigestInit/C_DigestUpdate/C_DigestKey/C_DigestFinal :param mecha: the digesting mechanism to be used (use `MechanismSHA1` for `CKM_SHA_1`) :type mecha: :class:`Mechanism` :return: A :class:`DigestSession` object ...
[ "C_DigestInit", "/", "C_DigestUpdate", "/", "C_DigestKey", "/", "C_DigestFinal" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L975-L985
[ "def", "digestSession", "(", "self", ",", "mecha", "=", "MechanismSHA1", ")", ":", "return", "DigestSession", "(", "self", ".", "lib", ",", "self", ".", "session", ",", "mecha", ")" ]
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.digest
C_DigestInit/C_Digest :param data: the data to be digested :type data: (binary) sring or list/tuple of bytes :param mecha: the digesting mechanism to be used (use `MechanismSHA1` for `CKM_SHA_1`) :type mecha: :class:`Mechanism` :return: the computed digest :rt...
PyKCS11/__init__.py
def digest(self, data, mecha=MechanismSHA1): """ C_DigestInit/C_Digest :param data: the data to be digested :type data: (binary) sring or list/tuple of bytes :param mecha: the digesting mechanism to be used (use `MechanismSHA1` for `CKM_SHA_1`) :type mecha: :c...
def digest(self, data, mecha=MechanismSHA1): """ C_DigestInit/C_Digest :param data: the data to be digested :type data: (binary) sring or list/tuple of bytes :param mecha: the digesting mechanism to be used (use `MechanismSHA1` for `CKM_SHA_1`) :type mecha: :c...
[ "C_DigestInit", "/", "C_Digest" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L987-L1020
[ "def", "digest", "(", "self", ",", "data", ",", "mecha", "=", "MechanismSHA1", ")", ":", "digest", "=", "ckbytelist", "(", ")", "m", "=", "mecha", ".", "to_native", "(", ")", "data1", "=", "ckbytelist", "(", "data", ")", "rv", "=", "self", ".", "li...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.sign
C_SignInit/C_Sign :param key: a key handle, obtained calling :func:`findObjects`. :type key: integer :param data: the data to be signed :type data: (binary) string or list/tuple of bytes :param mecha: the signing mechanism to be used (use `MechanismRSAPKCS1` for `CKM_...
PyKCS11/__init__.py
def sign(self, key, data, mecha=MechanismRSAPKCS1): """ C_SignInit/C_Sign :param key: a key handle, obtained calling :func:`findObjects`. :type key: integer :param data: the data to be signed :type data: (binary) string or list/tuple of bytes :param mecha: the s...
def sign(self, key, data, mecha=MechanismRSAPKCS1): """ C_SignInit/C_Sign :param key: a key handle, obtained calling :func:`findObjects`. :type key: integer :param data: the data to be signed :type data: (binary) string or list/tuple of bytes :param mecha: the s...
[ "C_SignInit", "/", "C_Sign" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L1022-L1057
[ "def", "sign", "(", "self", ",", "key", ",", "data", ",", "mecha", "=", "MechanismRSAPKCS1", ")", ":", "m", "=", "mecha", ".", "to_native", "(", ")", "signature", "=", "ckbytelist", "(", ")", "data1", "=", "ckbytelist", "(", "data", ")", "rv", "=", ...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.verify
C_VerifyInit/C_Verify :param key: a key handle, obtained calling :func:`findObjects`. :type key: integer :param data: the data that was signed :type data: (binary) string or list/tuple of bytes :param signature: the signature to be verified :type signature: (binary) st...
PyKCS11/__init__.py
def verify(self, key, data, signature, mecha=MechanismRSAPKCS1): """ C_VerifyInit/C_Verify :param key: a key handle, obtained calling :func:`findObjects`. :type key: integer :param data: the data that was signed :type data: (binary) string or list/tuple of bytes ...
def verify(self, key, data, signature, mecha=MechanismRSAPKCS1): """ C_VerifyInit/C_Verify :param key: a key handle, obtained calling :func:`findObjects`. :type key: integer :param data: the data that was signed :type data: (binary) string or list/tuple of bytes ...
[ "C_VerifyInit", "/", "C_Verify" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L1059-L1087
[ "def", "verify", "(", "self", ",", "key", ",", "data", ",", "signature", ",", "mecha", "=", "MechanismRSAPKCS1", ")", ":", "m", "=", "mecha", ".", "to_native", "(", ")", "data1", "=", "ckbytelist", "(", "data", ")", "rv", "=", "self", ".", "lib", "...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.encrypt
C_EncryptInit/C_Encrypt :param key: a key handle, obtained calling :func:`findObjects`. :type key: integer :param data: the data to be encrypted :type data: (binary) string or list/tuple of bytes :param mecha: the encryption mechanism to be used (use `MechanismRSAPKCS...
PyKCS11/__init__.py
def encrypt(self, key, data, mecha=MechanismRSAPKCS1): """ C_EncryptInit/C_Encrypt :param key: a key handle, obtained calling :func:`findObjects`. :type key: integer :param data: the data to be encrypted :type data: (binary) string or list/tuple of bytes :param ...
def encrypt(self, key, data, mecha=MechanismRSAPKCS1): """ C_EncryptInit/C_Encrypt :param key: a key handle, obtained calling :func:`findObjects`. :type key: integer :param data: the data to be encrypted :type data: (binary) string or list/tuple of bytes :param ...
[ "C_EncryptInit", "/", "C_Encrypt" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L1089-L1124
[ "def", "encrypt", "(", "self", ",", "key", ",", "data", ",", "mecha", "=", "MechanismRSAPKCS1", ")", ":", "encrypted", "=", "ckbytelist", "(", ")", "m", "=", "mecha", ".", "to_native", "(", ")", "data1", "=", "ckbytelist", "(", "data", ")", "rv", "="...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.decrypt
C_DecryptInit/C_Decrypt :param key: a key handle, obtained calling :func:`findObjects`. :type key: integer :param data: the data to be decrypted :type data: (binary) string or list/tuple of bytes :param mecha: the decrypt mechanism to be used :type mecha: :class:`Mechan...
PyKCS11/__init__.py
def decrypt(self, key, data, mecha=MechanismRSAPKCS1): """ C_DecryptInit/C_Decrypt :param key: a key handle, obtained calling :func:`findObjects`. :type key: integer :param data: the data to be decrypted :type data: (binary) string or list/tuple of bytes :param ...
def decrypt(self, key, data, mecha=MechanismRSAPKCS1): """ C_DecryptInit/C_Decrypt :param key: a key handle, obtained calling :func:`findObjects`. :type key: integer :param data: the data to be decrypted :type data: (binary) string or list/tuple of bytes :param ...
[ "C_DecryptInit", "/", "C_Decrypt" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L1126-L1161
[ "def", "decrypt", "(", "self", ",", "key", ",", "data", ",", "mecha", "=", "MechanismRSAPKCS1", ")", ":", "m", "=", "mecha", ".", "to_native", "(", ")", "decrypted", "=", "ckbytelist", "(", ")", "data1", "=", "ckbytelist", "(", "data", ")", "rv", "="...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.wrapKey
C_WrapKey :param wrappingKey: a wrapping key handle :type wrappingKey: integer :param key: a handle of the key to be wrapped :type key: integer :param mecha: the encrypt mechanism to be used (use `MechanismRSAPKCS1` for `CKM_RSA_PKCS`) :type mecha: :class:`Mech...
PyKCS11/__init__.py
def wrapKey(self, wrappingKey, key, mecha=MechanismRSAPKCS1): """ C_WrapKey :param wrappingKey: a wrapping key handle :type wrappingKey: integer :param key: a handle of the key to be wrapped :type key: integer :param mecha: the encrypt mechanism to be used ...
def wrapKey(self, wrappingKey, key, mecha=MechanismRSAPKCS1): """ C_WrapKey :param wrappingKey: a wrapping key handle :type wrappingKey: integer :param key: a handle of the key to be wrapped :type key: integer :param mecha: the encrypt mechanism to be used ...
[ "C_WrapKey" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L1163-L1196
[ "def", "wrapKey", "(", "self", ",", "wrappingKey", ",", "key", ",", "mecha", "=", "MechanismRSAPKCS1", ")", ":", "wrapped", "=", "ckbytelist", "(", ")", "native", "=", "mecha", ".", "to_native", "(", ")", "# first call get wrapped size", "rv", "=", "self", ...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.unwrapKey
C_UnwrapKey :param unwrappingKey: the unwrapping key handle :type unwrappingKey: integer :param wrappedKey: the bytes of the wrapped key :type wrappedKey: (binary) string or list/tuple of bytes :param template: template for the unwrapped key :param mecha: the decrypt me...
PyKCS11/__init__.py
def unwrapKey(self, unwrappingKey, wrappedKey, template, mecha=MechanismRSAPKCS1): """ C_UnwrapKey :param unwrappingKey: the unwrapping key handle :type unwrappingKey: integer :param wrappedKey: the bytes of the wrapped key :type wrappedKey: (binary) s...
def unwrapKey(self, unwrappingKey, wrappedKey, template, mecha=MechanismRSAPKCS1): """ C_UnwrapKey :param unwrappingKey: the unwrapping key handle :type unwrappingKey: integer :param wrappedKey: the bytes of the wrapped key :type wrappedKey: (binary) s...
[ "C_UnwrapKey" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L1198-L1223
[ "def", "unwrapKey", "(", "self", ",", "unwrappingKey", ",", "wrappedKey", ",", "template", ",", "mecha", "=", "MechanismRSAPKCS1", ")", ":", "m", "=", "mecha", ".", "to_native", "(", ")", "data1", "=", "ckbytelist", "(", "wrappedKey", ")", "handle", "=", ...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.isNum
is the type a numerical value? :param type: PKCS#11 type like `CKA_CERTIFICATE_TYPE` :rtype: bool
PyKCS11/__init__.py
def isNum(self, type): """ is the type a numerical value? :param type: PKCS#11 type like `CKA_CERTIFICATE_TYPE` :rtype: bool """ if type in (CKA_CERTIFICATE_TYPE, CKA_CLASS, CKA_KEY_GEN_MECHANISM, CKA_KEY_TYPE, ...
def isNum(self, type): """ is the type a numerical value? :param type: PKCS#11 type like `CKA_CERTIFICATE_TYPE` :rtype: bool """ if type in (CKA_CERTIFICATE_TYPE, CKA_CLASS, CKA_KEY_GEN_MECHANISM, CKA_KEY_TYPE, ...
[ "is", "the", "type", "a", "numerical", "value?" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L1225-L1240
[ "def", "isNum", "(", "self", ",", "type", ")", ":", "if", "type", "in", "(", "CKA_CERTIFICATE_TYPE", ",", "CKA_CLASS", ",", "CKA_KEY_GEN_MECHANISM", ",", "CKA_KEY_TYPE", ",", "CKA_MODULUS_BITS", ",", "CKA_VALUE_BITS", ",", "CKA_VALUE_LEN", ")", ":", "return", ...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.isBool
is the type a boolean value? :param type: PKCS#11 type like `CKA_ALWAYS_SENSITIVE` :rtype: bool
PyKCS11/__init__.py
def isBool(self, type): """ is the type a boolean value? :param type: PKCS#11 type like `CKA_ALWAYS_SENSITIVE` :rtype: bool """ if type in (CKA_ALWAYS_SENSITIVE, CKA_DECRYPT, CKA_DERIVE, CKA_ENCRYPT, ...
def isBool(self, type): """ is the type a boolean value? :param type: PKCS#11 type like `CKA_ALWAYS_SENSITIVE` :rtype: bool """ if type in (CKA_ALWAYS_SENSITIVE, CKA_DECRYPT, CKA_DERIVE, CKA_ENCRYPT, ...
[ "is", "the", "type", "a", "boolean", "value?" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L1254-L1284
[ "def", "isBool", "(", "self", ",", "type", ")", ":", "if", "type", "in", "(", "CKA_ALWAYS_SENSITIVE", ",", "CKA_DECRYPT", ",", "CKA_DERIVE", ",", "CKA_ENCRYPT", ",", "CKA_EXTRACTABLE", ",", "CKA_HAS_RESET", ",", "CKA_LOCAL", ",", "CKA_MODIFIABLE", ",", "CKA_NE...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.isBin
is the type a byte array value? :param type: PKCS#11 type like `CKA_MODULUS` :rtype: bool
PyKCS11/__init__.py
def isBin(self, type): """ is the type a byte array value? :param type: PKCS#11 type like `CKA_MODULUS` :rtype: bool """ return (not self.isBool(type)) \ and (not self.isString(type)) \ and (not self.isNum(type))
def isBin(self, type): """ is the type a byte array value? :param type: PKCS#11 type like `CKA_MODULUS` :rtype: bool """ return (not self.isBool(type)) \ and (not self.isString(type)) \ and (not self.isNum(type))
[ "is", "the", "type", "a", "byte", "array", "value?" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L1286-L1295
[ "def", "isBin", "(", "self", ",", "type", ")", ":", "return", "(", "not", "self", ".", "isBool", "(", "type", ")", ")", "and", "(", "not", "self", ".", "isString", "(", "type", ")", ")", "and", "(", "not", "self", ".", "isNum", "(", "type", ")"...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.generateKey
generate a secret key :param template: template for the secret key :param mecha: mechanism to use :return: handle of the generated key :rtype: PyKCS11.LowLevel.CK_OBJECT_HANDLE
PyKCS11/__init__.py
def generateKey(self, template, mecha=MechanismAESGENERATEKEY): """ generate a secret key :param template: template for the secret key :param mecha: mechanism to use :return: handle of the generated key :rtype: PyKCS11.LowLevel.CK_OBJECT_HANDLE """ t = se...
def generateKey(self, template, mecha=MechanismAESGENERATEKEY): """ generate a secret key :param template: template for the secret key :param mecha: mechanism to use :return: handle of the generated key :rtype: PyKCS11.LowLevel.CK_OBJECT_HANDLE """ t = se...
[ "generate", "a", "secret", "key" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L1334-L1349
[ "def", "generateKey", "(", "self", ",", "template", ",", "mecha", "=", "MechanismAESGENERATEKEY", ")", ":", "t", "=", "self", ".", "_template2ckattrlist", "(", "template", ")", "ck_handle", "=", "PyKCS11", ".", "LowLevel", ".", "CK_OBJECT_HANDLE", "(", ")", ...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.generateKeyPair
generate a key pair :param templatePub: template for the public key :param templatePriv: template for the private key :param mecha: mechanism to use :return: a tuple of handles (pub, priv) :rtype: tuple
PyKCS11/__init__.py
def generateKeyPair(self, templatePub, templatePriv, mecha=MechanismRSAGENERATEKEYPAIR): """ generate a key pair :param templatePub: template for the public key :param templatePriv: template for the private key :param mecha: mechanism to use :ret...
def generateKeyPair(self, templatePub, templatePriv, mecha=MechanismRSAGENERATEKEYPAIR): """ generate a key pair :param templatePub: template for the public key :param templatePriv: template for the private key :param mecha: mechanism to use :ret...
[ "generate", "a", "key", "pair" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L1351-L1372
[ "def", "generateKeyPair", "(", "self", ",", "templatePub", ",", "templatePriv", ",", "mecha", "=", "MechanismRSAGENERATEKEYPAIR", ")", ":", "tPub", "=", "self", ".", "_template2ckattrlist", "(", "templatePub", ")", "tPriv", "=", "self", ".", "_template2ckattrlist"...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.findObjects
find the objects matching the template pattern :param template: list of attributes tuples (attribute,value). The default value is () and all the objects are returned :type template: list :return: a list of object ids :rtype: list
PyKCS11/__init__.py
def findObjects(self, template=()): """ find the objects matching the template pattern :param template: list of attributes tuples (attribute,value). The default value is () and all the objects are returned :type template: list :return: a list of object ids :rty...
def findObjects(self, template=()): """ find the objects matching the template pattern :param template: list of attributes tuples (attribute,value). The default value is () and all the objects are returned :type template: list :return: a list of object ids :rty...
[ "find", "the", "objects", "matching", "the", "template", "pattern" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L1374-L1410
[ "def", "findObjects", "(", "self", ",", "template", "=", "(", ")", ")", ":", "t", "=", "self", ".", "_template2ckattrlist", "(", "template", ")", "# we search for 10 objects by default. speed/memory tradeoff", "result", "=", "PyKCS11", ".", "LowLevel", ".", "ckobj...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.getAttributeValue
C_GetAttributeValue :param obj_id: object ID returned by :func:`findObjects` :type obj_id: integer :param attr: list of attributes :type attr: list :param allAsBinary: return all values as binary data; default is False. :type allAsBinary: Boolean :return: a list ...
PyKCS11/__init__.py
def getAttributeValue(self, obj_id, attr, allAsBinary=False): """ C_GetAttributeValue :param obj_id: object ID returned by :func:`findObjects` :type obj_id: integer :param attr: list of attributes :type attr: list :param allAsBinary: return all values as binary d...
def getAttributeValue(self, obj_id, attr, allAsBinary=False): """ C_GetAttributeValue :param obj_id: object ID returned by :func:`findObjects` :type obj_id: integer :param attr: list of attributes :type attr: list :param allAsBinary: return all values as binary d...
[ "C_GetAttributeValue" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L1412-L1469
[ "def", "getAttributeValue", "(", "self", ",", "obj_id", ",", "attr", ",", "allAsBinary", "=", "False", ")", ":", "valTemplate", "=", "PyKCS11", ".", "LowLevel", ".", "ckattrlist", "(", "len", "(", "attr", ")", ")", "for", "x", "in", "range", "(", "len"...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.seedRandom
C_SeedRandom :param seed: seed material :type seed: iterable
PyKCS11/__init__.py
def seedRandom(self, seed): """ C_SeedRandom :param seed: seed material :type seed: iterable """ low_seed = ckbytelist(seed) rv = self.lib.C_SeedRandom(self.session, low_seed) if rv != CKR_OK: raise PyKCS11Error(rv)
def seedRandom(self, seed): """ C_SeedRandom :param seed: seed material :type seed: iterable """ low_seed = ckbytelist(seed) rv = self.lib.C_SeedRandom(self.session, low_seed) if rv != CKR_OK: raise PyKCS11Error(rv)
[ "C_SeedRandom" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L1521-L1531
[ "def", "seedRandom", "(", "self", ",", "seed", ")", ":", "low_seed", "=", "ckbytelist", "(", "seed", ")", "rv", "=", "self", ".", "lib", ".", "C_SeedRandom", "(", "self", ".", "session", ",", "low_seed", ")", "if", "rv", "!=", "CKR_OK", ":", "raise",...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
Session.generateRandom
C_GenerateRandom :param size: number of random bytes to get :type size: integer :note: the returned value is an instance of :class:`ckbytelist`. You can easly convert it to a binary string with: ``bytes(random)`` or, for Python 2: ``''.join(chr(i) for i ...
PyKCS11/__init__.py
def generateRandom(self, size=16): """ C_GenerateRandom :param size: number of random bytes to get :type size: integer :note: the returned value is an instance of :class:`ckbytelist`. You can easly convert it to a binary string with: ``bytes(random)`` ...
def generateRandom(self, size=16): """ C_GenerateRandom :param size: number of random bytes to get :type size: integer :note: the returned value is an instance of :class:`ckbytelist`. You can easly convert it to a binary string with: ``bytes(random)`` ...
[ "C_GenerateRandom" ]
LudovicRousseau/PyKCS11
python
https://github.com/LudovicRousseau/PyKCS11/blob/76ccd8741af2ea193aaf1ca29dfedfa412c134fe/PyKCS11/__init__.py#L1533-L1550
[ "def", "generateRandom", "(", "self", ",", "size", "=", "16", ")", ":", "low_rand", "=", "ckbytelist", "(", "[", "0", "]", "*", "size", ")", "rv", "=", "self", ".", "lib", ".", "C_GenerateRandom", "(", "self", ".", "session", ",", "low_rand", ")", ...
76ccd8741af2ea193aaf1ca29dfedfa412c134fe
test
QRcode.qrcode
Makes qr image using qrcode as qrc. See documentation for qrcode (https://pypi.python.org/pypi/qrcode) package for more info. :param data: String data. :param mode: Output mode, [base64|raw]. :param version: The size of the QR Code (1-40). :param error_correction: The error corr...
flask_qrcode/__init__.py
def qrcode( cls, data, mode="base64", version=None, error_correction="L", box_size=10, border=0, fit=True, fill_color="black", back_color="white", **kwargs ): """Makes qr image using qrcode as qrc. See documentation ...
def qrcode( cls, data, mode="base64", version=None, error_correction="L", box_size=10, border=0, fit=True, fill_color="black", back_color="white", **kwargs ): """Makes qr image using qrcode as qrc. See documentation ...
[ "Makes", "qr", "image", "using", "qrcode", "as", "qrc", ".", "See", "documentation", "for", "qrcode", "(", "https", ":", "//", "pypi", ".", "python", ".", "org", "/", "pypi", "/", "qrcode", ")", "package", "for", "more", "info", "." ]
marcoagner/Flask-QRcode
python
https://github.com/marcoagner/Flask-QRcode/blob/fbedf5a671d86cae7e446b10d612e319fc21162b/flask_qrcode/__init__.py#L96-L159
[ "def", "qrcode", "(", "cls", ",", "data", ",", "mode", "=", "\"base64\"", ",", "version", "=", "None", ",", "error_correction", "=", "\"L\"", ",", "box_size", "=", "10", ",", "border", "=", "0", ",", "fit", "=", "True", ",", "fill_color", "=", "\"bla...
fbedf5a671d86cae7e446b10d612e319fc21162b
test
QRcode._insert_img
Inserts a small icon to QR Code image
flask_qrcode/__init__.py
def _insert_img(qr_img, icon_img=None, factor=4, icon_box=None, static_dir=None): """Inserts a small icon to QR Code image""" img_w, img_h = qr_img.size size_w = int(img_w) / int(factor) size_h = int(img_h) / int(factor) try: # load icon from current dir ...
def _insert_img(qr_img, icon_img=None, factor=4, icon_box=None, static_dir=None): """Inserts a small icon to QR Code image""" img_w, img_h = qr_img.size size_w = int(img_w) / int(factor) size_h = int(img_h) / int(factor) try: # load icon from current dir ...
[ "Inserts", "a", "small", "icon", "to", "QR", "Code", "image" ]
marcoagner/Flask-QRcode
python
https://github.com/marcoagner/Flask-QRcode/blob/fbedf5a671d86cae7e446b10d612e319fc21162b/flask_qrcode/__init__.py#L162-L190
[ "def", "_insert_img", "(", "qr_img", ",", "icon_img", "=", "None", ",", "factor", "=", "4", ",", "icon_box", "=", "None", ",", "static_dir", "=", "None", ")", ":", "img_w", ",", "img_h", "=", "qr_img", ".", "size", "size_w", "=", "int", "(", "img_w",...
fbedf5a671d86cae7e446b10d612e319fc21162b
test
panel
Export gene panels to .bed like format. Specify any number of panels on the command line
scout/commands/export/panel.py
def panel(context, panel, build, bed, version): """Export gene panels to .bed like format. Specify any number of panels on the command line """ LOG.info("Running scout export panel") adapter = context.obj['adapter'] # Save all chromosomes found in the collection if panels chromosome...
def panel(context, panel, build, bed, version): """Export gene panels to .bed like format. Specify any number of panels on the command line """ LOG.info("Running scout export panel") adapter = context.obj['adapter'] # Save all chromosomes found in the collection if panels chromosome...
[ "Export", "gene", "panels", "to", ".", "bed", "like", "format", ".", "Specify", "any", "number", "of", "panels", "on", "the", "command", "line" ]
Clinical-Genomics/scout
python
https://github.com/Clinical-Genomics/scout/blob/90a551e2e1653a319e654c2405c2866f93d0ebb9/scout/commands/export/panel.py#L26-L57
[ "def", "panel", "(", "context", ",", "panel", ",", "build", ",", "bed", ",", "version", ")", ":", "LOG", ".", "info", "(", "\"Running scout export panel\"", ")", "adapter", "=", "context", ".", "obj", "[", "'adapter'", "]", "# Save all chromosomes found in the...
90a551e2e1653a319e654c2405c2866f93d0ebb9
test
_first_weekday
Given a weekday and a date, will increment the date until it's weekday matches that of the given weekday, then that date is returned.
happenings/utils/handlers.py
def _first_weekday(weekday, d): """ Given a weekday and a date, will increment the date until it's weekday matches that of the given weekday, then that date is returned. """ while weekday != d.weekday(): d += timedelta(days=1) return d
def _first_weekday(weekday, d): """ Given a weekday and a date, will increment the date until it's weekday matches that of the given weekday, then that date is returned. """ while weekday != d.weekday(): d += timedelta(days=1) return d
[ "Given", "a", "weekday", "and", "a", "date", "will", "increment", "the", "date", "until", "it", "s", "weekday", "matches", "that", "of", "the", "given", "weekday", "then", "that", "date", "is", "returned", "." ]
wreckage/django-happenings
python
https://github.com/wreckage/django-happenings/blob/7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d/happenings/utils/handlers.py#L314-L321
[ "def", "_first_weekday", "(", "weekday", ",", "d", ")", ":", "while", "weekday", "!=", "d", ".", "weekday", "(", ")", ":", "d", "+=", "timedelta", "(", "days", "=", "1", ")", "return", "d" ]
7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d
test
_chunk_fill_out_first_week
If a repeating chunk event exists in a particular month, but didn't start that month, it may be neccessary to fill out the first week. Five cases: 1. event starts repeating on the 1st day of month 2. event starts repeating past the 1st day of month 3. event starts repeating before the 1s...
happenings/utils/handlers.py
def _chunk_fill_out_first_week(year, month, count, event, diff): """ If a repeating chunk event exists in a particular month, but didn't start that month, it may be neccessary to fill out the first week. Five cases: 1. event starts repeating on the 1st day of month 2. event starts repeat...
def _chunk_fill_out_first_week(year, month, count, event, diff): """ If a repeating chunk event exists in a particular month, but didn't start that month, it may be neccessary to fill out the first week. Five cases: 1. event starts repeating on the 1st day of month 2. event starts repeat...
[ "If", "a", "repeating", "chunk", "event", "exists", "in", "a", "particular", "month", "but", "didn", "t", "start", "that", "month", "it", "may", "be", "neccessary", "to", "fill", "out", "the", "first", "week", ".", "Five", "cases", ":", "1", ".", "even...
wreckage/django-happenings
python
https://github.com/wreckage/django-happenings/blob/7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d/happenings/utils/handlers.py#L324-L359
[ "def", "_chunk_fill_out_first_week", "(", "year", ",", "month", ",", "count", ",", "event", ",", "diff", ")", ":", "first_of_the_month", "=", "date", "(", "year", ",", "month", ",", "1", ")", "d", "=", "_first_weekday", "(", "event", ".", "l_end_date", "...
7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d
test
Repeater.repeat
Add 'num' to the day and count that day until we reach end_repeat, or until we're outside of the current month, counting the days as we go along.
happenings/utils/handlers.py
def repeat(self, day=None): """ Add 'num' to the day and count that day until we reach end_repeat, or until we're outside of the current month, counting the days as we go along. """ if day is None: day = self.day try: d = date(self.year, s...
def repeat(self, day=None): """ Add 'num' to the day and count that day until we reach end_repeat, or until we're outside of the current month, counting the days as we go along. """ if day is None: day = self.day try: d = date(self.year, s...
[ "Add", "num", "to", "the", "day", "and", "count", "that", "day", "until", "we", "reach", "end_repeat", "or", "until", "we", "re", "outside", "of", "the", "current", "month", "counting", "the", "days", "as", "we", "go", "along", "." ]
wreckage/django-happenings
python
https://github.com/wreckage/django-happenings/blob/7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d/happenings/utils/handlers.py#L27-L55
[ "def", "repeat", "(", "self", ",", "day", "=", "None", ")", ":", "if", "day", "is", "None", ":", "day", "=", "self", ".", "day", "try", ":", "d", "=", "date", "(", "self", ".", "year", ",", "self", ".", "month", ",", "day", ")", "except", "Va...
7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d
test
Repeater.repeat_weekdays
Like self.repeat(), but used to repeat every weekday.
happenings/utils/handlers.py
def repeat_weekdays(self): """ Like self.repeat(), but used to repeat every weekday. """ try: d = date(self.year, self.month, self.day) except ValueError: # out of range day return self.count if self.count_first and \ d <= self.en...
def repeat_weekdays(self): """ Like self.repeat(), but used to repeat every weekday. """ try: d = date(self.year, self.month, self.day) except ValueError: # out of range day return self.count if self.count_first and \ d <= self.en...
[ "Like", "self", ".", "repeat", "()", "but", "used", "to", "repeat", "every", "weekday", "." ]
wreckage/django-happenings
python
https://github.com/wreckage/django-happenings/blob/7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d/happenings/utils/handlers.py#L57-L76
[ "def", "repeat_weekdays", "(", "self", ")", ":", "try", ":", "d", "=", "date", "(", "self", ".", "year", ",", "self", ".", "month", ",", "self", ".", "day", ")", "except", "ValueError", ":", "# out of range day", "return", "self", ".", "count", "if", ...
7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d
test
Repeater.repeat_reverse
Starts from 'start' day and counts backwards until 'end' day. 'start' should be >= 'end'. If it's equal to, does nothing. If a day falls outside of end_repeat, it won't be counted.
happenings/utils/handlers.py
def repeat_reverse(self, start, end): """ Starts from 'start' day and counts backwards until 'end' day. 'start' should be >= 'end'. If it's equal to, does nothing. If a day falls outside of end_repeat, it won't be counted. """ day = start diff = start - end ...
def repeat_reverse(self, start, end): """ Starts from 'start' day and counts backwards until 'end' day. 'start' should be >= 'end'. If it's equal to, does nothing. If a day falls outside of end_repeat, it won't be counted. """ day = start diff = start - end ...
[ "Starts", "from", "start", "day", "and", "counts", "backwards", "until", "end", "day", ".", "start", "should", "be", ">", "=", "end", ".", "If", "it", "s", "equal", "to", "does", "nothing", ".", "If", "a", "day", "falls", "outside", "of", "end_repeat",...
wreckage/django-happenings
python
https://github.com/wreckage/django-happenings/blob/7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d/happenings/utils/handlers.py#L78-L100
[ "def", "repeat_reverse", "(", "self", ",", "start", ",", "end", ")", ":", "day", "=", "start", "diff", "=", "start", "-", "end", "try", ":", "if", "date", "(", "self", ".", "year", ",", "self", ".", "month", ",", "day", ")", "<=", "self", ".", ...
7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d
test
Repeater.repeat_biweekly
This function is unique b/c it creates an empty defaultdict, adds in the event occurrences by creating an instance of Repeater, then returns the defaultdict, likely to be merged into the 'main' defaultdict (the one holding all event occurrences for this month).
happenings/utils/handlers.py
def repeat_biweekly(self): """ This function is unique b/c it creates an empty defaultdict, adds in the event occurrences by creating an instance of Repeater, then returns the defaultdict, likely to be merged into the 'main' defaultdict (the one holding all event occurrences for ...
def repeat_biweekly(self): """ This function is unique b/c it creates an empty defaultdict, adds in the event occurrences by creating an instance of Repeater, then returns the defaultdict, likely to be merged into the 'main' defaultdict (the one holding all event occurrences for ...
[ "This", "function", "is", "unique", "b", "/", "c", "it", "creates", "an", "empty", "defaultdict", "adds", "in", "the", "event", "occurrences", "by", "creating", "an", "instance", "of", "Repeater", "then", "returns", "the", "defaultdict", "likely", "to", "be"...
wreckage/django-happenings
python
https://github.com/wreckage/django-happenings/blob/7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d/happenings/utils/handlers.py#L106-L125
[ "def", "repeat_biweekly", "(", "self", ")", ":", "mycount", "=", "defaultdict", "(", "list", ")", "d", "=", "self", ".", "event", ".", "l_start_date", "while", "d", ".", "year", "!=", "self", ".", "year", "or", "d", ".", "month", "!=", "self", ".", ...
7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d
test
YearlyRepeater.repeat_it
Events that repeat every year should be shown every year on the same date they started e.g. an event that starts on March 23rd would appear on March 23rd every year it is scheduled to repeat. If the event is a chunk event, hand it over to _repeat_chunk().
happenings/utils/handlers.py
def repeat_it(self): """ Events that repeat every year should be shown every year on the same date they started e.g. an event that starts on March 23rd would appear on March 23rd every year it is scheduled to repeat. If the event is a chunk event, hand it over to _repeat_chunk()....
def repeat_it(self): """ Events that repeat every year should be shown every year on the same date they started e.g. an event that starts on March 23rd would appear on March 23rd every year it is scheduled to repeat. If the event is a chunk event, hand it over to _repeat_chunk()....
[ "Events", "that", "repeat", "every", "year", "should", "be", "shown", "every", "year", "on", "the", "same", "date", "they", "started", "e", ".", "g", ".", "an", "event", "that", "starts", "on", "March", "23rd", "would", "appear", "on", "March", "23rd", ...
wreckage/django-happenings
python
https://github.com/wreckage/django-happenings/blob/7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d/happenings/utils/handlers.py#L143-L161
[ "def", "repeat_it", "(", "self", ")", ":", "# The start day will be counted if we're in the start year,", "# so only count the day if we're in the same month as", "# l_start_date, but not in the same year.", "if", "self", ".", "event", ".", "l_start_date", ".", "month", "==", "se...
7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d
test
MonthlyRepeater.repeat_it
Events that repeat every month should be shown every month on the same date they started e.g. an event that starts on the 23rd would appear on the 23rd every month it is scheduled to repeat.
happenings/utils/handlers.py
def repeat_it(self): """ Events that repeat every month should be shown every month on the same date they started e.g. an event that starts on the 23rd would appear on the 23rd every month it is scheduled to repeat. """ start_day = self.event.l_start_date.day if n...
def repeat_it(self): """ Events that repeat every month should be shown every month on the same date they started e.g. an event that starts on the 23rd would appear on the 23rd every month it is scheduled to repeat. """ start_day = self.event.l_start_date.day if n...
[ "Events", "that", "repeat", "every", "month", "should", "be", "shown", "every", "month", "on", "the", "same", "date", "they", "started", "e", ".", "g", ".", "an", "event", "that", "starts", "on", "the", "23rd", "would", "appear", "on", "the", "23rd", "...
wreckage/django-happenings
python
https://github.com/wreckage/django-happenings/blob/7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d/happenings/utils/handlers.py#L187-L201
[ "def", "repeat_it", "(", "self", ")", ":", "start_day", "=", "self", ".", "event", ".", "l_start_date", ".", "day", "if", "not", "self", ".", "event", ".", "starts_same_month_as", "(", "self", ".", "month", ")", ":", "self", ".", "count_it", "(", "star...
7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d
test
WeeklyRepeater._biweekly_helper
Created to take some of the load off of _handle_weekly_repeat_out
happenings/utils/handlers.py
def _biweekly_helper(self): """Created to take some of the load off of _handle_weekly_repeat_out""" self.num = 14 mycount = self.repeat_biweekly() if mycount: if self.event.is_chunk() and min(mycount) not in xrange(1, 8): mycount = _chunk_fill_out_first_week( ...
def _biweekly_helper(self): """Created to take some of the load off of _handle_weekly_repeat_out""" self.num = 14 mycount = self.repeat_biweekly() if mycount: if self.event.is_chunk() and min(mycount) not in xrange(1, 8): mycount = _chunk_fill_out_first_week( ...
[ "Created", "to", "take", "some", "of", "the", "load", "off", "of", "_handle_weekly_repeat_out" ]
wreckage/django-happenings
python
https://github.com/wreckage/django-happenings/blob/7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d/happenings/utils/handlers.py#L230-L242
[ "def", "_biweekly_helper", "(", "self", ")", ":", "self", ".", "num", "=", "14", "mycount", "=", "self", ".", "repeat_biweekly", "(", ")", "if", "mycount", ":", "if", "self", ".", "event", ".", "is_chunk", "(", ")", "and", "min", "(", "mycount", ")",...
7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d
test
WeeklyRepeater._handle_weekly_repeat_out
Handles repeating an event weekly (or biweekly) if the current year and month are outside of its start year and month. It takes care of cases 3 and 4 in _handle_weekly_repeat_in() comments.
happenings/utils/handlers.py
def _handle_weekly_repeat_out(self): """ Handles repeating an event weekly (or biweekly) if the current year and month are outside of its start year and month. It takes care of cases 3 and 4 in _handle_weekly_repeat_in() comments. """ start_d = _first_weekday( ...
def _handle_weekly_repeat_out(self): """ Handles repeating an event weekly (or biweekly) if the current year and month are outside of its start year and month. It takes care of cases 3 and 4 in _handle_weekly_repeat_in() comments. """ start_d = _first_weekday( ...
[ "Handles", "repeating", "an", "event", "weekly", "(", "or", "biweekly", ")", "if", "the", "current", "year", "and", "month", "are", "outside", "of", "its", "start", "year", "and", "month", ".", "It", "takes", "care", "of", "cases", "3", "and", "4", "in...
wreckage/django-happenings
python
https://github.com/wreckage/django-happenings/blob/7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d/happenings/utils/handlers.py#L244-L272
[ "def", "_handle_weekly_repeat_out", "(", "self", ")", ":", "start_d", "=", "_first_weekday", "(", "self", ".", "event", ".", "l_start_date", ".", "weekday", "(", ")", ",", "date", "(", "self", ".", "year", ",", "self", ".", "month", ",", "1", ")", ")",...
7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d
test
WeeklyRepeater._handle_weekly_repeat_in
Handles repeating both weekly and biweekly events, if the current year and month are inside it's l_start_date and l_end_date. Four possibilites: 1. The event starts this month and ends repeating this month. 2. The event starts this month and doesn't finish repeating t...
happenings/utils/handlers.py
def _handle_weekly_repeat_in(self): """ Handles repeating both weekly and biweekly events, if the current year and month are inside it's l_start_date and l_end_date. Four possibilites: 1. The event starts this month and ends repeating this month. 2. The event star...
def _handle_weekly_repeat_in(self): """ Handles repeating both weekly and biweekly events, if the current year and month are inside it's l_start_date and l_end_date. Four possibilites: 1. The event starts this month and ends repeating this month. 2. The event star...
[ "Handles", "repeating", "both", "weekly", "and", "biweekly", "events", "if", "the", "current", "year", "and", "month", "are", "inside", "it", "s", "l_start_date", "and", "l_end_date", ".", "Four", "possibilites", ":", "1", ".", "The", "event", "starts", "thi...
wreckage/django-happenings
python
https://github.com/wreckage/django-happenings/blob/7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d/happenings/utils/handlers.py#L274-L299
[ "def", "_handle_weekly_repeat_in", "(", "self", ")", ":", "self", ".", "day", "=", "self", ".", "event", ".", "l_start_date", ".", "day", "self", ".", "count_first", "=", "False", "repeats", "=", "{", "'WEEKLY'", ":", "7", ",", "'BIWEEKLY'", ":", "14", ...
7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d
test
CountHandler._handle_single_chunk
This handles either a non-repeating event chunk, or the first month of a repeating event chunk.
happenings/utils/handlers.py
def _handle_single_chunk(self, event): """ This handles either a non-repeating event chunk, or the first month of a repeating event chunk. """ if not event.starts_same_month_as(self.month) and not \ event.repeats('NEVER'): # no repeating chunk events i...
def _handle_single_chunk(self, event): """ This handles either a non-repeating event chunk, or the first month of a repeating event chunk. """ if not event.starts_same_month_as(self.month) and not \ event.repeats('NEVER'): # no repeating chunk events i...
[ "This", "handles", "either", "a", "non", "-", "repeating", "event", "chunk", "or", "the", "first", "month", "of", "a", "repeating", "event", "chunk", "." ]
wreckage/django-happenings
python
https://github.com/wreckage/django-happenings/blob/7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d/happenings/utils/handlers.py#L369-L401
[ "def", "_handle_single_chunk", "(", "self", ",", "event", ")", ":", "if", "not", "event", ".", "starts_same_month_as", "(", "self", ".", "month", ")", "and", "not", "event", ".", "repeats", "(", "'NEVER'", ")", ":", "# no repeating chunk events if we're not in i...
7bca5576efa6cd4c4e87356bf9e5b8cd538ae91d
test
load_panel
Load a manually curated gene panel into scout Args: panel_path(str): path to gene panel file adapter(scout.adapter.MongoAdapter) date(str): date of gene panel on format 2017-12-24 display_name(str) version(float) panel_type(str) panel_id(str) inst...
scout/load/panel.py
def load_panel(panel_path, adapter, date=None, display_name=None, version=None, panel_type=None, panel_id=None, institute=None): """Load a manually curated gene panel into scout Args: panel_path(str): path to gene panel file adapter(scout.adapter.MongoAdapter) date(s...
def load_panel(panel_path, adapter, date=None, display_name=None, version=None, panel_type=None, panel_id=None, institute=None): """Load a manually curated gene panel into scout Args: panel_path(str): path to gene panel file adapter(scout.adapter.MongoAdapter) date(s...
[ "Load", "a", "manually", "curated", "gene", "panel", "into", "scout", "Args", ":", "panel_path", "(", "str", ")", ":", "path", "to", "gene", "panel", "file", "adapter", "(", "scout", ".", "adapter", ".", "MongoAdapter", ")", "date", "(", "str", ")", ":...
Clinical-Genomics/scout
python
https://github.com/Clinical-Genomics/scout/blob/90a551e2e1653a319e654c2405c2866f93d0ebb9/scout/load/panel.py#L19-L98
[ "def", "load_panel", "(", "panel_path", ",", "adapter", ",", "date", "=", "None", ",", "display_name", "=", "None", ",", "version", "=", "None", ",", "panel_type", "=", "None", ",", "panel_id", "=", "None", ",", "institute", "=", "None", ")", ":", "pan...
90a551e2e1653a319e654c2405c2866f93d0ebb9
test
load_panel_app
Load PanelApp panels into scout database If no panel_id load all PanelApp panels Args: adapter(scout.adapter.MongoAdapter) panel_id(str): The panel app panel id
scout/load/panel.py
def load_panel_app(adapter, panel_id=None, institute='cust000'): """Load PanelApp panels into scout database If no panel_id load all PanelApp panels Args: adapter(scout.adapter.MongoAdapter) panel_id(str): The panel app panel id """ base_url = 'https://panelapp.genomicseng...
def load_panel_app(adapter, panel_id=None, institute='cust000'): """Load PanelApp panels into scout database If no panel_id load all PanelApp panels Args: adapter(scout.adapter.MongoAdapter) panel_id(str): The panel app panel id """ base_url = 'https://panelapp.genomicseng...
[ "Load", "PanelApp", "panels", "into", "scout", "database", "If", "no", "panel_id", "load", "all", "PanelApp", "panels", "Args", ":", "adapter", "(", "scout", ".", "adapter", ".", "MongoAdapter", ")", "panel_id", "(", "str", ")", ":", "The", "panel", "app",...
Clinical-Genomics/scout
python
https://github.com/Clinical-Genomics/scout/blob/90a551e2e1653a319e654c2405c2866f93d0ebb9/scout/load/panel.py#L100-L142
[ "def", "load_panel_app", "(", "adapter", ",", "panel_id", "=", "None", ",", "institute", "=", "'cust000'", ")", ":", "base_url", "=", "'https://panelapp.genomicsengland.co.uk/WebServices/{0}/'", "hgnc_map", "=", "adapter", ".", "genes_by_alias", "(", ")", "if", "pan...
90a551e2e1653a319e654c2405c2866f93d0ebb9
test
export_variants
Export causative variants for a collaborator Args: adapter(MongoAdapter) collaborator(str) document_id(str): Search for a specific variant case_id(str): Search causative variants for a case Yields: variant_obj(scout.Models.Variant): Variants marked as causative ordered ...
scout/export/variant.py
def export_variants(adapter, collaborator, document_id=None, case_id=None): """Export causative variants for a collaborator Args: adapter(MongoAdapter) collaborator(str) document_id(str): Search for a specific variant case_id(str): Search causative variants for a case Yield...
def export_variants(adapter, collaborator, document_id=None, case_id=None): """Export causative variants for a collaborator Args: adapter(MongoAdapter) collaborator(str) document_id(str): Search for a specific variant case_id(str): Search causative variants for a case Yield...
[ "Export", "causative", "variants", "for", "a", "collaborator" ]
Clinical-Genomics/scout
python
https://github.com/Clinical-Genomics/scout/blob/90a551e2e1653a319e654c2405c2866f93d0ebb9/scout/export/variant.py#L9-L51
[ "def", "export_variants", "(", "adapter", ",", "collaborator", ",", "document_id", "=", "None", ",", "case_id", "=", "None", ")", ":", "# Store the variants in a list for sorting", "variants", "=", "[", "]", "if", "document_id", ":", "yield", "adapter", ".", "va...
90a551e2e1653a319e654c2405c2866f93d0ebb9
test
export_verified_variants
Create the lines for an excel file with verified variants for an institute Args: aggregate_variants(list): a list of variants with aggregates case data unique_callers(set): a unique list of available callers Returns: document_lines(list): list of lines to in...
scout/export/variant.py
def export_verified_variants(aggregate_variants, unique_callers): """Create the lines for an excel file with verified variants for an institute Args: aggregate_variants(list): a list of variants with aggregates case data unique_callers(set): a unique list of available caller...
def export_verified_variants(aggregate_variants, unique_callers): """Create the lines for an excel file with verified variants for an institute Args: aggregate_variants(list): a list of variants with aggregates case data unique_callers(set): a unique list of available caller...
[ "Create", "the", "lines", "for", "an", "excel", "file", "with", "verified", "variants", "for", "an", "institute" ]
Clinical-Genomics/scout
python
https://github.com/Clinical-Genomics/scout/blob/90a551e2e1653a319e654c2405c2866f93d0ebb9/scout/export/variant.py#L54-L115
[ "def", "export_verified_variants", "(", "aggregate_variants", ",", "unique_callers", ")", ":", "document_lines", "=", "[", "]", "for", "variant", "in", "aggregate_variants", ":", "# get genotype and allele depth for each sample", "samples", "=", "[", "]", "for", "sample...
90a551e2e1653a319e654c2405c2866f93d0ebb9
test
export_mt_variants
Export mitochondrial variants for a case to create a MT excel report Args: variants(list): all MT variants for a case, sorted by position sample_id(str) : the id of a sample within the case Returns: document_lines(list): list of lines to include in the document
scout/export/variant.py
def export_mt_variants(variants, sample_id): """Export mitochondrial variants for a case to create a MT excel report Args: variants(list): all MT variants for a case, sorted by position sample_id(str) : the id of a sample within the case Returns: document_lines(list): list of lines...
def export_mt_variants(variants, sample_id): """Export mitochondrial variants for a case to create a MT excel report Args: variants(list): all MT variants for a case, sorted by position sample_id(str) : the id of a sample within the case Returns: document_lines(list): list of lines...
[ "Export", "mitochondrial", "variants", "for", "a", "case", "to", "create", "a", "MT", "excel", "report" ]
Clinical-Genomics/scout
python
https://github.com/Clinical-Genomics/scout/blob/90a551e2e1653a319e654c2405c2866f93d0ebb9/scout/export/variant.py#L118-L154
[ "def", "export_mt_variants", "(", "variants", ",", "sample_id", ")", ":", "document_lines", "=", "[", "]", "for", "variant", "in", "variants", ":", "line", "=", "[", "]", "position", "=", "variant", ".", "get", "(", "'position'", ")", "change", "=", "'>'...
90a551e2e1653a319e654c2405c2866f93d0ebb9
test
user
Update a user in the database
scout/commands/update/user.py
def user(context, user_id, update_role, add_institute, remove_admin, remove_institute): """ Update a user in the database """ adapter = context.obj['adapter'] user_obj = adapter.user(user_id) if not user_obj: LOG.warning("User %s could not be found", user_id) context.abort() ...
def user(context, user_id, update_role, add_institute, remove_admin, remove_institute): """ Update a user in the database """ adapter = context.obj['adapter'] user_obj = adapter.user(user_id) if not user_obj: LOG.warning("User %s could not be found", user_id) context.abort() ...
[ "Update", "a", "user", "in", "the", "database" ]
Clinical-Genomics/scout
python
https://github.com/Clinical-Genomics/scout/blob/90a551e2e1653a319e654c2405c2866f93d0ebb9/scout/commands/update/user.py#L31-L79
[ "def", "user", "(", "context", ",", "user_id", ",", "update_role", ",", "add_institute", ",", "remove_admin", ",", "remove_institute", ")", ":", "adapter", "=", "context", ".", "obj", "[", "'adapter'", "]", "user_obj", "=", "adapter", ".", "user", "(", "us...
90a551e2e1653a319e654c2405c2866f93d0ebb9
test
variants
Display a list of SNV variants.
scout/server/blueprints/variants/views.py
def variants(institute_id, case_name): """Display a list of SNV variants.""" page = int(request.form.get('page', 1)) institute_obj, case_obj = institute_and_case(store, institute_id, case_name) variant_type = request.args.get('variant_type', 'clinical') # Update filter settings if Clinical Filter ...
def variants(institute_id, case_name): """Display a list of SNV variants.""" page = int(request.form.get('page', 1)) institute_obj, case_obj = institute_and_case(store, institute_id, case_name) variant_type = request.args.get('variant_type', 'clinical') # Update filter settings if Clinical Filter ...
[ "Display", "a", "list", "of", "SNV", "variants", "." ]
Clinical-Genomics/scout
python
https://github.com/Clinical-Genomics/scout/blob/90a551e2e1653a319e654c2405c2866f93d0ebb9/scout/server/blueprints/variants/views.py#L30-L167
[ "def", "variants", "(", "institute_id", ",", "case_name", ")", ":", "page", "=", "int", "(", "request", ".", "form", ".", "get", "(", "'page'", ",", "1", ")", ")", "institute_obj", ",", "case_obj", "=", "institute_and_case", "(", "store", ",", "institute...
90a551e2e1653a319e654c2405c2866f93d0ebb9
test
variant
Display a specific SNV variant.
scout/server/blueprints/variants/views.py
def variant(institute_id, case_name, variant_id): """Display a specific SNV variant.""" institute_obj, case_obj = institute_and_case(store, institute_id, case_name) log.debug("Variants view requesting data for variant {}".format(variant_id)) data = controllers.variant(store, institute_obj, case_obj, var...
def variant(institute_id, case_name, variant_id): """Display a specific SNV variant.""" institute_obj, case_obj = institute_and_case(store, institute_id, case_name) log.debug("Variants view requesting data for variant {}".format(variant_id)) data = controllers.variant(store, institute_obj, case_obj, var...
[ "Display", "a", "specific", "SNV", "variant", "." ]
Clinical-Genomics/scout
python
https://github.com/Clinical-Genomics/scout/blob/90a551e2e1653a319e654c2405c2866f93d0ebb9/scout/server/blueprints/variants/views.py#L172-L186
[ "def", "variant", "(", "institute_id", ",", "case_name", ",", "variant_id", ")", ":", "institute_obj", ",", "case_obj", "=", "institute_and_case", "(", "store", ",", "institute_id", ",", "case_name", ")", "log", ".", "debug", "(", "\"Variants view requesting data ...
90a551e2e1653a319e654c2405c2866f93d0ebb9
test
str_variants
Display a list of STR variants.
scout/server/blueprints/variants/views.py
def str_variants(institute_id, case_name): """Display a list of STR variants.""" page = int(request.args.get('page', 1)) variant_type = request.args.get('variant_type', 'clinical') form = StrFiltersForm(request.args) institute_obj, case_obj = institute_and_case(store, institute_id, case_name) ...
def str_variants(institute_id, case_name): """Display a list of STR variants.""" page = int(request.args.get('page', 1)) variant_type = request.args.get('variant_type', 'clinical') form = StrFiltersForm(request.args) institute_obj, case_obj = institute_and_case(store, institute_id, case_name) ...
[ "Display", "a", "list", "of", "STR", "variants", "." ]
Clinical-Genomics/scout
python
https://github.com/Clinical-Genomics/scout/blob/90a551e2e1653a319e654c2405c2866f93d0ebb9/scout/server/blueprints/variants/views.py#L190-L207
[ "def", "str_variants", "(", "institute_id", ",", "case_name", ")", ":", "page", "=", "int", "(", "request", ".", "args", ".", "get", "(", "'page'", ",", "1", ")", ")", "variant_type", "=", "request", ".", "args", ".", "get", "(", "'variant_type'", ",",...
90a551e2e1653a319e654c2405c2866f93d0ebb9
test
sv_variants
Display a list of structural variants.
scout/server/blueprints/variants/views.py
def sv_variants(institute_id, case_name): """Display a list of structural variants.""" page = int(request.form.get('page', 1)) variant_type = request.args.get('variant_type', 'clinical') institute_obj, case_obj = institute_and_case(store, institute_id, case_name) form = SvFiltersForm(request.form...
def sv_variants(institute_id, case_name): """Display a list of structural variants.""" page = int(request.form.get('page', 1)) variant_type = request.args.get('variant_type', 'clinical') institute_obj, case_obj = institute_and_case(store, institute_id, case_name) form = SvFiltersForm(request.form...
[ "Display", "a", "list", "of", "structural", "variants", "." ]
Clinical-Genomics/scout
python
https://github.com/Clinical-Genomics/scout/blob/90a551e2e1653a319e654c2405c2866f93d0ebb9/scout/server/blueprints/variants/views.py#L212-L294
[ "def", "sv_variants", "(", "institute_id", ",", "case_name", ")", ":", "page", "=", "int", "(", "request", ".", "form", ".", "get", "(", "'page'", ",", "1", ")", ")", "variant_type", "=", "request", ".", "args", ".", "get", "(", "'variant_type'", ",", ...
90a551e2e1653a319e654c2405c2866f93d0ebb9