repo stringlengths 7 55 | path stringlengths 4 127 | func_name stringlengths 1 88 | original_string stringlengths 75 19.8k | language stringclasses 1
value | code stringlengths 75 19.8k | code_tokens list | docstring stringlengths 3 17.3k | docstring_tokens list | sha stringlengths 40 40 | url stringlengths 87 242 | partition stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|
paragbaxi/qualysapi | qualysapi/config.py | QualysConnectConfig.get_auth | def get_auth(self):
''' Returns username from the configfile. '''
return (self._cfgparse.get(self._section, 'username'), self._cfgparse.get(self._section, 'password')) | python | def get_auth(self):
''' Returns username from the configfile. '''
return (self._cfgparse.get(self._section, 'username'), self._cfgparse.get(self._section, 'password')) | [
"def",
"get_auth",
"(",
"self",
")",
":",
"return",
"(",
"self",
".",
"_cfgparse",
".",
"get",
"(",
"self",
".",
"_section",
",",
"'username'",
")",
",",
"self",
".",
"_cfgparse",
".",
"get",
"(",
"self",
".",
"_section",
",",
"'password'",
")",
")"
... | Returns username from the configfile. | [
"Returns",
"username",
"from",
"the",
"configfile",
"."
] | 2c8bf1d5d300117403062885c8e10b5665eb4615 | https://github.com/paragbaxi/qualysapi/blob/2c8bf1d5d300117403062885c8e10b5665eb4615/qualysapi/config.py#L211-L213 | train |
paragbaxi/qualysapi | qualysapi/util.py | connect | def connect(config_file=qcs.default_filename, section='info', remember_me=False, remember_me_always=False):
""" Return a QGAPIConnect object for v1 API pulling settings from config
file.
"""
# Retrieve login credentials.
conf = qcconf.QualysConnectConfig(filename=config_file, section=section, rememb... | python | def connect(config_file=qcs.default_filename, section='info', remember_me=False, remember_me_always=False):
""" Return a QGAPIConnect object for v1 API pulling settings from config
file.
"""
# Retrieve login credentials.
conf = qcconf.QualysConnectConfig(filename=config_file, section=section, rememb... | [
"def",
"connect",
"(",
"config_file",
"=",
"qcs",
".",
"default_filename",
",",
"section",
"=",
"'info'",
",",
"remember_me",
"=",
"False",
",",
"remember_me_always",
"=",
"False",
")",
":",
"conf",
"=",
"qcconf",
".",
"QualysConnectConfig",
"(",
"filename",
... | Return a QGAPIConnect object for v1 API pulling settings from config
file. | [
"Return",
"a",
"QGAPIConnect",
"object",
"for",
"v1",
"API",
"pulling",
"settings",
"from",
"config",
"file",
"."
] | 2c8bf1d5d300117403062885c8e10b5665eb4615 | https://github.com/paragbaxi/qualysapi/blob/2c8bf1d5d300117403062885c8e10b5665eb4615/qualysapi/util.py#L18-L30 | train |
paragbaxi/qualysapi | qualysapi/connector.py | QGConnector.format_api_version | def format_api_version(self, api_version):
""" Return QualysGuard API version for api_version specified.
"""
# Convert to int.
if type(api_version) == str:
api_version = api_version.lower()
if api_version[0] == 'v' and api_version[1].isdigit():
# ... | python | def format_api_version(self, api_version):
""" Return QualysGuard API version for api_version specified.
"""
# Convert to int.
if type(api_version) == str:
api_version = api_version.lower()
if api_version[0] == 'v' and api_version[1].isdigit():
# ... | [
"def",
"format_api_version",
"(",
"self",
",",
"api_version",
")",
":",
"if",
"type",
"(",
"api_version",
")",
"==",
"str",
":",
"api_version",
"=",
"api_version",
".",
"lower",
"(",
")",
"if",
"api_version",
"[",
"0",
"]",
"==",
"'v'",
"and",
"api_versi... | Return QualysGuard API version for api_version specified. | [
"Return",
"QualysGuard",
"API",
"version",
"for",
"api_version",
"specified",
"."
] | 2c8bf1d5d300117403062885c8e10b5665eb4615 | https://github.com/paragbaxi/qualysapi/blob/2c8bf1d5d300117403062885c8e10b5665eb4615/qualysapi/connector.py#L72-L97 | train |
paragbaxi/qualysapi | qualysapi/connector.py | QGConnector.which_api_version | def which_api_version(self, api_call):
""" Return QualysGuard API version for api_call specified.
"""
# Leverage patterns of calls to API methods.
if api_call.endswith('.php'):
# API v1.
return 1
elif api_call.startswith('api/2.0/'):
# API v2.... | python | def which_api_version(self, api_call):
""" Return QualysGuard API version for api_call specified.
"""
# Leverage patterns of calls to API methods.
if api_call.endswith('.php'):
# API v1.
return 1
elif api_call.startswith('api/2.0/'):
# API v2.... | [
"def",
"which_api_version",
"(",
"self",
",",
"api_call",
")",
":",
"if",
"api_call",
".",
"endswith",
"(",
"'.php'",
")",
":",
"return",
"1",
"elif",
"api_call",
".",
"startswith",
"(",
"'api/2.0/'",
")",
":",
"return",
"2",
"elif",
"'/am/'",
"in",
"api... | Return QualysGuard API version for api_call specified. | [
"Return",
"QualysGuard",
"API",
"version",
"for",
"api_call",
"specified",
"."
] | 2c8bf1d5d300117403062885c8e10b5665eb4615 | https://github.com/paragbaxi/qualysapi/blob/2c8bf1d5d300117403062885c8e10b5665eb4615/qualysapi/connector.py#L99-L116 | train |
paragbaxi/qualysapi | qualysapi/connector.py | QGConnector.url_api_version | def url_api_version(self, api_version):
""" Return base API url string for the QualysGuard api_version and server.
"""
# Set base url depending on API version.
if api_version == 1:
# QualysGuard API v1 url.
url = "https://%s/msp/" % (self.server,)
elif ap... | python | def url_api_version(self, api_version):
""" Return base API url string for the QualysGuard api_version and server.
"""
# Set base url depending on API version.
if api_version == 1:
# QualysGuard API v1 url.
url = "https://%s/msp/" % (self.server,)
elif ap... | [
"def",
"url_api_version",
"(",
"self",
",",
"api_version",
")",
":",
"if",
"api_version",
"==",
"1",
":",
"url",
"=",
"\"https://%s/msp/\"",
"%",
"(",
"self",
".",
"server",
",",
")",
"elif",
"api_version",
"==",
"2",
":",
"url",
"=",
"\"https://%s/\"",
... | Return base API url string for the QualysGuard api_version and server. | [
"Return",
"base",
"API",
"url",
"string",
"for",
"the",
"QualysGuard",
"api_version",
"and",
"server",
"."
] | 2c8bf1d5d300117403062885c8e10b5665eb4615 | https://github.com/paragbaxi/qualysapi/blob/2c8bf1d5d300117403062885c8e10b5665eb4615/qualysapi/connector.py#L118-L141 | train |
paragbaxi/qualysapi | qualysapi/connector.py | QGConnector.format_http_method | def format_http_method(self, api_version, api_call, data):
""" Return QualysGuard API http method, with POST preferred..
"""
# Define get methods for automatic http request methodology.
#
# All API v2 requests are POST methods.
if api_version == 2:
return 'po... | python | def format_http_method(self, api_version, api_call, data):
""" Return QualysGuard API http method, with POST preferred..
"""
# Define get methods for automatic http request methodology.
#
# All API v2 requests are POST methods.
if api_version == 2:
return 'po... | [
"def",
"format_http_method",
"(",
"self",
",",
"api_version",
",",
"api_call",
",",
"data",
")",
":",
"if",
"api_version",
"==",
"2",
":",
"return",
"'post'",
"elif",
"api_version",
"==",
"1",
":",
"if",
"api_call",
"in",
"self",
".",
"api_methods",
"[",
... | Return QualysGuard API http method, with POST preferred.. | [
"Return",
"QualysGuard",
"API",
"http",
"method",
"with",
"POST",
"preferred",
".."
] | 2c8bf1d5d300117403062885c8e10b5665eb4615 | https://github.com/paragbaxi/qualysapi/blob/2c8bf1d5d300117403062885c8e10b5665eb4615/qualysapi/connector.py#L143-L179 | train |
paragbaxi/qualysapi | qualysapi/connector.py | QGConnector.preformat_call | def preformat_call(self, api_call):
""" Return properly formatted QualysGuard API call.
"""
# Remove possible starting slashes or trailing question marks in call.
api_call_formatted = api_call.lstrip('/')
api_call_formatted = api_call_formatted.rstrip('?')
if api_call !=... | python | def preformat_call(self, api_call):
""" Return properly formatted QualysGuard API call.
"""
# Remove possible starting slashes or trailing question marks in call.
api_call_formatted = api_call.lstrip('/')
api_call_formatted = api_call_formatted.rstrip('?')
if api_call !=... | [
"def",
"preformat_call",
"(",
"self",
",",
"api_call",
")",
":",
"api_call_formatted",
"=",
"api_call",
".",
"lstrip",
"(",
"'/'",
")",
"api_call_formatted",
"=",
"api_call_formatted",
".",
"rstrip",
"(",
"'?'",
")",
"if",
"api_call",
"!=",
"api_call_formatted",... | Return properly formatted QualysGuard API call. | [
"Return",
"properly",
"formatted",
"QualysGuard",
"API",
"call",
"."
] | 2c8bf1d5d300117403062885c8e10b5665eb4615 | https://github.com/paragbaxi/qualysapi/blob/2c8bf1d5d300117403062885c8e10b5665eb4615/qualysapi/connector.py#L181-L191 | train |
paragbaxi/qualysapi | qualysapi/connector.py | QGConnector.format_call | def format_call(self, api_version, api_call):
""" Return properly formatted QualysGuard API call according to api_version etiquette.
"""
# Remove possible starting slashes or trailing question marks in call.
api_call = api_call.lstrip('/')
api_call = api_call.rstrip('?')
... | python | def format_call(self, api_version, api_call):
""" Return properly formatted QualysGuard API call according to api_version etiquette.
"""
# Remove possible starting slashes or trailing question marks in call.
api_call = api_call.lstrip('/')
api_call = api_call.rstrip('?')
... | [
"def",
"format_call",
"(",
"self",
",",
"api_version",
",",
"api_call",
")",
":",
"api_call",
"=",
"api_call",
".",
"lstrip",
"(",
"'/'",
")",
"api_call",
"=",
"api_call",
".",
"rstrip",
"(",
"'?'",
")",
"logger",
".",
"debug",
"(",
"'api_call post strip =... | Return properly formatted QualysGuard API call according to api_version etiquette. | [
"Return",
"properly",
"formatted",
"QualysGuard",
"API",
"call",
"according",
"to",
"api_version",
"etiquette",
"."
] | 2c8bf1d5d300117403062885c8e10b5665eb4615 | https://github.com/paragbaxi/qualysapi/blob/2c8bf1d5d300117403062885c8e10b5665eb4615/qualysapi/connector.py#L193-L210 | train |
paragbaxi/qualysapi | qualysapi/connector.py | QGConnector.format_payload | def format_payload(self, api_version, data):
""" Return appropriate QualysGuard API call.
"""
# Check if payload is for API v1 or API v2.
if (api_version in (1, 2)):
# Check if string type.
if type(data) == str:
# Convert to dictionary.
... | python | def format_payload(self, api_version, data):
""" Return appropriate QualysGuard API call.
"""
# Check if payload is for API v1 or API v2.
if (api_version in (1, 2)):
# Check if string type.
if type(data) == str:
# Convert to dictionary.
... | [
"def",
"format_payload",
"(",
"self",
",",
"api_version",
",",
"data",
")",
":",
"if",
"(",
"api_version",
"in",
"(",
"1",
",",
"2",
")",
")",
":",
"if",
"type",
"(",
"data",
")",
"==",
"str",
":",
"logger",
".",
"debug",
"(",
"'Converting string to ... | Return appropriate QualysGuard API call. | [
"Return",
"appropriate",
"QualysGuard",
"API",
"call",
"."
] | 2c8bf1d5d300117403062885c8e10b5665eb4615 | https://github.com/paragbaxi/qualysapi/blob/2c8bf1d5d300117403062885c8e10b5665eb4615/qualysapi/connector.py#L212-L233 | train |
tox-dev/tox-travis | src/tox_travis/after.py | travis_after | def travis_after(ini, envlist):
"""Wait for all jobs to finish, then exit successfully."""
# after-all disabled for pull requests
if os.environ.get('TRAVIS_PULL_REQUEST', 'false') != 'false':
return
if not after_config_matches(ini, envlist):
return # This is not the one that needs to w... | python | def travis_after(ini, envlist):
"""Wait for all jobs to finish, then exit successfully."""
# after-all disabled for pull requests
if os.environ.get('TRAVIS_PULL_REQUEST', 'false') != 'false':
return
if not after_config_matches(ini, envlist):
return # This is not the one that needs to w... | [
"def",
"travis_after",
"(",
"ini",
",",
"envlist",
")",
":",
"if",
"os",
".",
"environ",
".",
"get",
"(",
"'TRAVIS_PULL_REQUEST'",
",",
"'false'",
")",
"!=",
"'false'",
":",
"return",
"if",
"not",
"after_config_matches",
"(",
"ini",
",",
"envlist",
")",
... | Wait for all jobs to finish, then exit successfully. | [
"Wait",
"for",
"all",
"jobs",
"to",
"finish",
"then",
"exit",
"successfully",
"."
] | d97a966c19abb020298a7e4b91fe83dd1d0a4517 | https://github.com/tox-dev/tox-travis/blob/d97a966c19abb020298a7e4b91fe83dd1d0a4517/src/tox_travis/after.py#L25-L62 | train |
tox-dev/tox-travis | src/tox_travis/after.py | after_config_matches | def after_config_matches(ini, envlist):
"""Determine if this job should wait for the others."""
section = ini.sections.get('travis:after', {})
if not section:
return False # Never wait if it's not configured
if 'envlist' in section or 'toxenv' in section:
if 'toxenv' in section:
... | python | def after_config_matches(ini, envlist):
"""Determine if this job should wait for the others."""
section = ini.sections.get('travis:after', {})
if not section:
return False # Never wait if it's not configured
if 'envlist' in section or 'toxenv' in section:
if 'toxenv' in section:
... | [
"def",
"after_config_matches",
"(",
"ini",
",",
"envlist",
")",
":",
"section",
"=",
"ini",
".",
"sections",
".",
"get",
"(",
"'travis:after'",
",",
"{",
"}",
")",
"if",
"not",
"section",
":",
"return",
"False",
"if",
"'envlist'",
"in",
"section",
"or",
... | Determine if this job should wait for the others. | [
"Determine",
"if",
"this",
"job",
"should",
"wait",
"for",
"the",
"others",
"."
] | d97a966c19abb020298a7e4b91fe83dd1d0a4517 | https://github.com/tox-dev/tox-travis/blob/d97a966c19abb020298a7e4b91fe83dd1d0a4517/src/tox_travis/after.py#L65-L96 | train |
tox-dev/tox-travis | src/tox_travis/after.py | get_job_statuses | def get_job_statuses(github_token, api_url, build_id,
polling_interval, job_number):
"""Wait for all the travis jobs to complete.
Once the other jobs are complete, return a list of booleans,
indicating whether or not the job was successful. Ignore jobs
marked "allow_failure".
"... | python | def get_job_statuses(github_token, api_url, build_id,
polling_interval, job_number):
"""Wait for all the travis jobs to complete.
Once the other jobs are complete, return a list of booleans,
indicating whether or not the job was successful. Ignore jobs
marked "allow_failure".
"... | [
"def",
"get_job_statuses",
"(",
"github_token",
",",
"api_url",
",",
"build_id",
",",
"polling_interval",
",",
"job_number",
")",
":",
"auth",
"=",
"get_json",
"(",
"'{api_url}/auth/github'",
".",
"format",
"(",
"api_url",
"=",
"api_url",
")",
",",
"data",
"="... | Wait for all the travis jobs to complete.
Once the other jobs are complete, return a list of booleans,
indicating whether or not the job was successful. Ignore jobs
marked "allow_failure". | [
"Wait",
"for",
"all",
"the",
"travis",
"jobs",
"to",
"complete",
"."
] | d97a966c19abb020298a7e4b91fe83dd1d0a4517 | https://github.com/tox-dev/tox-travis/blob/d97a966c19abb020298a7e4b91fe83dd1d0a4517/src/tox_travis/after.py#L99-L127 | train |
tox-dev/tox-travis | src/tox_travis/after.py | get_json | def get_json(url, auth=None, data=None):
"""Make a GET request, and return the response as parsed JSON."""
headers = {
'Accept': 'application/vnd.travis-ci.2+json',
'User-Agent': 'Travis/Tox-Travis-1.0a',
# User-Agent must start with "Travis/" in order to work
}
if auth:
... | python | def get_json(url, auth=None, data=None):
"""Make a GET request, and return the response as parsed JSON."""
headers = {
'Accept': 'application/vnd.travis-ci.2+json',
'User-Agent': 'Travis/Tox-Travis-1.0a',
# User-Agent must start with "Travis/" in order to work
}
if auth:
... | [
"def",
"get_json",
"(",
"url",
",",
"auth",
"=",
"None",
",",
"data",
"=",
"None",
")",
":",
"headers",
"=",
"{",
"'Accept'",
":",
"'application/vnd.travis-ci.2+json'",
",",
"'User-Agent'",
":",
"'Travis/Tox-Travis-1.0a'",
",",
"}",
"if",
"auth",
":",
"heade... | Make a GET request, and return the response as parsed JSON. | [
"Make",
"a",
"GET",
"request",
"and",
"return",
"the",
"response",
"as",
"parsed",
"JSON",
"."
] | d97a966c19abb020298a7e4b91fe83dd1d0a4517 | https://github.com/tox-dev/tox-travis/blob/d97a966c19abb020298a7e4b91fe83dd1d0a4517/src/tox_travis/after.py#L130-L147 | train |
tox-dev/tox-travis | src/tox_travis/envlist.py | detect_envlist | def detect_envlist(ini):
"""Default envlist automatically based on the Travis environment."""
# Find the envs that tox knows about
declared_envs = get_declared_envs(ini)
# Find all the envs for all the desired factors given
desired_factors = get_desired_factors(ini)
# Reduce desired factors
... | python | def detect_envlist(ini):
"""Default envlist automatically based on the Travis environment."""
# Find the envs that tox knows about
declared_envs = get_declared_envs(ini)
# Find all the envs for all the desired factors given
desired_factors = get_desired_factors(ini)
# Reduce desired factors
... | [
"def",
"detect_envlist",
"(",
"ini",
")",
":",
"declared_envs",
"=",
"get_declared_envs",
"(",
"ini",
")",
"desired_factors",
"=",
"get_desired_factors",
"(",
"ini",
")",
"desired_envs",
"=",
"[",
"'-'",
".",
"join",
"(",
"env",
")",
"for",
"env",
"in",
"p... | Default envlist automatically based on the Travis environment. | [
"Default",
"envlist",
"automatically",
"based",
"on",
"the",
"Travis",
"environment",
"."
] | d97a966c19abb020298a7e4b91fe83dd1d0a4517 | https://github.com/tox-dev/tox-travis/blob/d97a966c19abb020298a7e4b91fe83dd1d0a4517/src/tox_travis/envlist.py#L14-L27 | train |
tox-dev/tox-travis | src/tox_travis/envlist.py | autogen_envconfigs | def autogen_envconfigs(config, envs):
"""Make the envconfigs for undeclared envs.
This is a stripped-down version of parseini.__init__ made for making
an envconfig.
"""
prefix = 'tox' if config.toxinipath.basename == 'setup.cfg' else None
reader = tox.config.SectionReader("tox", config._cfg, pr... | python | def autogen_envconfigs(config, envs):
"""Make the envconfigs for undeclared envs.
This is a stripped-down version of parseini.__init__ made for making
an envconfig.
"""
prefix = 'tox' if config.toxinipath.basename == 'setup.cfg' else None
reader = tox.config.SectionReader("tox", config._cfg, pr... | [
"def",
"autogen_envconfigs",
"(",
"config",
",",
"envs",
")",
":",
"prefix",
"=",
"'tox'",
"if",
"config",
".",
"toxinipath",
".",
"basename",
"==",
"'setup.cfg'",
"else",
"None",
"reader",
"=",
"tox",
".",
"config",
".",
"SectionReader",
"(",
"\"tox\"",
"... | Make the envconfigs for undeclared envs.
This is a stripped-down version of parseini.__init__ made for making
an envconfig. | [
"Make",
"the",
"envconfigs",
"for",
"undeclared",
"envs",
"."
] | d97a966c19abb020298a7e4b91fe83dd1d0a4517 | https://github.com/tox-dev/tox-travis/blob/d97a966c19abb020298a7e4b91fe83dd1d0a4517/src/tox_travis/envlist.py#L30-L59 | train |
tox-dev/tox-travis | src/tox_travis/envlist.py | get_declared_envs | def get_declared_envs(ini):
"""Get the full list of envs from the tox ini.
This notably also includes envs that aren't in the envlist,
but are declared by having their own testenv:envname section.
The envs are expected in a particular order. First the ones
declared in the envlist, then the other t... | python | def get_declared_envs(ini):
"""Get the full list of envs from the tox ini.
This notably also includes envs that aren't in the envlist,
but are declared by having their own testenv:envname section.
The envs are expected in a particular order. First the ones
declared in the envlist, then the other t... | [
"def",
"get_declared_envs",
"(",
"ini",
")",
":",
"tox_section_name",
"=",
"'tox:tox'",
"if",
"ini",
".",
"path",
".",
"endswith",
"(",
"'setup.cfg'",
")",
"else",
"'tox'",
"tox_section",
"=",
"ini",
".",
"sections",
".",
"get",
"(",
"tox_section_name",
",",... | Get the full list of envs from the tox ini.
This notably also includes envs that aren't in the envlist,
but are declared by having their own testenv:envname section.
The envs are expected in a particular order. First the ones
declared in the envlist, then the other testenvs in order. | [
"Get",
"the",
"full",
"list",
"of",
"envs",
"from",
"the",
"tox",
"ini",
"."
] | d97a966c19abb020298a7e4b91fe83dd1d0a4517 | https://github.com/tox-dev/tox-travis/blob/d97a966c19abb020298a7e4b91fe83dd1d0a4517/src/tox_travis/envlist.py#L62-L81 | train |
tox-dev/tox-travis | src/tox_travis/envlist.py | get_version_info | def get_version_info():
"""Get version info from the sys module.
Override from environment for testing.
"""
overrides = os.environ.get('__TOX_TRAVIS_SYS_VERSION')
if overrides:
version, major, minor = overrides.split(',')[:3]
major, minor = int(major), int(minor)
else:
v... | python | def get_version_info():
"""Get version info from the sys module.
Override from environment for testing.
"""
overrides = os.environ.get('__TOX_TRAVIS_SYS_VERSION')
if overrides:
version, major, minor = overrides.split(',')[:3]
major, minor = int(major), int(minor)
else:
v... | [
"def",
"get_version_info",
"(",
")",
":",
"overrides",
"=",
"os",
".",
"environ",
".",
"get",
"(",
"'__TOX_TRAVIS_SYS_VERSION'",
")",
"if",
"overrides",
":",
"version",
",",
"major",
",",
"minor",
"=",
"overrides",
".",
"split",
"(",
"','",
")",
"[",
":"... | Get version info from the sys module.
Override from environment for testing. | [
"Get",
"version",
"info",
"from",
"the",
"sys",
"module",
"."
] | d97a966c19abb020298a7e4b91fe83dd1d0a4517 | https://github.com/tox-dev/tox-travis/blob/d97a966c19abb020298a7e4b91fe83dd1d0a4517/src/tox_travis/envlist.py#L84-L95 | train |
tox-dev/tox-travis | src/tox_travis/envlist.py | guess_python_env | def guess_python_env():
"""Guess the default python env to use."""
version, major, minor = get_version_info()
if 'PyPy' in version:
return 'pypy3' if major == 3 else 'pypy'
return 'py{major}{minor}'.format(major=major, minor=minor) | python | def guess_python_env():
"""Guess the default python env to use."""
version, major, minor = get_version_info()
if 'PyPy' in version:
return 'pypy3' if major == 3 else 'pypy'
return 'py{major}{minor}'.format(major=major, minor=minor) | [
"def",
"guess_python_env",
"(",
")",
":",
"version",
",",
"major",
",",
"minor",
"=",
"get_version_info",
"(",
")",
"if",
"'PyPy'",
"in",
"version",
":",
"return",
"'pypy3'",
"if",
"major",
"==",
"3",
"else",
"'pypy'",
"return",
"'py{major}{minor}'",
".",
... | Guess the default python env to use. | [
"Guess",
"the",
"default",
"python",
"env",
"to",
"use",
"."
] | d97a966c19abb020298a7e4b91fe83dd1d0a4517 | https://github.com/tox-dev/tox-travis/blob/d97a966c19abb020298a7e4b91fe83dd1d0a4517/src/tox_travis/envlist.py#L98-L103 | train |
tox-dev/tox-travis | src/tox_travis/envlist.py | get_default_envlist | def get_default_envlist(version):
"""Parse a default tox env based on the version.
The version comes from the ``TRAVIS_PYTHON_VERSION`` environment
variable. If that isn't set or is invalid, then use
sys.version_info to come up with a reasonable default.
"""
if version in ['pypy', 'pypy3']:
... | python | def get_default_envlist(version):
"""Parse a default tox env based on the version.
The version comes from the ``TRAVIS_PYTHON_VERSION`` environment
variable. If that isn't set or is invalid, then use
sys.version_info to come up with a reasonable default.
"""
if version in ['pypy', 'pypy3']:
... | [
"def",
"get_default_envlist",
"(",
"version",
")",
":",
"if",
"version",
"in",
"[",
"'pypy'",
",",
"'pypy3'",
"]",
":",
"return",
"version",
"match",
"=",
"re",
".",
"match",
"(",
"r'^(\\d)\\.(\\d)(?:\\.\\d+)?$'",
",",
"version",
"or",
"''",
")",
"if",
"ma... | Parse a default tox env based on the version.
The version comes from the ``TRAVIS_PYTHON_VERSION`` environment
variable. If that isn't set or is invalid, then use
sys.version_info to come up with a reasonable default. | [
"Parse",
"a",
"default",
"tox",
"env",
"based",
"on",
"the",
"version",
"."
] | d97a966c19abb020298a7e4b91fe83dd1d0a4517 | https://github.com/tox-dev/tox-travis/blob/d97a966c19abb020298a7e4b91fe83dd1d0a4517/src/tox_travis/envlist.py#L106-L122 | train |
tox-dev/tox-travis | src/tox_travis/envlist.py | get_desired_factors | def get_desired_factors(ini):
"""Get the list of desired envs per declared factor.
Look at all the accepted configuration locations, and give a list
of envlists, one for each Travis factor found.
Look in the ``[travis]`` section for the known Travis factors,
which are backed by environment variabl... | python | def get_desired_factors(ini):
"""Get the list of desired envs per declared factor.
Look at all the accepted configuration locations, and give a list
of envlists, one for each Travis factor found.
Look in the ``[travis]`` section for the known Travis factors,
which are backed by environment variabl... | [
"def",
"get_desired_factors",
"(",
"ini",
")",
":",
"travis_section",
"=",
"ini",
".",
"sections",
".",
"get",
"(",
"'travis'",
",",
"{",
"}",
")",
"found_factors",
"=",
"[",
"(",
"factor",
",",
"parse_dict",
"(",
"travis_section",
"[",
"factor",
"]",
")... | Get the list of desired envs per declared factor.
Look at all the accepted configuration locations, and give a list
of envlists, one for each Travis factor found.
Look in the ``[travis]`` section for the known Travis factors,
which are backed by environment variable checking behind the
scenes, but... | [
"Get",
"the",
"list",
"of",
"desired",
"envs",
"per",
"declared",
"factor",
"."
] | d97a966c19abb020298a7e4b91fe83dd1d0a4517 | https://github.com/tox-dev/tox-travis/blob/d97a966c19abb020298a7e4b91fe83dd1d0a4517/src/tox_travis/envlist.py#L125-L197 | train |
tox-dev/tox-travis | src/tox_travis/envlist.py | match_envs | def match_envs(declared_envs, desired_envs, passthru):
"""Determine the envs that match the desired_envs.
If ``passthru` is True, and none of the declared envs match the
desired envs, then the desired envs will be used verbatim.
:param declared_envs: The envs that are declared in the tox config.
:... | python | def match_envs(declared_envs, desired_envs, passthru):
"""Determine the envs that match the desired_envs.
If ``passthru` is True, and none of the declared envs match the
desired envs, then the desired envs will be used verbatim.
:param declared_envs: The envs that are declared in the tox config.
:... | [
"def",
"match_envs",
"(",
"declared_envs",
",",
"desired_envs",
",",
"passthru",
")",
":",
"matched",
"=",
"[",
"declared",
"for",
"declared",
"in",
"declared_envs",
"if",
"any",
"(",
"env_matches",
"(",
"declared",
",",
"desired",
")",
"for",
"desired",
"in... | Determine the envs that match the desired_envs.
If ``passthru` is True, and none of the declared envs match the
desired envs, then the desired envs will be used verbatim.
:param declared_envs: The envs that are declared in the tox config.
:param desired_envs: The envs desired from the tox-travis confi... | [
"Determine",
"the",
"envs",
"that",
"match",
"the",
"desired_envs",
"."
] | d97a966c19abb020298a7e4b91fe83dd1d0a4517 | https://github.com/tox-dev/tox-travis/blob/d97a966c19abb020298a7e4b91fe83dd1d0a4517/src/tox_travis/envlist.py#L200-L215 | train |
tox-dev/tox-travis | src/tox_travis/envlist.py | env_matches | def env_matches(declared, desired):
"""Determine if a declared env matches a desired env.
Rather than simply using the name of the env verbatim, take a
closer look to see if all the desired factors are fulfilled. If
the desired factors are fulfilled, but there are other factors,
it should still mat... | python | def env_matches(declared, desired):
"""Determine if a declared env matches a desired env.
Rather than simply using the name of the env verbatim, take a
closer look to see if all the desired factors are fulfilled. If
the desired factors are fulfilled, but there are other factors,
it should still mat... | [
"def",
"env_matches",
"(",
"declared",
",",
"desired",
")",
":",
"desired_factors",
"=",
"desired",
".",
"split",
"(",
"'-'",
")",
"declared_factors",
"=",
"declared",
".",
"split",
"(",
"'-'",
")",
"return",
"all",
"(",
"factor",
"in",
"declared_factors",
... | Determine if a declared env matches a desired env.
Rather than simply using the name of the env verbatim, take a
closer look to see if all the desired factors are fulfilled. If
the desired factors are fulfilled, but there are other factors,
it should still match the env. | [
"Determine",
"if",
"a",
"declared",
"env",
"matches",
"a",
"desired",
"env",
"."
] | d97a966c19abb020298a7e4b91fe83dd1d0a4517 | https://github.com/tox-dev/tox-travis/blob/d97a966c19abb020298a7e4b91fe83dd1d0a4517/src/tox_travis/envlist.py#L218-L228 | train |
tox-dev/tox-travis | src/tox_travis/envlist.py | override_ignore_outcome | def override_ignore_outcome(ini):
"""Decide whether to override ignore_outcomes."""
travis_reader = tox.config.SectionReader("travis", ini)
return travis_reader.getbool('unignore_outcomes', False) | python | def override_ignore_outcome(ini):
"""Decide whether to override ignore_outcomes."""
travis_reader = tox.config.SectionReader("travis", ini)
return travis_reader.getbool('unignore_outcomes', False) | [
"def",
"override_ignore_outcome",
"(",
"ini",
")",
":",
"travis_reader",
"=",
"tox",
".",
"config",
".",
"SectionReader",
"(",
"\"travis\"",
",",
"ini",
")",
"return",
"travis_reader",
".",
"getbool",
"(",
"'unignore_outcomes'",
",",
"False",
")"
] | Decide whether to override ignore_outcomes. | [
"Decide",
"whether",
"to",
"override",
"ignore_outcomes",
"."
] | d97a966c19abb020298a7e4b91fe83dd1d0a4517 | https://github.com/tox-dev/tox-travis/blob/d97a966c19abb020298a7e4b91fe83dd1d0a4517/src/tox_travis/envlist.py#L231-L234 | train |
tox-dev/tox-travis | src/tox_travis/hooks.py | tox_addoption | def tox_addoption(parser):
"""Add arguments and needed monkeypatches."""
parser.add_argument(
'--travis-after', dest='travis_after', action='store_true',
help='Exit successfully after all Travis jobs complete successfully.')
if 'TRAVIS' in os.environ:
pypy_version_monkeypatch()
... | python | def tox_addoption(parser):
"""Add arguments and needed monkeypatches."""
parser.add_argument(
'--travis-after', dest='travis_after', action='store_true',
help='Exit successfully after all Travis jobs complete successfully.')
if 'TRAVIS' in os.environ:
pypy_version_monkeypatch()
... | [
"def",
"tox_addoption",
"(",
"parser",
")",
":",
"parser",
".",
"add_argument",
"(",
"'--travis-after'",
",",
"dest",
"=",
"'travis_after'",
",",
"action",
"=",
"'store_true'",
",",
"help",
"=",
"'Exit successfully after all Travis jobs complete successfully.'",
")",
... | Add arguments and needed monkeypatches. | [
"Add",
"arguments",
"and",
"needed",
"monkeypatches",
"."
] | d97a966c19abb020298a7e4b91fe83dd1d0a4517 | https://github.com/tox-dev/tox-travis/blob/d97a966c19abb020298a7e4b91fe83dd1d0a4517/src/tox_travis/hooks.py#L19-L27 | train |
tox-dev/tox-travis | src/tox_travis/hooks.py | tox_configure | def tox_configure(config):
"""Check for the presence of the added options."""
if 'TRAVIS' not in os.environ:
return
ini = config._cfg
# envlist
if 'TOXENV' not in os.environ and not config.option.env:
envlist = detect_envlist(ini)
undeclared = set(envlist) - set(config.envc... | python | def tox_configure(config):
"""Check for the presence of the added options."""
if 'TRAVIS' not in os.environ:
return
ini = config._cfg
# envlist
if 'TOXENV' not in os.environ and not config.option.env:
envlist = detect_envlist(ini)
undeclared = set(envlist) - set(config.envc... | [
"def",
"tox_configure",
"(",
"config",
")",
":",
"if",
"'TRAVIS'",
"not",
"in",
"os",
".",
"environ",
":",
"return",
"ini",
"=",
"config",
".",
"_cfg",
"if",
"'TOXENV'",
"not",
"in",
"os",
".",
"environ",
"and",
"not",
"config",
".",
"option",
".",
"... | Check for the presence of the added options. | [
"Check",
"for",
"the",
"presence",
"of",
"the",
"added",
"options",
"."
] | d97a966c19abb020298a7e4b91fe83dd1d0a4517 | https://github.com/tox-dev/tox-travis/blob/d97a966c19abb020298a7e4b91fe83dd1d0a4517/src/tox_travis/hooks.py#L31-L59 | train |
tox-dev/tox-travis | src/tox_travis/utils.py | parse_dict | def parse_dict(value):
"""Parse a dict value from the tox config.
.. code-block: ini
[travis]
python =
2.7: py27, docs
3.5: py{35,36}
With this config, the value of ``python`` would be parsed
by this function, and would return::
{
'2.7': 'p... | python | def parse_dict(value):
"""Parse a dict value from the tox config.
.. code-block: ini
[travis]
python =
2.7: py27, docs
3.5: py{35,36}
With this config, the value of ``python`` would be parsed
by this function, and would return::
{
'2.7': 'p... | [
"def",
"parse_dict",
"(",
"value",
")",
":",
"lines",
"=",
"[",
"line",
".",
"strip",
"(",
")",
"for",
"line",
"in",
"value",
".",
"strip",
"(",
")",
".",
"splitlines",
"(",
")",
"]",
"pairs",
"=",
"[",
"line",
".",
"split",
"(",
"':'",
",",
"1... | Parse a dict value from the tox config.
.. code-block: ini
[travis]
python =
2.7: py27, docs
3.5: py{35,36}
With this config, the value of ``python`` would be parsed
by this function, and would return::
{
'2.7': 'py27, docs',
'3.5':... | [
"Parse",
"a",
"dict",
"value",
"from",
"the",
"tox",
"config",
"."
] | d97a966c19abb020298a7e4b91fe83dd1d0a4517 | https://github.com/tox-dev/tox-travis/blob/d97a966c19abb020298a7e4b91fe83dd1d0a4517/src/tox_travis/utils.py#L11-L32 | train |
tox-dev/tox-travis | src/tox_travis/hacks.py | pypy_version_monkeypatch | def pypy_version_monkeypatch():
"""Patch Tox to work with non-default PyPy 3 versions."""
# Travis virtualenv do not provide `pypy3`, which tox tries to execute.
# This doesnt affect Travis python version `pypy3`, as the pyenv pypy3
# is in the PATH.
# https://github.com/travis-ci/travis-ci/issues/6... | python | def pypy_version_monkeypatch():
"""Patch Tox to work with non-default PyPy 3 versions."""
# Travis virtualenv do not provide `pypy3`, which tox tries to execute.
# This doesnt affect Travis python version `pypy3`, as the pyenv pypy3
# is in the PATH.
# https://github.com/travis-ci/travis-ci/issues/6... | [
"def",
"pypy_version_monkeypatch",
"(",
")",
":",
"version",
"=",
"os",
".",
"environ",
".",
"get",
"(",
"'TRAVIS_PYTHON_VERSION'",
")",
"if",
"version",
"and",
"default_factors",
"and",
"version",
".",
"startswith",
"(",
"'pypy3.3-'",
")",
":",
"default_factors... | Patch Tox to work with non-default PyPy 3 versions. | [
"Patch",
"Tox",
"to",
"work",
"with",
"non",
"-",
"default",
"PyPy",
"3",
"versions",
"."
] | d97a966c19abb020298a7e4b91fe83dd1d0a4517 | https://github.com/tox-dev/tox-travis/blob/d97a966c19abb020298a7e4b91fe83dd1d0a4517/src/tox_travis/hacks.py#L9-L18 | train |
adafruit/Adafruit_CircuitPython_MCP230xx | adafruit_mcp230xx.py | DigitalInOut.direction | def direction(self):
"""The direction of the pin, either True for an input or
False for an output.
"""
if _get_bit(self._mcp.iodir, self._pin):
return digitalio.Direction.INPUT
return digitalio.Direction.OUTPUT | python | def direction(self):
"""The direction of the pin, either True for an input or
False for an output.
"""
if _get_bit(self._mcp.iodir, self._pin):
return digitalio.Direction.INPUT
return digitalio.Direction.OUTPUT | [
"def",
"direction",
"(",
"self",
")",
":",
"if",
"_get_bit",
"(",
"self",
".",
"_mcp",
".",
"iodir",
",",
"self",
".",
"_pin",
")",
":",
"return",
"digitalio",
".",
"Direction",
".",
"INPUT",
"return",
"digitalio",
".",
"Direction",
".",
"OUTPUT"
] | The direction of the pin, either True for an input or
False for an output. | [
"The",
"direction",
"of",
"the",
"pin",
"either",
"True",
"for",
"an",
"input",
"or",
"False",
"for",
"an",
"output",
"."
] | da9480befecef31c2428062919b9f3da6f428d15 | https://github.com/adafruit/Adafruit_CircuitPython_MCP230xx/blob/da9480befecef31c2428062919b9f3da6f428d15/adafruit_mcp230xx.py#L148-L154 | train |
adafruit/Adafruit_CircuitPython_MCP230xx | adafruit_mcp230xx.py | DigitalInOut.pull | def pull(self):
"""Enable or disable internal pull-up resistors for this pin. A
value of digitalio.Pull.UP will enable a pull-up resistor, and None will
disable it. Pull-down resistors are NOT supported!
"""
if _get_bit(self._mcp.gppu, self._pin):
return digitalio.P... | python | def pull(self):
"""Enable or disable internal pull-up resistors for this pin. A
value of digitalio.Pull.UP will enable a pull-up resistor, and None will
disable it. Pull-down resistors are NOT supported!
"""
if _get_bit(self._mcp.gppu, self._pin):
return digitalio.P... | [
"def",
"pull",
"(",
"self",
")",
":",
"if",
"_get_bit",
"(",
"self",
".",
"_mcp",
".",
"gppu",
",",
"self",
".",
"_pin",
")",
":",
"return",
"digitalio",
".",
"Pull",
".",
"UP",
"return",
"None"
] | Enable or disable internal pull-up resistors for this pin. A
value of digitalio.Pull.UP will enable a pull-up resistor, and None will
disable it. Pull-down resistors are NOT supported! | [
"Enable",
"or",
"disable",
"internal",
"pull",
"-",
"up",
"resistors",
"for",
"this",
"pin",
".",
"A",
"value",
"of",
"digitalio",
".",
"Pull",
".",
"UP",
"will",
"enable",
"a",
"pull",
"-",
"up",
"resistor",
"and",
"None",
"will",
"disable",
"it",
"."... | da9480befecef31c2428062919b9f3da6f428d15 | https://github.com/adafruit/Adafruit_CircuitPython_MCP230xx/blob/da9480befecef31c2428062919b9f3da6f428d15/adafruit_mcp230xx.py#L166-L173 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/statistics/table.py | get_throttled_read_event_count | def get_throttled_read_event_count(
table_name, lookback_window_start=15, lookback_period=5):
""" Returns the number of throttled read events during a given time frame
:type table_name: str
:param table_name: Name of the DynamoDB table
:type lookback_window_start: int
:param lookback_window... | python | def get_throttled_read_event_count(
table_name, lookback_window_start=15, lookback_period=5):
""" Returns the number of throttled read events during a given time frame
:type table_name: str
:param table_name: Name of the DynamoDB table
:type lookback_window_start: int
:param lookback_window... | [
"def",
"get_throttled_read_event_count",
"(",
"table_name",
",",
"lookback_window_start",
"=",
"15",
",",
"lookback_period",
"=",
"5",
")",
":",
"try",
":",
"metrics",
"=",
"__get_aws_metric",
"(",
"table_name",
",",
"lookback_window_start",
",",
"lookback_period",
... | Returns the number of throttled read events during a given time frame
:type table_name: str
:param table_name: Name of the DynamoDB table
:type lookback_window_start: int
:param lookback_window_start: Relative start time for the CloudWatch metric
:type lookback_period: int
:param lookback_perio... | [
"Returns",
"the",
"number",
"of",
"throttled",
"read",
"events",
"during",
"a",
"given",
"time",
"frame"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/statistics/table.py#L58-L86 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/statistics/table.py | get_throttled_by_consumed_read_percent | def get_throttled_by_consumed_read_percent(
table_name, lookback_window_start=15, lookback_period=5):
""" Returns the number of throttled read events in percent of consumption
:type table_name: str
:param table_name: Name of the DynamoDB table
:type lookback_window_start: int
:param lookbac... | python | def get_throttled_by_consumed_read_percent(
table_name, lookback_window_start=15, lookback_period=5):
""" Returns the number of throttled read events in percent of consumption
:type table_name: str
:param table_name: Name of the DynamoDB table
:type lookback_window_start: int
:param lookbac... | [
"def",
"get_throttled_by_consumed_read_percent",
"(",
"table_name",
",",
"lookback_window_start",
"=",
"15",
",",
"lookback_period",
"=",
"5",
")",
":",
"try",
":",
"metrics1",
"=",
"__get_aws_metric",
"(",
"table_name",
",",
"lookback_window_start",
",",
"lookback_pe... | Returns the number of throttled read events in percent of consumption
:type table_name: str
:param table_name: Name of the DynamoDB table
:type lookback_window_start: int
:param lookback_window_start: Relative start time for the CloudWatch metric
:type lookback_period: int
:param lookback_perio... | [
"Returns",
"the",
"number",
"of",
"throttled",
"read",
"events",
"in",
"percent",
"of",
"consumption"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/statistics/table.py#L132-L171 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/statistics/table.py | get_throttled_by_consumed_write_percent | def get_throttled_by_consumed_write_percent(
table_name, lookback_window_start=15, lookback_period=5):
""" Returns the number of throttled write events in percent of consumption
:type table_name: str
:param table_name: Name of the DynamoDB table
:type lookback_window_start: int
:param lookb... | python | def get_throttled_by_consumed_write_percent(
table_name, lookback_window_start=15, lookback_period=5):
""" Returns the number of throttled write events in percent of consumption
:type table_name: str
:param table_name: Name of the DynamoDB table
:type lookback_window_start: int
:param lookb... | [
"def",
"get_throttled_by_consumed_write_percent",
"(",
"table_name",
",",
"lookback_window_start",
"=",
"15",
",",
"lookback_period",
"=",
"5",
")",
":",
"try",
":",
"metrics1",
"=",
"__get_aws_metric",
"(",
"table_name",
",",
"lookback_window_start",
",",
"lookback_p... | Returns the number of throttled write events in percent of consumption
:type table_name: str
:param table_name: Name of the DynamoDB table
:type lookback_window_start: int
:param lookback_window_start: Relative start time for the CloudWatch metric
:type lookback_period: int
:param lookback_peri... | [
"Returns",
"the",
"number",
"of",
"throttled",
"write",
"events",
"in",
"percent",
"of",
"consumption"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/statistics/table.py#L291-L332 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/statistics/table.py | __get_aws_metric | def __get_aws_metric(table_name, lookback_window_start, lookback_period,
metric_name):
""" Returns a metric list from the AWS CloudWatch service, may return
None if no metric exists
:type table_name: str
:param table_name: Name of the DynamoDB table
:type lookback_window_start... | python | def __get_aws_metric(table_name, lookback_window_start, lookback_period,
metric_name):
""" Returns a metric list from the AWS CloudWatch service, may return
None if no metric exists
:type table_name: str
:param table_name: Name of the DynamoDB table
:type lookback_window_start... | [
"def",
"__get_aws_metric",
"(",
"table_name",
",",
"lookback_window_start",
",",
"lookback_period",
",",
"metric_name",
")",
":",
"try",
":",
"now",
"=",
"datetime",
".",
"utcnow",
"(",
")",
"start_time",
"=",
"now",
"-",
"timedelta",
"(",
"minutes",
"=",
"l... | Returns a metric list from the AWS CloudWatch service, may return
None if no metric exists
:type table_name: str
:param table_name: Name of the DynamoDB table
:type lookback_window_start: int
:param lookback_window_start: How many minutes to look at
:type lookback_period: int
:type lookbac... | [
"Returns",
"a",
"metric",
"list",
"from",
"the",
"AWS",
"CloudWatch",
"service",
"may",
"return",
"None",
"if",
"no",
"metric",
"exists"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/statistics/table.py#L340-L378 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/core/gsi.py | ensure_provisioning | def ensure_provisioning(
table_name, table_key, gsi_name, gsi_key,
num_consec_read_checks, num_consec_write_checks):
""" Ensure that provisioning is correct for Global Secondary Indexes
:type table_name: str
:param table_name: Name of the DynamoDB table
:type table_key: str
:param t... | python | def ensure_provisioning(
table_name, table_key, gsi_name, gsi_key,
num_consec_read_checks, num_consec_write_checks):
""" Ensure that provisioning is correct for Global Secondary Indexes
:type table_name: str
:param table_name: Name of the DynamoDB table
:type table_key: str
:param t... | [
"def",
"ensure_provisioning",
"(",
"table_name",
",",
"table_key",
",",
"gsi_name",
",",
"gsi_key",
",",
"num_consec_read_checks",
",",
"num_consec_write_checks",
")",
":",
"if",
"get_global_option",
"(",
"'circuit_breaker_url'",
")",
"or",
"get_gsi_option",
"(",
"tab... | Ensure that provisioning is correct for Global Secondary Indexes
:type table_name: str
:param table_name: Name of the DynamoDB table
:type table_key: str
:param table_key: Table configuration option key name
:type gsi_name: str
:param gsi_name: Name of the GSI
:type gsi_key: str
:param ... | [
"Ensure",
"that",
"provisioning",
"is",
"correct",
"for",
"Global",
"Secondary",
"Indexes"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/core/gsi.py#L13-L93 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/core/gsi.py | __update_throughput | def __update_throughput(
table_name, table_key, gsi_name, gsi_key, read_units, write_units):
""" Update throughput on the GSI
:type table_name: str
:param table_name: Name of the DynamoDB table
:type table_key: str
:param table_key: Table configuration option key name
:type gsi_name: st... | python | def __update_throughput(
table_name, table_key, gsi_name, gsi_key, read_units, write_units):
""" Update throughput on the GSI
:type table_name: str
:param table_name: Name of the DynamoDB table
:type table_key: str
:param table_key: Table configuration option key name
:type gsi_name: st... | [
"def",
"__update_throughput",
"(",
"table_name",
",",
"table_key",
",",
"gsi_name",
",",
"gsi_key",
",",
"read_units",
",",
"write_units",
")",
":",
"try",
":",
"current_ru",
"=",
"dynamodb",
".",
"get_provisioned_gsi_read_units",
"(",
"table_name",
",",
"gsi_name... | Update throughput on the GSI
:type table_name: str
:param table_name: Name of the DynamoDB table
:type table_key: str
:param table_key: Table configuration option key name
:type gsi_name: str
:param gsi_name: Name of the GSI
:type gsi_key: str
:param gsi_key: Configuration option key na... | [
"Update",
"throughput",
"on",
"the",
"GSI"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/core/gsi.py#L1027-L1088 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/core/circuit_breaker.py | is_open | def is_open(table_name=None, table_key=None, gsi_name=None, gsi_key=None):
""" Checks whether the circuit breaker is open
:param table_name: Name of the table being checked
:param table_key: Configuration key for table
:param gsi_name: Name of the GSI being checked
:param gsi_key: Configuration key... | python | def is_open(table_name=None, table_key=None, gsi_name=None, gsi_key=None):
""" Checks whether the circuit breaker is open
:param table_name: Name of the table being checked
:param table_key: Configuration key for table
:param gsi_name: Name of the GSI being checked
:param gsi_key: Configuration key... | [
"def",
"is_open",
"(",
"table_name",
"=",
"None",
",",
"table_key",
"=",
"None",
",",
"gsi_name",
"=",
"None",
",",
"gsi_key",
"=",
"None",
")",
":",
"logger",
".",
"debug",
"(",
"'Checking circuit breaker status'",
")",
"pattern",
"=",
"re",
".",
"compile... | Checks whether the circuit breaker is open
:param table_name: Name of the table being checked
:param table_key: Configuration key for table
:param gsi_name: Name of the GSI being checked
:param gsi_key: Configuration key for the GSI
:returns: bool -- True if the circuit is open | [
"Checks",
"whether",
"the",
"circuit",
"breaker",
"is",
"open"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/core/circuit_breaker.py#L13-L97 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/aws/cloudwatch.py | __get_connection_cloudwatch | def __get_connection_cloudwatch():
""" Ensure connection to CloudWatch """
region = get_global_option('region')
try:
if (get_global_option('aws_access_key_id') and
get_global_option('aws_secret_access_key')):
logger.debug(
'Authenticating to CloudWatch usi... | python | def __get_connection_cloudwatch():
""" Ensure connection to CloudWatch """
region = get_global_option('region')
try:
if (get_global_option('aws_access_key_id') and
get_global_option('aws_secret_access_key')):
logger.debug(
'Authenticating to CloudWatch usi... | [
"def",
"__get_connection_cloudwatch",
"(",
")",
":",
"region",
"=",
"get_global_option",
"(",
"'region'",
")",
"try",
":",
"if",
"(",
"get_global_option",
"(",
"'aws_access_key_id'",
")",
"and",
"get_global_option",
"(",
"'aws_secret_access_key'",
")",
")",
":",
"... | Ensure connection to CloudWatch | [
"Ensure",
"connection",
"to",
"CloudWatch"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/aws/cloudwatch.py#L9-L36 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/aws/dynamodb.py | get_tables_and_gsis | def get_tables_and_gsis():
""" Get a set of tables and gsis and their configuration keys
:returns: set -- A set of tuples (table_name, table_conf_key)
"""
table_names = set()
configured_tables = get_configured_tables()
not_used_tables = set(configured_tables)
# Add regexp table names
f... | python | def get_tables_and_gsis():
""" Get a set of tables and gsis and their configuration keys
:returns: set -- A set of tuples (table_name, table_conf_key)
"""
table_names = set()
configured_tables = get_configured_tables()
not_used_tables = set(configured_tables)
# Add regexp table names
f... | [
"def",
"get_tables_and_gsis",
"(",
")",
":",
"table_names",
"=",
"set",
"(",
")",
"configured_tables",
"=",
"get_configured_tables",
"(",
")",
"not_used_tables",
"=",
"set",
"(",
"configured_tables",
")",
"for",
"table_instance",
"in",
"list_tables",
"(",
")",
"... | Get a set of tables and gsis and their configuration keys
:returns: set -- A set of tuples (table_name, table_conf_key) | [
"Get",
"a",
"set",
"of",
"tables",
"and",
"gsis",
"and",
"their",
"configuration",
"keys"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/aws/dynamodb.py#L21-L65 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/aws/dynamodb.py | list_tables | def list_tables():
""" Return list of DynamoDB tables available from AWS
:returns: list -- List of DynamoDB tables
"""
tables = []
try:
table_list = DYNAMODB_CONNECTION.list_tables()
while True:
for table_name in table_list[u'TableNames']:
tables.append(... | python | def list_tables():
""" Return list of DynamoDB tables available from AWS
:returns: list -- List of DynamoDB tables
"""
tables = []
try:
table_list = DYNAMODB_CONNECTION.list_tables()
while True:
for table_name in table_list[u'TableNames']:
tables.append(... | [
"def",
"list_tables",
"(",
")",
":",
"tables",
"=",
"[",
"]",
"try",
":",
"table_list",
"=",
"DYNAMODB_CONNECTION",
".",
"list_tables",
"(",
")",
"while",
"True",
":",
"for",
"table_name",
"in",
"table_list",
"[",
"u'TableNames'",
"]",
":",
"tables",
".",
... | Return list of DynamoDB tables available from AWS
:returns: list -- List of DynamoDB tables | [
"Return",
"list",
"of",
"DynamoDB",
"tables",
"available",
"from",
"AWS"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/aws/dynamodb.py#L214-L260 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/aws/dynamodb.py | table_gsis | def table_gsis(table_name):
""" Returns a list of GSIs for the given table
:type table_name: str
:param table_name: Name of the DynamoDB table
:returns: list -- List of GSI names
"""
try:
desc = DYNAMODB_CONNECTION.describe_table(table_name)[u'Table']
except JSONResponseError:
... | python | def table_gsis(table_name):
""" Returns a list of GSIs for the given table
:type table_name: str
:param table_name: Name of the DynamoDB table
:returns: list -- List of GSI names
"""
try:
desc = DYNAMODB_CONNECTION.describe_table(table_name)[u'Table']
except JSONResponseError:
... | [
"def",
"table_gsis",
"(",
"table_name",
")",
":",
"try",
":",
"desc",
"=",
"DYNAMODB_CONNECTION",
".",
"describe_table",
"(",
"table_name",
")",
"[",
"u'Table'",
"]",
"except",
"JSONResponseError",
":",
"raise",
"if",
"u'GlobalSecondaryIndexes'",
"in",
"desc",
"... | Returns a list of GSIs for the given table
:type table_name: str
:param table_name: Name of the DynamoDB table
:returns: list -- List of GSI names | [
"Returns",
"a",
"list",
"of",
"GSIs",
"for",
"the",
"given",
"table"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/aws/dynamodb.py#L602-L617 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/aws/dynamodb.py | __get_connection_dynamodb | def __get_connection_dynamodb(retries=3):
""" Ensure connection to DynamoDB
:type retries: int
:param retries: Number of times to retry to connect to DynamoDB
"""
connected = False
region = get_global_option('region')
while not connected:
if (get_global_option('aws_access_key_id') ... | python | def __get_connection_dynamodb(retries=3):
""" Ensure connection to DynamoDB
:type retries: int
:param retries: Number of times to retry to connect to DynamoDB
"""
connected = False
region = get_global_option('region')
while not connected:
if (get_global_option('aws_access_key_id') ... | [
"def",
"__get_connection_dynamodb",
"(",
"retries",
"=",
"3",
")",
":",
"connected",
"=",
"False",
"region",
"=",
"get_global_option",
"(",
"'region'",
")",
"while",
"not",
"connected",
":",
"if",
"(",
"get_global_option",
"(",
"'aws_access_key_id'",
")",
"and",... | Ensure connection to DynamoDB
:type retries: int
:param retries: Number of times to retry to connect to DynamoDB | [
"Ensure",
"connection",
"to",
"DynamoDB"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/aws/dynamodb.py#L620-L658 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/aws/dynamodb.py | __is_gsi_maintenance_window | def __is_gsi_maintenance_window(table_name, gsi_name, maintenance_windows):
""" Checks that the current time is within the maintenance window
:type table_name: str
:param table_name: Name of the DynamoDB table
:type gsi_name: str
:param gsi_name: Name of the GSI
:type maintenance_windows: str
... | python | def __is_gsi_maintenance_window(table_name, gsi_name, maintenance_windows):
""" Checks that the current time is within the maintenance window
:type table_name: str
:param table_name: Name of the DynamoDB table
:type gsi_name: str
:param gsi_name: Name of the GSI
:type maintenance_windows: str
... | [
"def",
"__is_gsi_maintenance_window",
"(",
"table_name",
",",
"gsi_name",
",",
"maintenance_windows",
")",
":",
"maintenance_window_list",
"=",
"[",
"]",
"for",
"window",
"in",
"maintenance_windows",
".",
"split",
"(",
"','",
")",
":",
"try",
":",
"start",
",",
... | Checks that the current time is within the maintenance window
:type table_name: str
:param table_name: Name of the DynamoDB table
:type gsi_name: str
:param gsi_name: Name of the GSI
:type maintenance_windows: str
:param maintenance_windows: Example: '00:00-01:00,10:00-11:00'
:returns: bool... | [
"Checks",
"that",
"the",
"current",
"time",
"is",
"within",
"the",
"maintenance",
"window"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/aws/dynamodb.py#L661-L692 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/aws/sns.py | publish_gsi_notification | def publish_gsi_notification(
table_key, gsi_key, message, message_types, subject=None):
""" Publish a notification for a specific GSI
:type table_key: str
:param table_key: Table configuration option key name
:type gsi_key: str
:param gsi_key: Table configuration option key name
:type ... | python | def publish_gsi_notification(
table_key, gsi_key, message, message_types, subject=None):
""" Publish a notification for a specific GSI
:type table_key: str
:param table_key: Table configuration option key name
:type gsi_key: str
:param gsi_key: Table configuration option key name
:type ... | [
"def",
"publish_gsi_notification",
"(",
"table_key",
",",
"gsi_key",
",",
"message",
",",
"message_types",
",",
"subject",
"=",
"None",
")",
":",
"topic",
"=",
"get_gsi_option",
"(",
"table_key",
",",
"gsi_key",
",",
"'sns_topic_arn'",
")",
"if",
"not",
"topic... | Publish a notification for a specific GSI
:type table_key: str
:param table_key: Table configuration option key name
:type gsi_key: str
:param gsi_key: Table configuration option key name
:type message: str
:param message: Message to send via SNS
:type message_types: list
:param message... | [
"Publish",
"a",
"notification",
"for",
"a",
"specific",
"GSI"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/aws/sns.py#L11-L40 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/aws/sns.py | publish_table_notification | def publish_table_notification(table_key, message, message_types, subject=None):
""" Publish a notification for a specific table
:type table_key: str
:param table_key: Table configuration option key name
:type message: str
:param message: Message to send via SNS
:type message_types: list
:p... | python | def publish_table_notification(table_key, message, message_types, subject=None):
""" Publish a notification for a specific table
:type table_key: str
:param table_key: Table configuration option key name
:type message: str
:param message: Message to send via SNS
:type message_types: list
:p... | [
"def",
"publish_table_notification",
"(",
"table_key",
",",
"message",
",",
"message_types",
",",
"subject",
"=",
"None",
")",
":",
"topic",
"=",
"get_table_option",
"(",
"table_key",
",",
"'sns_topic_arn'",
")",
"if",
"not",
"topic",
":",
"return",
"for",
"me... | Publish a notification for a specific table
:type table_key: str
:param table_key: Table configuration option key name
:type message: str
:param message: Message to send via SNS
:type message_types: list
:param message_types:
List with types:
- scale-up
- scale-down
... | [
"Publish",
"a",
"notification",
"for",
"a",
"specific",
"table"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/aws/sns.py#L43-L68 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/aws/sns.py | __publish | def __publish(topic, message, subject=None):
""" Publish a message to a SNS topic
:type topic: str
:param topic: SNS topic to publish the message to
:type message: str
:param message: Message to send via SNS
:type subject: str
:param subject: Subject to use for e-mail notifications
:ret... | python | def __publish(topic, message, subject=None):
""" Publish a message to a SNS topic
:type topic: str
:param topic: SNS topic to publish the message to
:type message: str
:param message: Message to send via SNS
:type subject: str
:param subject: Subject to use for e-mail notifications
:ret... | [
"def",
"__publish",
"(",
"topic",
",",
"message",
",",
"subject",
"=",
"None",
")",
":",
"try",
":",
"SNS_CONNECTION",
".",
"publish",
"(",
"topic",
"=",
"topic",
",",
"message",
"=",
"message",
",",
"subject",
"=",
"subject",
")",
"logger",
".",
"info... | Publish a message to a SNS topic
:type topic: str
:param topic: SNS topic to publish the message to
:type message: str
:param message: Message to send via SNS
:type subject: str
:param subject: Subject to use for e-mail notifications
:returns: None | [
"Publish",
"a",
"message",
"to",
"a",
"SNS",
"topic"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/aws/sns.py#L71-L89 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/aws/sns.py | __get_connection_SNS | def __get_connection_SNS():
""" Ensure connection to SNS """
region = get_global_option('region')
try:
if (get_global_option('aws_access_key_id') and
get_global_option('aws_secret_access_key')):
logger.debug(
'Authenticating to SNS using '
... | python | def __get_connection_SNS():
""" Ensure connection to SNS """
region = get_global_option('region')
try:
if (get_global_option('aws_access_key_id') and
get_global_option('aws_secret_access_key')):
logger.debug(
'Authenticating to SNS using '
... | [
"def",
"__get_connection_SNS",
"(",
")",
":",
"region",
"=",
"get_global_option",
"(",
"'region'",
")",
"try",
":",
"if",
"(",
"get_global_option",
"(",
"'aws_access_key_id'",
")",
"and",
"get_global_option",
"(",
"'aws_secret_access_key'",
")",
")",
":",
"logger"... | Ensure connection to SNS | [
"Ensure",
"connection",
"to",
"SNS"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/aws/sns.py#L92-L121 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/core/table.py | __calculate_always_decrease_rw_values | def __calculate_always_decrease_rw_values(
table_name, read_units, provisioned_reads,
write_units, provisioned_writes):
""" Calculate values for always-decrease-rw-together
This will only return reads and writes decreases if both reads and writes
are lower than the current provisioning
... | python | def __calculate_always_decrease_rw_values(
table_name, read_units, provisioned_reads,
write_units, provisioned_writes):
""" Calculate values for always-decrease-rw-together
This will only return reads and writes decreases if both reads and writes
are lower than the current provisioning
... | [
"def",
"__calculate_always_decrease_rw_values",
"(",
"table_name",
",",
"read_units",
",",
"provisioned_reads",
",",
"write_units",
",",
"provisioned_writes",
")",
":",
"if",
"read_units",
"<=",
"provisioned_reads",
"and",
"write_units",
"<=",
"provisioned_writes",
":",
... | Calculate values for always-decrease-rw-together
This will only return reads and writes decreases if both reads and writes
are lower than the current provisioning
:type table_name: str
:param table_name: Name of the DynamoDB table
:type read_units: int
:param read_units: New read unit provisi... | [
"Calculate",
"values",
"for",
"always",
"-",
"decrease",
"-",
"rw",
"-",
"together"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/core/table.py#L81-L121 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/core/table.py | __update_throughput | def __update_throughput(table_name, key_name, read_units, write_units):
""" Update throughput on the DynamoDB table
:type table_name: str
:param table_name: Name of the DynamoDB table
:type key_name: str
:param key_name: Configuration option key name
:type read_units: int
:param read_units:... | python | def __update_throughput(table_name, key_name, read_units, write_units):
""" Update throughput on the DynamoDB table
:type table_name: str
:param table_name: Name of the DynamoDB table
:type key_name: str
:param key_name: Configuration option key name
:type read_units: int
:param read_units:... | [
"def",
"__update_throughput",
"(",
"table_name",
",",
"key_name",
",",
"read_units",
",",
"write_units",
")",
":",
"try",
":",
"current_ru",
"=",
"dynamodb",
".",
"get_provisioned_table_read_units",
"(",
"table_name",
")",
"current_wu",
"=",
"dynamodb",
".",
"get_... | Update throughput on the DynamoDB table
:type table_name: str
:param table_name: Name of the DynamoDB table
:type key_name: str
:param key_name: Configuration option key name
:type read_units: int
:param read_units: New read unit provisioning
:type write_units: int
:param write_units: N... | [
"Update",
"throughput",
"on",
"the",
"DynamoDB",
"table"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/core/table.py#L897-L945 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/config/__init__.py | get_configuration | def get_configuration():
""" Get the configuration from command line and config files """
# This is the dict we will return
configuration = {
'global': {},
'logging': {},
'tables': ordereddict()
}
# Read the command line options
cmd_line_options = command_line_parser.par... | python | def get_configuration():
""" Get the configuration from command line and config files """
# This is the dict we will return
configuration = {
'global': {},
'logging': {},
'tables': ordereddict()
}
# Read the command line options
cmd_line_options = command_line_parser.par... | [
"def",
"get_configuration",
"(",
")",
":",
"configuration",
"=",
"{",
"'global'",
":",
"{",
"}",
",",
"'logging'",
":",
"{",
"}",
",",
"'tables'",
":",
"ordereddict",
"(",
")",
"}",
"cmd_line_options",
"=",
"command_line_parser",
".",
"parse",
"(",
")",
... | Get the configuration from command line and config files | [
"Get",
"the",
"configuration",
"from",
"command",
"line",
"and",
"config",
"files"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/config/__init__.py#L162-L203 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/config/__init__.py | __get_cmd_table_options | def __get_cmd_table_options(cmd_line_options):
""" Get all table options from the command line
:type cmd_line_options: dict
:param cmd_line_options: Dictionary with all command line options
:returns: dict -- E.g. {'table_name': {}}
"""
table_name = cmd_line_options['table_name']
options = {... | python | def __get_cmd_table_options(cmd_line_options):
""" Get all table options from the command line
:type cmd_line_options: dict
:param cmd_line_options: Dictionary with all command line options
:returns: dict -- E.g. {'table_name': {}}
"""
table_name = cmd_line_options['table_name']
options = {... | [
"def",
"__get_cmd_table_options",
"(",
"cmd_line_options",
")",
":",
"table_name",
"=",
"cmd_line_options",
"[",
"'table_name'",
"]",
"options",
"=",
"{",
"table_name",
":",
"{",
"}",
"}",
"for",
"option",
"in",
"DEFAULT_OPTIONS",
"[",
"'table'",
"]",
".",
"ke... | Get all table options from the command line
:type cmd_line_options: dict
:param cmd_line_options: Dictionary with all command line options
:returns: dict -- E.g. {'table_name': {}} | [
"Get",
"all",
"table",
"options",
"from",
"the",
"command",
"line"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/config/__init__.py#L206-L222 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/config/__init__.py | __get_config_table_options | def __get_config_table_options(conf_file_options):
""" Get all table options from the config file
:type conf_file_options: ordereddict
:param conf_file_options: Dictionary with all config file options
:returns: ordereddict -- E.g. {'table_name': {}}
"""
options = ordereddict()
if not conf_... | python | def __get_config_table_options(conf_file_options):
""" Get all table options from the config file
:type conf_file_options: ordereddict
:param conf_file_options: Dictionary with all config file options
:returns: ordereddict -- E.g. {'table_name': {}}
"""
options = ordereddict()
if not conf_... | [
"def",
"__get_config_table_options",
"(",
"conf_file_options",
")",
":",
"options",
"=",
"ordereddict",
"(",
")",
"if",
"not",
"conf_file_options",
":",
"return",
"options",
"for",
"table_name",
"in",
"conf_file_options",
"[",
"'tables'",
"]",
":",
"options",
"[",... | Get all table options from the config file
:type conf_file_options: ordereddict
:param conf_file_options: Dictionary with all config file options
:returns: ordereddict -- E.g. {'table_name': {}} | [
"Get",
"all",
"table",
"options",
"from",
"the",
"config",
"file"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/config/__init__.py#L225-L296 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/config/__init__.py | __get_global_options | def __get_global_options(cmd_line_options, conf_file_options=None):
""" Get all global options
:type cmd_line_options: dict
:param cmd_line_options: Dictionary with all command line options
:type conf_file_options: dict
:param conf_file_options: Dictionary with all config file options
:returns:... | python | def __get_global_options(cmd_line_options, conf_file_options=None):
""" Get all global options
:type cmd_line_options: dict
:param cmd_line_options: Dictionary with all command line options
:type conf_file_options: dict
:param conf_file_options: Dictionary with all config file options
:returns:... | [
"def",
"__get_global_options",
"(",
"cmd_line_options",
",",
"conf_file_options",
"=",
"None",
")",
":",
"options",
"=",
"{",
"}",
"for",
"option",
"in",
"DEFAULT_OPTIONS",
"[",
"'global'",
"]",
".",
"keys",
"(",
")",
":",
"options",
"[",
"option",
"]",
"=... | Get all global options
:type cmd_line_options: dict
:param cmd_line_options: Dictionary with all command line options
:type conf_file_options: dict
:param conf_file_options: Dictionary with all config file options
:returns: dict | [
"Get",
"all",
"global",
"options"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/config/__init__.py#L299-L319 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/config/__init__.py | __get_logging_options | def __get_logging_options(cmd_line_options, conf_file_options=None):
""" Get all logging options
:type cmd_line_options: dict
:param cmd_line_options: Dictionary with all command line options
:type conf_file_options: dict
:param conf_file_options: Dictionary with all config file options
:return... | python | def __get_logging_options(cmd_line_options, conf_file_options=None):
""" Get all logging options
:type cmd_line_options: dict
:param cmd_line_options: Dictionary with all command line options
:type conf_file_options: dict
:param conf_file_options: Dictionary with all config file options
:return... | [
"def",
"__get_logging_options",
"(",
"cmd_line_options",
",",
"conf_file_options",
"=",
"None",
")",
":",
"options",
"=",
"{",
"}",
"for",
"option",
"in",
"DEFAULT_OPTIONS",
"[",
"'logging'",
"]",
".",
"keys",
"(",
")",
":",
"options",
"[",
"option",
"]",
... | Get all logging options
:type cmd_line_options: dict
:param cmd_line_options: Dictionary with all command line options
:type conf_file_options: dict
:param conf_file_options: Dictionary with all config file options
:returns: dict | [
"Get",
"all",
"logging",
"options"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/config/__init__.py#L322-L342 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/config/__init__.py | __check_logging_rules | def __check_logging_rules(configuration):
""" Check that the logging values are proper """
valid_log_levels = [
'debug',
'info',
'warning',
'error'
]
if configuration['logging']['log_level'].lower() not in valid_log_levels:
print('Log level must be one of {0}'.for... | python | def __check_logging_rules(configuration):
""" Check that the logging values are proper """
valid_log_levels = [
'debug',
'info',
'warning',
'error'
]
if configuration['logging']['log_level'].lower() not in valid_log_levels:
print('Log level must be one of {0}'.for... | [
"def",
"__check_logging_rules",
"(",
"configuration",
")",
":",
"valid_log_levels",
"=",
"[",
"'debug'",
",",
"'info'",
",",
"'warning'",
",",
"'error'",
"]",
"if",
"configuration",
"[",
"'logging'",
"]",
"[",
"'log_level'",
"]",
".",
"lower",
"(",
")",
"not... | Check that the logging values are proper | [
"Check",
"that",
"the",
"logging",
"values",
"are",
"proper"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/config/__init__.py#L505-L516 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/calculators.py | is_consumed_over_proposed | def is_consumed_over_proposed(
current_provisioning, proposed_provisioning, consumed_units_percent):
"""
Determines if the currently consumed capacity is over the proposed capacity
for this table
:type current_provisioning: int
:param current_provisioning: The current provisioning
:type... | python | def is_consumed_over_proposed(
current_provisioning, proposed_provisioning, consumed_units_percent):
"""
Determines if the currently consumed capacity is over the proposed capacity
for this table
:type current_provisioning: int
:param current_provisioning: The current provisioning
:type... | [
"def",
"is_consumed_over_proposed",
"(",
"current_provisioning",
",",
"proposed_provisioning",
",",
"consumed_units_percent",
")",
":",
"consumption_based_current_provisioning",
"=",
"int",
"(",
"math",
".",
"ceil",
"(",
"current_provisioning",
"*",
"(",
"consumed_units_per... | Determines if the currently consumed capacity is over the proposed capacity
for this table
:type current_provisioning: int
:param current_provisioning: The current provisioning
:type proposed_provisioning: int
:param proposed_provisioning: New provisioning
:type consumed_units_percent: float
... | [
"Determines",
"if",
"the",
"currently",
"consumed",
"capacity",
"is",
"over",
"the",
"proposed",
"capacity",
"for",
"this",
"table"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/calculators.py#L342-L358 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/calculators.py | __get_min_reads | def __get_min_reads(current_provisioning, min_provisioned_reads, log_tag):
""" Get the minimum number of reads to current_provisioning
:type current_provisioning: int
:param current_provisioning: Current provisioned reads
:type min_provisioned_reads: int
:param min_provisioned_reads: Configured min... | python | def __get_min_reads(current_provisioning, min_provisioned_reads, log_tag):
""" Get the minimum number of reads to current_provisioning
:type current_provisioning: int
:param current_provisioning: Current provisioned reads
:type min_provisioned_reads: int
:param min_provisioned_reads: Configured min... | [
"def",
"__get_min_reads",
"(",
"current_provisioning",
",",
"min_provisioned_reads",
",",
"log_tag",
")",
":",
"reads",
"=",
"1",
"if",
"min_provisioned_reads",
":",
"reads",
"=",
"int",
"(",
"min_provisioned_reads",
")",
"if",
"reads",
">",
"int",
"(",
"current... | Get the minimum number of reads to current_provisioning
:type current_provisioning: int
:param current_provisioning: Current provisioned reads
:type min_provisioned_reads: int
:param min_provisioned_reads: Configured min provisioned reads
:type log_tag: str
:param log_tag: Prefix for the log
... | [
"Get",
"the",
"minimum",
"number",
"of",
"reads",
"to",
"current_provisioning"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/calculators.py#L361-L389 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/calculators.py | __get_min_writes | def __get_min_writes(current_provisioning, min_provisioned_writes, log_tag):
""" Get the minimum number of writes to current_provisioning
:type current_provisioning: int
:param current_provisioning: Current provisioned writes
:type min_provisioned_writes: int
:param min_provisioned_writes: Configur... | python | def __get_min_writes(current_provisioning, min_provisioned_writes, log_tag):
""" Get the minimum number of writes to current_provisioning
:type current_provisioning: int
:param current_provisioning: Current provisioned writes
:type min_provisioned_writes: int
:param min_provisioned_writes: Configur... | [
"def",
"__get_min_writes",
"(",
"current_provisioning",
",",
"min_provisioned_writes",
",",
"log_tag",
")",
":",
"writes",
"=",
"1",
"if",
"min_provisioned_writes",
":",
"writes",
"=",
"int",
"(",
"min_provisioned_writes",
")",
"if",
"writes",
">",
"int",
"(",
"... | Get the minimum number of writes to current_provisioning
:type current_provisioning: int
:param current_provisioning: Current provisioned writes
:type min_provisioned_writes: int
:param min_provisioned_writes: Configured min provisioned writes
:type log_tag: str
:param log_tag: Prefix for the l... | [
"Get",
"the",
"minimum",
"number",
"of",
"writes",
"to",
"current_provisioning"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/calculators.py#L392-L420 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/daemon.py | Daemon.restart | def restart(self, *args, **kwargs):
""" Restart the daemon """
self.stop()
try:
self.start(*args, **kwargs)
except IOError:
raise | python | def restart(self, *args, **kwargs):
""" Restart the daemon """
self.stop()
try:
self.start(*args, **kwargs)
except IOError:
raise | [
"def",
"restart",
"(",
"self",
",",
"*",
"args",
",",
"**",
"kwargs",
")",
":",
"self",
".",
"stop",
"(",
")",
"try",
":",
"self",
".",
"start",
"(",
"*",
"args",
",",
"**",
"kwargs",
")",
"except",
"IOError",
":",
"raise"
] | Restart the daemon | [
"Restart",
"the",
"daemon"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/daemon.py#L132-L138 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/config/config_file_parser.py | __parse_options | def __parse_options(config_file, section, options):
""" Parse the section options
:type config_file: ConfigParser object
:param config_file: The config file object to use
:type section: str
:param section: Which section to read in the configuration file
:type options: list of dicts
:param o... | python | def __parse_options(config_file, section, options):
""" Parse the section options
:type config_file: ConfigParser object
:param config_file: The config file object to use
:type section: str
:param section: Which section to read in the configuration file
:type options: list of dicts
:param o... | [
"def",
"__parse_options",
"(",
"config_file",
",",
"section",
",",
"options",
")",
":",
"configuration",
"=",
"{",
"}",
"for",
"option",
"in",
"options",
":",
"try",
":",
"if",
"option",
".",
"get",
"(",
"'type'",
")",
"==",
"'str'",
":",
"configuration"... | Parse the section options
:type config_file: ConfigParser object
:param config_file: The config file object to use
:type section: str
:param section: Which section to read in the configuration file
:type options: list of dicts
:param options:
A list of options to parse. Example list::
... | [
"Parse",
"the",
"section",
"options"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/config/config_file_parser.py#L392-L453 | train |
sebdah/dynamic-dynamodb | dynamic_dynamodb/__init__.py | main | def main():
""" Main function called from dynamic-dynamodb """
try:
if get_global_option('show_config'):
print json.dumps(config.get_configuration(), indent=2)
elif get_global_option('daemon'):
daemon = DynamicDynamoDBDaemon(
'{0}/dynamic-dynamodb.{1}.pid'... | python | def main():
""" Main function called from dynamic-dynamodb """
try:
if get_global_option('show_config'):
print json.dumps(config.get_configuration(), indent=2)
elif get_global_option('daemon'):
daemon = DynamicDynamoDBDaemon(
'{0}/dynamic-dynamodb.{1}.pid'... | [
"def",
"main",
"(",
")",
":",
"try",
":",
"if",
"get_global_option",
"(",
"'show_config'",
")",
":",
"print",
"json",
".",
"dumps",
"(",
"config",
".",
"get_configuration",
"(",
")",
",",
"indent",
"=",
"2",
")",
"elif",
"get_global_option",
"(",
"'daemo... | Main function called from dynamic-dynamodb | [
"Main",
"function",
"called",
"from",
"dynamic",
"-",
"dynamodb"
] | bfd0ca806b1c3301e724696de90ef0f973410493 | https://github.com/sebdah/dynamic-dynamodb/blob/bfd0ca806b1c3301e724696de90ef0f973410493/dynamic_dynamodb/__init__.py#L56-L104 | train |
ransford/sllurp | sllurp/llrp_decoder.py | decode_tve_parameter | def decode_tve_parameter(data):
"""Generic byte decoding function for TVE parameters.
Given an array of bytes, tries to interpret a TVE parameter from the
beginning of the array. Returns the decoded data and the number of bytes
it read."""
(nontve,) = struct.unpack(nontve_header, data[:nontve_hea... | python | def decode_tve_parameter(data):
"""Generic byte decoding function for TVE parameters.
Given an array of bytes, tries to interpret a TVE parameter from the
beginning of the array. Returns the decoded data and the number of bytes
it read."""
(nontve,) = struct.unpack(nontve_header, data[:nontve_hea... | [
"def",
"decode_tve_parameter",
"(",
"data",
")",
":",
"(",
"nontve",
",",
")",
"=",
"struct",
".",
"unpack",
"(",
"nontve_header",
",",
"data",
"[",
":",
"nontve_header_len",
"]",
")",
"if",
"nontve",
"==",
"1023",
":",
"(",
"size",
",",
")",
"=",
"s... | Generic byte decoding function for TVE parameters.
Given an array of bytes, tries to interpret a TVE parameter from the
beginning of the array. Returns the decoded data and the number of bytes
it read. | [
"Generic",
"byte",
"decoding",
"function",
"for",
"TVE",
"parameters",
"."
] | d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1 | https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/sllurp/llrp_decoder.py#L39-L74 | train |
ransford/sllurp | setup.py | read | def read(filename):
"""
Get the long description from a file.
"""
fname = os.path.join(here, filename)
with codecs.open(fname, encoding='utf-8') as f:
return f.read() | python | def read(filename):
"""
Get the long description from a file.
"""
fname = os.path.join(here, filename)
with codecs.open(fname, encoding='utf-8') as f:
return f.read() | [
"def",
"read",
"(",
"filename",
")",
":",
"fname",
"=",
"os",
".",
"path",
".",
"join",
"(",
"here",
",",
"filename",
")",
"with",
"codecs",
".",
"open",
"(",
"fname",
",",
"encoding",
"=",
"'utf-8'",
")",
"as",
"f",
":",
"return",
"f",
".",
"rea... | Get the long description from a file. | [
"Get",
"the",
"long",
"description",
"from",
"a",
"file",
"."
] | d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1 | https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/setup.py#L10-L16 | train |
ransford/sllurp | sllurp/llrp.py | LLRPMessage.deserialize | def deserialize(self):
"""Turns a sequence of bytes into a message dictionary."""
if self.msgbytes is None:
raise LLRPError('No message bytes to deserialize.')
data = self.msgbytes
msgtype, length, msgid = struct.unpack(self.full_hdr_fmt,
... | python | def deserialize(self):
"""Turns a sequence of bytes into a message dictionary."""
if self.msgbytes is None:
raise LLRPError('No message bytes to deserialize.')
data = self.msgbytes
msgtype, length, msgid = struct.unpack(self.full_hdr_fmt,
... | [
"def",
"deserialize",
"(",
"self",
")",
":",
"if",
"self",
".",
"msgbytes",
"is",
"None",
":",
"raise",
"LLRPError",
"(",
"'No message bytes to deserialize.'",
")",
"data",
"=",
"self",
".",
"msgbytes",
"msgtype",
",",
"length",
",",
"msgid",
"=",
"struct",
... | Turns a sequence of bytes into a message dictionary. | [
"Turns",
"a",
"sequence",
"of",
"bytes",
"into",
"a",
"message",
"dictionary",
"."
] | d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1 | https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/sllurp/llrp.py#L66-L97 | train |
ransford/sllurp | sllurp/llrp.py | LLRPClient.parseReaderConfig | def parseReaderConfig(self, confdict):
"""Parse a reader configuration dictionary.
Examples:
{
Type: 23,
Data: b'\x00'
}
{
Type: 1023,
Vendor: 25882,
Subtype: 21,
Data: b'\x00'
}
"""
... | python | def parseReaderConfig(self, confdict):
"""Parse a reader configuration dictionary.
Examples:
{
Type: 23,
Data: b'\x00'
}
{
Type: 1023,
Vendor: 25882,
Subtype: 21,
Data: b'\x00'
}
"""
... | [
"def",
"parseReaderConfig",
"(",
"self",
",",
"confdict",
")",
":",
"logger",
".",
"debug",
"(",
"'parseReaderConfig input: %s'",
",",
"confdict",
")",
"conf",
"=",
"{",
"}",
"for",
"k",
",",
"v",
"in",
"confdict",
".",
"items",
"(",
")",
":",
"if",
"n... | Parse a reader configuration dictionary.
Examples:
{
Type: 23,
Data: b'\x00'
}
{
Type: 1023,
Vendor: 25882,
Subtype: 21,
Data: b'\x00'
} | [
"Parse",
"a",
"reader",
"configuration",
"dictionary",
"."
] | d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1 | https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/sllurp/llrp.py#L291-L326 | train |
ransford/sllurp | sllurp/llrp.py | LLRPClient.parseCapabilities | def parseCapabilities(self, capdict):
"""Parse a capabilities dictionary and adjust instance settings.
At the time this function is called, the user has requested some
settings (e.g., mode identifier), but we haven't yet asked the reader
whether those requested settings are within its c... | python | def parseCapabilities(self, capdict):
"""Parse a capabilities dictionary and adjust instance settings.
At the time this function is called, the user has requested some
settings (e.g., mode identifier), but we haven't yet asked the reader
whether those requested settings are within its c... | [
"def",
"parseCapabilities",
"(",
"self",
",",
"capdict",
")",
":",
"gdc",
"=",
"capdict",
"[",
"'GeneralDeviceCapabilities'",
"]",
"max_ant",
"=",
"gdc",
"[",
"'MaxNumberOfAntennaSupported'",
"]",
"if",
"max",
"(",
"self",
".",
"antennas",
")",
">",
"max_ant",... | Parse a capabilities dictionary and adjust instance settings.
At the time this function is called, the user has requested some
settings (e.g., mode identifier), but we haven't yet asked the reader
whether those requested settings are within its capabilities. This
function's job is to pa... | [
"Parse",
"a",
"capabilities",
"dictionary",
"and",
"adjust",
"instance",
"settings",
"."
] | d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1 | https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/sllurp/llrp.py#L328-L393 | train |
ransford/sllurp | sllurp/llrp.py | LLRPClient.startInventory | def startInventory(self, proto=None, force_regen_rospec=False):
"""Add a ROSpec to the reader and enable it."""
if self.state == LLRPClient.STATE_INVENTORYING:
logger.warn('ignoring startInventory() while already inventorying')
return None
rospec = self.getROSpec(force_n... | python | def startInventory(self, proto=None, force_regen_rospec=False):
"""Add a ROSpec to the reader and enable it."""
if self.state == LLRPClient.STATE_INVENTORYING:
logger.warn('ignoring startInventory() while already inventorying')
return None
rospec = self.getROSpec(force_n... | [
"def",
"startInventory",
"(",
"self",
",",
"proto",
"=",
"None",
",",
"force_regen_rospec",
"=",
"False",
")",
":",
"if",
"self",
".",
"state",
"==",
"LLRPClient",
".",
"STATE_INVENTORYING",
":",
"logger",
".",
"warn",
"(",
"'ignoring startInventory() while alre... | Add a ROSpec to the reader and enable it. | [
"Add",
"a",
"ROSpec",
"to",
"the",
"reader",
"and",
"enable",
"it",
"."
] | d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1 | https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/sllurp/llrp.py#L1038-L1069 | train |
ransford/sllurp | sllurp/llrp.py | LLRPClient.stopPolitely | def stopPolitely(self, disconnect=False):
"""Delete all active ROSpecs. Return a Deferred that will be called
when the DELETE_ROSPEC_RESPONSE comes back."""
logger.info('stopping politely')
if disconnect:
logger.info('will disconnect when stopped')
self.discon... | python | def stopPolitely(self, disconnect=False):
"""Delete all active ROSpecs. Return a Deferred that will be called
when the DELETE_ROSPEC_RESPONSE comes back."""
logger.info('stopping politely')
if disconnect:
logger.info('will disconnect when stopped')
self.discon... | [
"def",
"stopPolitely",
"(",
"self",
",",
"disconnect",
"=",
"False",
")",
":",
"logger",
".",
"info",
"(",
"'stopping politely'",
")",
"if",
"disconnect",
":",
"logger",
".",
"info",
"(",
"'will disconnect when stopped'",
")",
"self",
".",
"disconnecting",
"="... | Delete all active ROSpecs. Return a Deferred that will be called
when the DELETE_ROSPEC_RESPONSE comes back. | [
"Delete",
"all",
"active",
"ROSpecs",
".",
"Return",
"a",
"Deferred",
"that",
"will",
"be",
"called",
"when",
"the",
"DELETE_ROSPEC_RESPONSE",
"comes",
"back",
"."
] | d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1 | https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/sllurp/llrp.py#L1103-L1124 | train |
ransford/sllurp | sllurp/llrp.py | LLRPClient.parsePowerTable | def parsePowerTable(uhfbandcap):
"""Parse the transmit power table
@param uhfbandcap: Capability dictionary from
self.capabilities['RegulatoryCapabilities']['UHFBandCapabilities']
@return: a list of [0, dBm value, dBm value, ...]
>>> LLRPClient.parsePowerTable({'TransmitPow... | python | def parsePowerTable(uhfbandcap):
"""Parse the transmit power table
@param uhfbandcap: Capability dictionary from
self.capabilities['RegulatoryCapabilities']['UHFBandCapabilities']
@return: a list of [0, dBm value, dBm value, ...]
>>> LLRPClient.parsePowerTable({'TransmitPow... | [
"def",
"parsePowerTable",
"(",
"uhfbandcap",
")",
":",
"bandtbl",
"=",
"{",
"k",
":",
"v",
"for",
"k",
",",
"v",
"in",
"uhfbandcap",
".",
"items",
"(",
")",
"if",
"k",
".",
"startswith",
"(",
"'TransmitPowerLevelTableEntry'",
")",
"}",
"tx_power_table",
... | Parse the transmit power table
@param uhfbandcap: Capability dictionary from
self.capabilities['RegulatoryCapabilities']['UHFBandCapabilities']
@return: a list of [0, dBm value, dBm value, ...]
>>> LLRPClient.parsePowerTable({'TransmitPowerLevelTableEntry1': \
{'Index':... | [
"Parse",
"the",
"transmit",
"power",
"table"
] | d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1 | https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/sllurp/llrp.py#L1143-L1163 | train |
ransford/sllurp | sllurp/llrp.py | LLRPClient.get_tx_power | def get_tx_power(self, tx_power):
"""Validates tx_power against self.tx_power_table
@param tx_power: index into the self.tx_power_table list; if tx_power
is 0 then the max power from self.tx_power_table
@return: a dict {antenna: (tx_power_index, power_dbm)} from
self.tx_... | python | def get_tx_power(self, tx_power):
"""Validates tx_power against self.tx_power_table
@param tx_power: index into the self.tx_power_table list; if tx_power
is 0 then the max power from self.tx_power_table
@return: a dict {antenna: (tx_power_index, power_dbm)} from
self.tx_... | [
"def",
"get_tx_power",
"(",
"self",
",",
"tx_power",
")",
":",
"if",
"not",
"self",
".",
"tx_power_table",
":",
"logger",
".",
"warn",
"(",
"'get_tx_power(): tx_power_table is empty!'",
")",
"return",
"{",
"}",
"logger",
".",
"debug",
"(",
"'requested tx_power: ... | Validates tx_power against self.tx_power_table
@param tx_power: index into the self.tx_power_table list; if tx_power
is 0 then the max power from self.tx_power_table
@return: a dict {antenna: (tx_power_index, power_dbm)} from
self.tx_power_table
@raise: LLRPError if the ... | [
"Validates",
"tx_power",
"against",
"self",
".",
"tx_power_table"
] | d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1 | https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/sllurp/llrp.py#L1165-L1199 | train |
ransford/sllurp | sllurp/llrp.py | LLRPClient.setTxPower | def setTxPower(self, tx_power):
"""Set the transmission power for one or more antennas.
@param tx_power: index into self.tx_power_table
"""
tx_pow_validated = self.get_tx_power(tx_power)
logger.debug('tx_pow_validated: %s', tx_pow_validated)
needs_update = False
... | python | def setTxPower(self, tx_power):
"""Set the transmission power for one or more antennas.
@param tx_power: index into self.tx_power_table
"""
tx_pow_validated = self.get_tx_power(tx_power)
logger.debug('tx_pow_validated: %s', tx_pow_validated)
needs_update = False
... | [
"def",
"setTxPower",
"(",
"self",
",",
"tx_power",
")",
":",
"tx_pow_validated",
"=",
"self",
".",
"get_tx_power",
"(",
"tx_power",
")",
"logger",
".",
"debug",
"(",
"'tx_pow_validated: %s'",
",",
"tx_pow_validated",
")",
"needs_update",
"=",
"False",
"for",
"... | Set the transmission power for one or more antennas.
@param tx_power: index into self.tx_power_table | [
"Set",
"the",
"transmission",
"power",
"for",
"one",
"or",
"more",
"antennas",
"."
] | d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1 | https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/sllurp/llrp.py#L1201-L1220 | train |
ransford/sllurp | sllurp/llrp.py | LLRPClient.pause | def pause(self, duration_seconds=0, force=False, force_regen_rospec=False):
"""Pause an inventory operation for a set amount of time."""
logger.debug('pause(%s)', duration_seconds)
if self.state != LLRPClient.STATE_INVENTORYING:
if not force:
logger.info('ignoring pau... | python | def pause(self, duration_seconds=0, force=False, force_regen_rospec=False):
"""Pause an inventory operation for a set amount of time."""
logger.debug('pause(%s)', duration_seconds)
if self.state != LLRPClient.STATE_INVENTORYING:
if not force:
logger.info('ignoring pau... | [
"def",
"pause",
"(",
"self",
",",
"duration_seconds",
"=",
"0",
",",
"force",
"=",
"False",
",",
"force_regen_rospec",
"=",
"False",
")",
":",
"logger",
".",
"debug",
"(",
"'pause(%s)'",
",",
"duration_seconds",
")",
"if",
"self",
".",
"state",
"!=",
"LL... | Pause an inventory operation for a set amount of time. | [
"Pause",
"an",
"inventory",
"operation",
"for",
"a",
"set",
"amount",
"of",
"time",
"."
] | d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1 | https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/sllurp/llrp.py#L1222-L1257 | train |
ransford/sllurp | sllurp/llrp.py | LLRPClient.sendMessage | def sendMessage(self, msg_dict):
"""Serialize and send a dict LLRP Message
Note: IDs should be modified in original msg_dict as it is a reference.
That should be ok.
"""
sent_ids = []
for name in msg_dict:
self.last_msg_id += 1
msg_dict[name]['ID'... | python | def sendMessage(self, msg_dict):
"""Serialize and send a dict LLRP Message
Note: IDs should be modified in original msg_dict as it is a reference.
That should be ok.
"""
sent_ids = []
for name in msg_dict:
self.last_msg_id += 1
msg_dict[name]['ID'... | [
"def",
"sendMessage",
"(",
"self",
",",
"msg_dict",
")",
":",
"sent_ids",
"=",
"[",
"]",
"for",
"name",
"in",
"msg_dict",
":",
"self",
".",
"last_msg_id",
"+=",
"1",
"msg_dict",
"[",
"name",
"]",
"[",
"'ID'",
"]",
"=",
"self",
".",
"last_msg_id",
"se... | Serialize and send a dict LLRP Message
Note: IDs should be modified in original msg_dict as it is a reference.
That should be ok. | [
"Serialize",
"and",
"send",
"a",
"dict",
"LLRP",
"Message"
] | d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1 | https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/sllurp/llrp.py#L1283-L1299 | train |
ransford/sllurp | sllurp/llrp.py | LLRPClientFactory.buildProtocol | def buildProtocol(self, addr):
"""Get a new LLRP client protocol object.
Consult self.antenna_dict to look up antennas to use.
"""
self.resetDelay() # reset reconnection backoff state
clargs = self.client_args.copy()
# optionally configure antennas from self.antenna_di... | python | def buildProtocol(self, addr):
"""Get a new LLRP client protocol object.
Consult self.antenna_dict to look up antennas to use.
"""
self.resetDelay() # reset reconnection backoff state
clargs = self.client_args.copy()
# optionally configure antennas from self.antenna_di... | [
"def",
"buildProtocol",
"(",
"self",
",",
"addr",
")",
":",
"self",
".",
"resetDelay",
"(",
")",
"clargs",
"=",
"self",
".",
"client_args",
".",
"copy",
"(",
")",
"hostport",
"=",
"'{}:{}'",
".",
"format",
"(",
"addr",
".",
"host",
",",
"addr",
".",
... | Get a new LLRP client protocol object.
Consult self.antenna_dict to look up antennas to use. | [
"Get",
"a",
"new",
"LLRP",
"client",
"protocol",
"object",
"."
] | d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1 | https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/sllurp/llrp.py#L1339-L1376 | train |
ransford/sllurp | sllurp/llrp.py | LLRPClientFactory.setTxPower | def setTxPower(self, tx_power, peername=None):
"""Set the transmit power on one or all readers
If peername is None, set the transmit power for all readers.
Otherwise, set it for that specific reader.
"""
if peername:
protocols = [p for p in self.protocols
... | python | def setTxPower(self, tx_power, peername=None):
"""Set the transmit power on one or all readers
If peername is None, set the transmit power for all readers.
Otherwise, set it for that specific reader.
"""
if peername:
protocols = [p for p in self.protocols
... | [
"def",
"setTxPower",
"(",
"self",
",",
"tx_power",
",",
"peername",
"=",
"None",
")",
":",
"if",
"peername",
":",
"protocols",
"=",
"[",
"p",
"for",
"p",
"in",
"self",
".",
"protocols",
"if",
"p",
".",
"peername",
"[",
"0",
"]",
"==",
"peername",
"... | Set the transmit power on one or all readers
If peername is None, set the transmit power for all readers.
Otherwise, set it for that specific reader. | [
"Set",
"the",
"transmit",
"power",
"on",
"one",
"or",
"all",
"readers"
] | d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1 | https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/sllurp/llrp.py#L1411-L1423 | train |
ransford/sllurp | sllurp/llrp.py | LLRPClientFactory.politeShutdown | def politeShutdown(self):
"""Stop inventory on all connected readers."""
protoDeferreds = []
for proto in self.protocols:
protoDeferreds.append(proto.stopPolitely(disconnect=True))
return defer.DeferredList(protoDeferreds) | python | def politeShutdown(self):
"""Stop inventory on all connected readers."""
protoDeferreds = []
for proto in self.protocols:
protoDeferreds.append(proto.stopPolitely(disconnect=True))
return defer.DeferredList(protoDeferreds) | [
"def",
"politeShutdown",
"(",
"self",
")",
":",
"protoDeferreds",
"=",
"[",
"]",
"for",
"proto",
"in",
"self",
".",
"protocols",
":",
"protoDeferreds",
".",
"append",
"(",
"proto",
".",
"stopPolitely",
"(",
"disconnect",
"=",
"True",
")",
")",
"return",
... | Stop inventory on all connected readers. | [
"Stop",
"inventory",
"on",
"all",
"connected",
"readers",
"."
] | d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1 | https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/sllurp/llrp.py#L1425-L1430 | train |
ransford/sllurp | sllurp/epc/sgtin_96.py | parse_sgtin_96 | def parse_sgtin_96(sgtin_96):
'''Given a SGTIN-96 hex string, parse each segment.
Returns a dictionary of the segments.'''
if not sgtin_96:
raise Exception('Pass in a value.')
if not sgtin_96.startswith("30"):
# not a sgtin, not handled
raise Exception('Not SGTIN-96.')
bin... | python | def parse_sgtin_96(sgtin_96):
'''Given a SGTIN-96 hex string, parse each segment.
Returns a dictionary of the segments.'''
if not sgtin_96:
raise Exception('Pass in a value.')
if not sgtin_96.startswith("30"):
# not a sgtin, not handled
raise Exception('Not SGTIN-96.')
bin... | [
"def",
"parse_sgtin_96",
"(",
"sgtin_96",
")",
":",
"if",
"not",
"sgtin_96",
":",
"raise",
"Exception",
"(",
"'Pass in a value.'",
")",
"if",
"not",
"sgtin_96",
".",
"startswith",
"(",
"\"30\"",
")",
":",
"raise",
"Exception",
"(",
"'Not SGTIN-96.'",
")",
"b... | Given a SGTIN-96 hex string, parse each segment.
Returns a dictionary of the segments. | [
"Given",
"a",
"SGTIN",
"-",
"96",
"hex",
"string",
"parse",
"each",
"segment",
".",
"Returns",
"a",
"dictionary",
"of",
"the",
"segments",
"."
] | d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1 | https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/sllurp/epc/sgtin_96.py#L27-L71 | train |
ransford/sllurp | sllurp/llrp_proto.py | decode_param | def decode_param(data):
"""Decode any parameter to a byte sequence.
:param data: byte sequence representing an LLRP parameter.
:returns dict, bytes: where dict is {'Type': <decoded type>, 'Data':
<decoded data>} and bytes is the remaining bytes trailing the bytes we
could decode.
"""
... | python | def decode_param(data):
"""Decode any parameter to a byte sequence.
:param data: byte sequence representing an LLRP parameter.
:returns dict, bytes: where dict is {'Type': <decoded type>, 'Data':
<decoded data>} and bytes is the remaining bytes trailing the bytes we
could decode.
"""
... | [
"def",
"decode_param",
"(",
"data",
")",
":",
"logger",
".",
"debug",
"(",
"'decode_param data: %r'",
",",
"data",
")",
"header_len",
"=",
"struct",
".",
"calcsize",
"(",
"'!HH'",
")",
"partype",
",",
"parlen",
"=",
"struct",
".",
"unpack",
"(",
"'!HH'",
... | Decode any parameter to a byte sequence.
:param data: byte sequence representing an LLRP parameter.
:returns dict, bytes: where dict is {'Type': <decoded type>, 'Data':
<decoded data>} and bytes is the remaining bytes trailing the bytes we
could decode. | [
"Decode",
"any",
"parameter",
"to",
"a",
"byte",
"sequence",
"."
] | d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1 | https://github.com/ransford/sllurp/blob/d744b7e17d7ba64a24d9a31bde6cba65d91ad9b1/sllurp/llrp_proto.py#L341-L369 | train |
Amsterdam/objectstore | examples/handelsregister.py | download_files | def download_files(file_list):
"""Download the latest data. """
for _, source_data_file in file_list:
sql_gz_name = source_data_file['name'].split('/')[-1]
msg = 'Downloading: %s' % (sql_gz_name)
log.debug(msg)
new_data = objectstore.get_object(
handelsregister_conn,... | python | def download_files(file_list):
"""Download the latest data. """
for _, source_data_file in file_list:
sql_gz_name = source_data_file['name'].split('/')[-1]
msg = 'Downloading: %s' % (sql_gz_name)
log.debug(msg)
new_data = objectstore.get_object(
handelsregister_conn,... | [
"def",
"download_files",
"(",
"file_list",
")",
":",
"for",
"_",
",",
"source_data_file",
"in",
"file_list",
":",
"sql_gz_name",
"=",
"source_data_file",
"[",
"'name'",
"]",
".",
"split",
"(",
"'/'",
")",
"[",
"-",
"1",
"]",
"msg",
"=",
"'Downloading: %s'"... | Download the latest data. | [
"Download",
"the",
"latest",
"data",
"."
] | 15852e8a3f159e4e6eb018866df0a84feb2c7f68 | https://github.com/Amsterdam/objectstore/blob/15852e8a3f159e4e6eb018866df0a84feb2c7f68/examples/handelsregister.py#L48-L60 | train |
Amsterdam/objectstore | objectstore/objectstore.py | get_connection | def get_connection(store_settings: dict={}) -> Connection:
"""
get an objectsctore connection
"""
store = store_settings
if not store_settings:
store = make_config_from_env()
os_options = {
'tenant_id': store['TENANT_ID'],
'region_name': store['REGION_NAME'],
# ... | python | def get_connection(store_settings: dict={}) -> Connection:
"""
get an objectsctore connection
"""
store = store_settings
if not store_settings:
store = make_config_from_env()
os_options = {
'tenant_id': store['TENANT_ID'],
'region_name': store['REGION_NAME'],
# ... | [
"def",
"get_connection",
"(",
"store_settings",
":",
"dict",
"=",
"{",
"}",
")",
"->",
"Connection",
":",
"store",
"=",
"store_settings",
"if",
"not",
"store_settings",
":",
"store",
"=",
"make_config_from_env",
"(",
")",
"os_options",
"=",
"{",
"'tenant_id'",... | get an objectsctore connection | [
"get",
"an",
"objectsctore",
"connection"
] | 15852e8a3f159e4e6eb018866df0a84feb2c7f68 | https://github.com/Amsterdam/objectstore/blob/15852e8a3f159e4e6eb018866df0a84feb2c7f68/objectstore/objectstore.py#L67-L96 | train |
Amsterdam/objectstore | objectstore/objectstore.py | get_object | def get_object(connection, object_meta_data: dict, dirname: str):
"""
Download object from objectstore.
object_meta_data is an object retured when
using 'get_full_container_list'
"""
return connection.get_object(dirname, object_meta_data['name'])[1] | python | def get_object(connection, object_meta_data: dict, dirname: str):
"""
Download object from objectstore.
object_meta_data is an object retured when
using 'get_full_container_list'
"""
return connection.get_object(dirname, object_meta_data['name'])[1] | [
"def",
"get_object",
"(",
"connection",
",",
"object_meta_data",
":",
"dict",
",",
"dirname",
":",
"str",
")",
":",
"return",
"connection",
".",
"get_object",
"(",
"dirname",
",",
"object_meta_data",
"[",
"'name'",
"]",
")",
"[",
"1",
"]"
] | Download object from objectstore.
object_meta_data is an object retured when
using 'get_full_container_list' | [
"Download",
"object",
"from",
"objectstore",
".",
"object_meta_data",
"is",
"an",
"object",
"retured",
"when",
"using",
"get_full_container_list"
] | 15852e8a3f159e4e6eb018866df0a84feb2c7f68 | https://github.com/Amsterdam/objectstore/blob/15852e8a3f159e4e6eb018866df0a84feb2c7f68/objectstore/objectstore.py#L117-L123 | train |
Amsterdam/objectstore | objectstore/objectstore.py | put_object | def put_object(
connection, container: str, object_name: str,
contents, content_type: str) -> None:
"""
Put file to objectstore
container == "path/in/store"
object_name = "your_file_name.txt"
contents=thefiledata (fileobject) open('ourfile', 'rb')
content_type='csv' / 'applicat... | python | def put_object(
connection, container: str, object_name: str,
contents, content_type: str) -> None:
"""
Put file to objectstore
container == "path/in/store"
object_name = "your_file_name.txt"
contents=thefiledata (fileobject) open('ourfile', 'rb')
content_type='csv' / 'applicat... | [
"def",
"put_object",
"(",
"connection",
",",
"container",
":",
"str",
",",
"object_name",
":",
"str",
",",
"contents",
",",
"content_type",
":",
"str",
")",
"->",
"None",
":",
"connection",
".",
"put_object",
"(",
"container",
",",
"object_name",
",",
"con... | Put file to objectstore
container == "path/in/store"
object_name = "your_file_name.txt"
contents=thefiledata (fileobject) open('ourfile', 'rb')
content_type='csv' / 'application/json' .. etc | [
"Put",
"file",
"to",
"objectstore"
] | 15852e8a3f159e4e6eb018866df0a84feb2c7f68 | https://github.com/Amsterdam/objectstore/blob/15852e8a3f159e4e6eb018866df0a84feb2c7f68/objectstore/objectstore.py#L126-L140 | train |
Amsterdam/objectstore | objectstore/objectstore.py | delete_object | def delete_object(connection, container: str, object_meta_data: dict) -> None:
"""
Delete single object from objectstore
"""
connection.delete_object(container, object_meta_data['name']) | python | def delete_object(connection, container: str, object_meta_data: dict) -> None:
"""
Delete single object from objectstore
"""
connection.delete_object(container, object_meta_data['name']) | [
"def",
"delete_object",
"(",
"connection",
",",
"container",
":",
"str",
",",
"object_meta_data",
":",
"dict",
")",
"->",
"None",
":",
"connection",
".",
"delete_object",
"(",
"container",
",",
"object_meta_data",
"[",
"'name'",
"]",
")"
] | Delete single object from objectstore | [
"Delete",
"single",
"object",
"from",
"objectstore"
] | 15852e8a3f159e4e6eb018866df0a84feb2c7f68 | https://github.com/Amsterdam/objectstore/blob/15852e8a3f159e4e6eb018866df0a84feb2c7f68/objectstore/objectstore.py#L143-L147 | train |
Amsterdam/objectstore | objectstore/databasedumps.py | return_file_objects | def return_file_objects(connection, container, prefix='database'):
"""Given connecton and container find database dumps
"""
options = []
meta_data = objectstore.get_full_container_list(
connection, container, prefix='database')
env = ENV.upper()
for o_info in meta_data:
expec... | python | def return_file_objects(connection, container, prefix='database'):
"""Given connecton and container find database dumps
"""
options = []
meta_data = objectstore.get_full_container_list(
connection, container, prefix='database')
env = ENV.upper()
for o_info in meta_data:
expec... | [
"def",
"return_file_objects",
"(",
"connection",
",",
"container",
",",
"prefix",
"=",
"'database'",
")",
":",
"options",
"=",
"[",
"]",
"meta_data",
"=",
"objectstore",
".",
"get_full_container_list",
"(",
"connection",
",",
"container",
",",
"prefix",
"=",
"... | Given connecton and container find database dumps | [
"Given",
"connecton",
"and",
"container",
"find",
"database",
"dumps"
] | 15852e8a3f159e4e6eb018866df0a84feb2c7f68 | https://github.com/Amsterdam/objectstore/blob/15852e8a3f159e4e6eb018866df0a84feb2c7f68/objectstore/databasedumps.py#L66-L91 | train |
Amsterdam/objectstore | objectstore/databasedumps.py | remove_old_dumps | def remove_old_dumps(connection, container: str, days=None):
"""Remove dumps older than x days
"""
if not days:
return
if days < 20:
LOG.error('A minimum of 20 backups is stored')
return
options = return_file_objects(connection, container)
for dt, o_info in options:
... | python | def remove_old_dumps(connection, container: str, days=None):
"""Remove dumps older than x days
"""
if not days:
return
if days < 20:
LOG.error('A minimum of 20 backups is stored')
return
options = return_file_objects(connection, container)
for dt, o_info in options:
... | [
"def",
"remove_old_dumps",
"(",
"connection",
",",
"container",
":",
"str",
",",
"days",
"=",
"None",
")",
":",
"if",
"not",
"days",
":",
"return",
"if",
"days",
"<",
"20",
":",
"LOG",
".",
"error",
"(",
"'A minimum of 20 backups is stored'",
")",
"return"... | Remove dumps older than x days | [
"Remove",
"dumps",
"older",
"than",
"x",
"days"
] | 15852e8a3f159e4e6eb018866df0a84feb2c7f68 | https://github.com/Amsterdam/objectstore/blob/15852e8a3f159e4e6eb018866df0a84feb2c7f68/objectstore/databasedumps.py#L94-L112 | train |
Amsterdam/objectstore | objectstore/databasedumps.py | download_database | def download_database(connection, container: str, target: str=""):
"""
Download database dump
"""
meta_data = objectstore.get_full_container_list(
connection, container, prefix='database')
options = return_file_objects(connection, container)
for o_info in meta_data:
expected_f... | python | def download_database(connection, container: str, target: str=""):
"""
Download database dump
"""
meta_data = objectstore.get_full_container_list(
connection, container, prefix='database')
options = return_file_objects(connection, container)
for o_info in meta_data:
expected_f... | [
"def",
"download_database",
"(",
"connection",
",",
"container",
":",
"str",
",",
"target",
":",
"str",
"=",
"\"\"",
")",
":",
"meta_data",
"=",
"objectstore",
".",
"get_full_container_list",
"(",
"connection",
",",
"container",
",",
"prefix",
"=",
"'database'... | Download database dump | [
"Download",
"database",
"dump"
] | 15852e8a3f159e4e6eb018866df0a84feb2c7f68 | https://github.com/Amsterdam/objectstore/blob/15852e8a3f159e4e6eb018866df0a84feb2c7f68/objectstore/databasedumps.py#L115-L160 | train |
conwetlab/ckanext-oauth2 | ckanext/oauth2/oauth2.py | OAuth2Helper.remember | def remember(self, user_name):
'''
Remember the authenticated identity.
This method simply delegates to another IIdentifier plugin if configured.
'''
log.debug('Repoze OAuth remember')
environ = toolkit.request.environ
rememberer = self._get_rememberer(environ)
... | python | def remember(self, user_name):
'''
Remember the authenticated identity.
This method simply delegates to another IIdentifier plugin if configured.
'''
log.debug('Repoze OAuth remember')
environ = toolkit.request.environ
rememberer = self._get_rememberer(environ)
... | [
"def",
"remember",
"(",
"self",
",",
"user_name",
")",
":",
"log",
".",
"debug",
"(",
"'Repoze OAuth remember'",
")",
"environ",
"=",
"toolkit",
".",
"request",
".",
"environ",
"rememberer",
"=",
"self",
".",
"_get_rememberer",
"(",
"environ",
")",
"identity... | Remember the authenticated identity.
This method simply delegates to another IIdentifier plugin if configured. | [
"Remember",
"the",
"authenticated",
"identity",
"."
] | e68dd2664229b7563d77b2c8fc869fe57b747c88 | https://github.com/conwetlab/ckanext-oauth2/blob/e68dd2664229b7563d77b2c8fc869fe57b747c88/ckanext/oauth2/oauth2.py#L206-L218 | train |
conwetlab/ckanext-oauth2 | ckanext/oauth2/oauth2.py | OAuth2Helper.redirect_from_callback | def redirect_from_callback(self):
'''Redirect to the callback URL after a successful authentication.'''
state = toolkit.request.params.get('state')
came_from = get_came_from(state)
toolkit.response.status = 302
toolkit.response.location = came_from | python | def redirect_from_callback(self):
'''Redirect to the callback URL after a successful authentication.'''
state = toolkit.request.params.get('state')
came_from = get_came_from(state)
toolkit.response.status = 302
toolkit.response.location = came_from | [
"def",
"redirect_from_callback",
"(",
"self",
")",
":",
"state",
"=",
"toolkit",
".",
"request",
".",
"params",
".",
"get",
"(",
"'state'",
")",
"came_from",
"=",
"get_came_from",
"(",
"state",
")",
"toolkit",
".",
"response",
".",
"status",
"=",
"302",
... | Redirect to the callback URL after a successful authentication. | [
"Redirect",
"to",
"the",
"callback",
"URL",
"after",
"a",
"successful",
"authentication",
"."
] | e68dd2664229b7563d77b2c8fc869fe57b747c88 | https://github.com/conwetlab/ckanext-oauth2/blob/e68dd2664229b7563d77b2c8fc869fe57b747c88/ckanext/oauth2/oauth2.py#L220-L225 | train |
pinax/pinax-documents | pinax/documents/hooks.py | DocumentsDefaultHookSet.can_share_folder | def can_share_folder(self, user, folder):
"""
Return True if `user` can share `folder`.
"""
return folder.parent_id is None and folder.author_id == user.id | python | def can_share_folder(self, user, folder):
"""
Return True if `user` can share `folder`.
"""
return folder.parent_id is None and folder.author_id == user.id | [
"def",
"can_share_folder",
"(",
"self",
",",
"user",
",",
"folder",
")",
":",
"return",
"folder",
".",
"parent_id",
"is",
"None",
"and",
"folder",
".",
"author_id",
"==",
"user",
".",
"id"
] | Return True if `user` can share `folder`. | [
"Return",
"True",
"if",
"user",
"can",
"share",
"folder",
"."
] | b8c6a748976ec4b22cff9b195eb426b46c7a2a1e | https://github.com/pinax/pinax-documents/blob/b8c6a748976ec4b22cff9b195eb426b46c7a2a1e/pinax/documents/hooks.py#L20-L24 | train |
pinax/pinax-documents | pinax/documents/hooks.py | DocumentsDefaultHookSet.storage_color | def storage_color(self, user_storage):
"""
Return labels indicating amount of storage used.
"""
p = user_storage.percentage
if p >= 0 and p < 60:
return "success"
if p >= 60 and p < 90:
return "warning"
if p >= 90 and p <= 100:
... | python | def storage_color(self, user_storage):
"""
Return labels indicating amount of storage used.
"""
p = user_storage.percentage
if p >= 0 and p < 60:
return "success"
if p >= 60 and p < 90:
return "warning"
if p >= 90 and p <= 100:
... | [
"def",
"storage_color",
"(",
"self",
",",
"user_storage",
")",
":",
"p",
"=",
"user_storage",
".",
"percentage",
"if",
"p",
">=",
"0",
"and",
"p",
"<",
"60",
":",
"return",
"\"success\"",
"if",
"p",
">=",
"60",
"and",
"p",
"<",
"90",
":",
"return",
... | Return labels indicating amount of storage used. | [
"Return",
"labels",
"indicating",
"amount",
"of",
"storage",
"used",
"."
] | b8c6a748976ec4b22cff9b195eb426b46c7a2a1e | https://github.com/pinax/pinax-documents/blob/b8c6a748976ec4b22cff9b195eb426b46c7a2a1e/pinax/documents/hooks.py#L26-L37 | train |
pinax/pinax-documents | pinax/documents/hooks.py | DocumentsDefaultHookSet.folder_created_message | def folder_created_message(self, request, folder):
"""
Send messages.success message after successful folder creation.
"""
messages.success(request, _("Folder {} was created".format(folder))) | python | def folder_created_message(self, request, folder):
"""
Send messages.success message after successful folder creation.
"""
messages.success(request, _("Folder {} was created".format(folder))) | [
"def",
"folder_created_message",
"(",
"self",
",",
"request",
",",
"folder",
")",
":",
"messages",
".",
"success",
"(",
"request",
",",
"_",
"(",
"\"Folder {} was created\"",
".",
"format",
"(",
"folder",
")",
")",
")"
] | Send messages.success message after successful folder creation. | [
"Send",
"messages",
".",
"success",
"message",
"after",
"successful",
"folder",
"creation",
"."
] | b8c6a748976ec4b22cff9b195eb426b46c7a2a1e | https://github.com/pinax/pinax-documents/blob/b8c6a748976ec4b22cff9b195eb426b46c7a2a1e/pinax/documents/hooks.py#L39-L43 | train |
pinax/pinax-documents | pinax/documents/hooks.py | DocumentsDefaultHookSet.document_created_message | def document_created_message(self, request, document):
"""
Send messages.success message after successful document creation.
"""
messages.success(request, _("Document {} was created".format(document))) | python | def document_created_message(self, request, document):
"""
Send messages.success message after successful document creation.
"""
messages.success(request, _("Document {} was created".format(document))) | [
"def",
"document_created_message",
"(",
"self",
",",
"request",
",",
"document",
")",
":",
"messages",
".",
"success",
"(",
"request",
",",
"_",
"(",
"\"Document {} was created\"",
".",
"format",
"(",
"document",
")",
")",
")"
] | Send messages.success message after successful document creation. | [
"Send",
"messages",
".",
"success",
"message",
"after",
"successful",
"document",
"creation",
"."
] | b8c6a748976ec4b22cff9b195eb426b46c7a2a1e | https://github.com/pinax/pinax-documents/blob/b8c6a748976ec4b22cff9b195eb426b46c7a2a1e/pinax/documents/hooks.py#L45-L49 | train |
pinax/pinax-documents | pinax/documents/hooks.py | DocumentsDefaultHookSet.folder_shared_message | def folder_shared_message(self, request, user, folder):
"""
Send messages.success message after successful share.
"""
messages.success(request, _("Folder {} is now shared with {}".format(folder, user))) | python | def folder_shared_message(self, request, user, folder):
"""
Send messages.success message after successful share.
"""
messages.success(request, _("Folder {} is now shared with {}".format(folder, user))) | [
"def",
"folder_shared_message",
"(",
"self",
",",
"request",
",",
"user",
",",
"folder",
")",
":",
"messages",
".",
"success",
"(",
"request",
",",
"_",
"(",
"\"Folder {} is now shared with {}\"",
".",
"format",
"(",
"folder",
",",
"user",
")",
")",
")"
] | Send messages.success message after successful share. | [
"Send",
"messages",
".",
"success",
"message",
"after",
"successful",
"share",
"."
] | b8c6a748976ec4b22cff9b195eb426b46c7a2a1e | https://github.com/pinax/pinax-documents/blob/b8c6a748976ec4b22cff9b195eb426b46c7a2a1e/pinax/documents/hooks.py#L51-L55 | train |
pinax/pinax-documents | pinax/documents/hooks.py | DocumentsDefaultHookSet.folder_pre_delete | def folder_pre_delete(self, request, folder):
"""
Perform folder operations prior to deletions. For example, deleting all contents.
"""
for m in folder.members():
if m.__class__ == folder.__class__:
self.folder_pre_delete(request, m)
m.delete() | python | def folder_pre_delete(self, request, folder):
"""
Perform folder operations prior to deletions. For example, deleting all contents.
"""
for m in folder.members():
if m.__class__ == folder.__class__:
self.folder_pre_delete(request, m)
m.delete() | [
"def",
"folder_pre_delete",
"(",
"self",
",",
"request",
",",
"folder",
")",
":",
"for",
"m",
"in",
"folder",
".",
"members",
"(",
")",
":",
"if",
"m",
".",
"__class__",
"==",
"folder",
".",
"__class__",
":",
"self",
".",
"folder_pre_delete",
"(",
"req... | Perform folder operations prior to deletions. For example, deleting all contents. | [
"Perform",
"folder",
"operations",
"prior",
"to",
"deletions",
".",
"For",
"example",
"deleting",
"all",
"contents",
"."
] | b8c6a748976ec4b22cff9b195eb426b46c7a2a1e | https://github.com/pinax/pinax-documents/blob/b8c6a748976ec4b22cff9b195eb426b46c7a2a1e/pinax/documents/hooks.py#L75-L82 | train |
pinax/pinax-documents | pinax/documents/hooks.py | DocumentsDefaultHookSet.file_upload_to | def file_upload_to(self, instance, filename):
"""
Callable passed to the FileField's upload_to kwarg on Document.file
"""
ext = filename.split(".")[-1]
filename = "{}.{}".format(uuid.uuid4(), ext)
return os.path.join("document", filename) | python | def file_upload_to(self, instance, filename):
"""
Callable passed to the FileField's upload_to kwarg on Document.file
"""
ext = filename.split(".")[-1]
filename = "{}.{}".format(uuid.uuid4(), ext)
return os.path.join("document", filename) | [
"def",
"file_upload_to",
"(",
"self",
",",
"instance",
",",
"filename",
")",
":",
"ext",
"=",
"filename",
".",
"split",
"(",
"\".\"",
")",
"[",
"-",
"1",
"]",
"filename",
"=",
"\"{}.{}\"",
".",
"format",
"(",
"uuid",
".",
"uuid4",
"(",
")",
",",
"e... | Callable passed to the FileField's upload_to kwarg on Document.file | [
"Callable",
"passed",
"to",
"the",
"FileField",
"s",
"upload_to",
"kwarg",
"on",
"Document",
".",
"file"
] | b8c6a748976ec4b22cff9b195eb426b46c7a2a1e | https://github.com/pinax/pinax-documents/blob/b8c6a748976ec4b22cff9b195eb426b46c7a2a1e/pinax/documents/hooks.py#L84-L90 | train |
pinax/pinax-documents | pinax/documents/managers.py | FolderQuerySet.for_user | def for_user(self, user):
"""
All folders the given user can do something with.
"""
qs = SharedMemberQuerySet(model=self.model, using=self._db, user=user)
qs = qs.filter(Q(author=user) | Q(foldershareduser__user=user))
return qs.distinct() & self.distinct() | python | def for_user(self, user):
"""
All folders the given user can do something with.
"""
qs = SharedMemberQuerySet(model=self.model, using=self._db, user=user)
qs = qs.filter(Q(author=user) | Q(foldershareduser__user=user))
return qs.distinct() & self.distinct() | [
"def",
"for_user",
"(",
"self",
",",
"user",
")",
":",
"qs",
"=",
"SharedMemberQuerySet",
"(",
"model",
"=",
"self",
".",
"model",
",",
"using",
"=",
"self",
".",
"_db",
",",
"user",
"=",
"user",
")",
"qs",
"=",
"qs",
".",
"filter",
"(",
"Q",
"("... | All folders the given user can do something with. | [
"All",
"folders",
"the",
"given",
"user",
"can",
"do",
"something",
"with",
"."
] | b8c6a748976ec4b22cff9b195eb426b46c7a2a1e | https://github.com/pinax/pinax-documents/blob/b8c6a748976ec4b22cff9b195eb426b46c7a2a1e/pinax/documents/managers.py#L31-L37 | train |
qubole/qds-sdk-py | qds_sdk/cluster.py | Cluster._parse_list | def _parse_list(cls, args):
"""
Parse command line arguments to construct a dictionary of cluster
parameters that can be used to determine which clusters to list.
Args:
`args`: sequence of arguments
Returns:
Dictionary that can be used to determine which... | python | def _parse_list(cls, args):
"""
Parse command line arguments to construct a dictionary of cluster
parameters that can be used to determine which clusters to list.
Args:
`args`: sequence of arguments
Returns:
Dictionary that can be used to determine which... | [
"def",
"_parse_list",
"(",
"cls",
",",
"args",
")",
":",
"argparser",
"=",
"ArgumentParser",
"(",
"prog",
"=",
"\"cluster list\"",
")",
"group",
"=",
"argparser",
".",
"add_mutually_exclusive_group",
"(",
")",
"group",
".",
"add_argument",
"(",
"\"--id\"",
","... | Parse command line arguments to construct a dictionary of cluster
parameters that can be used to determine which clusters to list.
Args:
`args`: sequence of arguments
Returns:
Dictionary that can be used to determine which clusters to list | [
"Parse",
"command",
"line",
"arguments",
"to",
"construct",
"a",
"dictionary",
"of",
"cluster",
"parameters",
"that",
"can",
"be",
"used",
"to",
"determine",
"which",
"clusters",
"to",
"list",
"."
] | 77210fb64e5a7d567aedeea3b742a1d872fd0e5e | https://github.com/qubole/qds-sdk-py/blob/77210fb64e5a7d567aedeea3b742a1d872fd0e5e/qds_sdk/cluster.py#L31-L62 | train |
qubole/qds-sdk-py | qds_sdk/cluster.py | Cluster._parse_cluster_manage_command | def _parse_cluster_manage_command(cls, args, action):
"""
Parse command line arguments for cluster manage commands.
"""
argparser = ArgumentParser(prog="cluster_manage_command")
group = argparser.add_mutually_exclusive_group(required=True)
group.add_argument("--id", dest="cluster_... | python | def _parse_cluster_manage_command(cls, args, action):
"""
Parse command line arguments for cluster manage commands.
"""
argparser = ArgumentParser(prog="cluster_manage_command")
group = argparser.add_mutually_exclusive_group(required=True)
group.add_argument("--id", dest="cluster_... | [
"def",
"_parse_cluster_manage_command",
"(",
"cls",
",",
"args",
",",
"action",
")",
":",
"argparser",
"=",
"ArgumentParser",
"(",
"prog",
"=",
"\"cluster_manage_command\"",
")",
"group",
"=",
"argparser",
".",
"add_mutually_exclusive_group",
"(",
"required",
"=",
... | Parse command line arguments for cluster manage commands. | [
"Parse",
"command",
"line",
"arguments",
"for",
"cluster",
"manage",
"commands",
"."
] | 77210fb64e5a7d567aedeea3b742a1d872fd0e5e | https://github.com/qubole/qds-sdk-py/blob/77210fb64e5a7d567aedeea3b742a1d872fd0e5e/qds_sdk/cluster.py#L530-L553 | train |
qubole/qds-sdk-py | qds_sdk/cluster.py | Cluster._parse_reassign_label | def _parse_reassign_label(cls, args):
"""
Parse command line arguments for reassigning label.
"""
argparser = ArgumentParser(prog="cluster reassign_label")
argparser.add_argument("destination_cluster",
metavar="destination_cluster_id_label",
help=... | python | def _parse_reassign_label(cls, args):
"""
Parse command line arguments for reassigning label.
"""
argparser = ArgumentParser(prog="cluster reassign_label")
argparser.add_argument("destination_cluster",
metavar="destination_cluster_id_label",
help=... | [
"def",
"_parse_reassign_label",
"(",
"cls",
",",
"args",
")",
":",
"argparser",
"=",
"ArgumentParser",
"(",
"prog",
"=",
"\"cluster reassign_label\"",
")",
"argparser",
".",
"add_argument",
"(",
"\"destination_cluster\"",
",",
"metavar",
"=",
"\"destination_cluster_id... | Parse command line arguments for reassigning label. | [
"Parse",
"command",
"line",
"arguments",
"for",
"reassigning",
"label",
"."
] | 77210fb64e5a7d567aedeea3b742a1d872fd0e5e | https://github.com/qubole/qds-sdk-py/blob/77210fb64e5a7d567aedeea3b742a1d872fd0e5e/qds_sdk/cluster.py#L556-L570 | train |
qubole/qds-sdk-py | qds_sdk/cluster.py | Cluster.reassign_label | def reassign_label(cls, destination_cluster, label):
"""
Reassign a label from one cluster to another.
Args:
`destination_cluster`: id/label of the cluster to move the label to
`label`: label to be moved from the source cluster
"""
conn = Qubole.agent(ve... | python | def reassign_label(cls, destination_cluster, label):
"""
Reassign a label from one cluster to another.
Args:
`destination_cluster`: id/label of the cluster to move the label to
`label`: label to be moved from the source cluster
"""
conn = Qubole.agent(ve... | [
"def",
"reassign_label",
"(",
"cls",
",",
"destination_cluster",
",",
"label",
")",
":",
"conn",
"=",
"Qubole",
".",
"agent",
"(",
"version",
"=",
"Cluster",
".",
"api_version",
")",
"data",
"=",
"{",
"\"destination_cluster\"",
":",
"destination_cluster",
",",... | Reassign a label from one cluster to another.
Args:
`destination_cluster`: id/label of the cluster to move the label to
`label`: label to be moved from the source cluster | [
"Reassign",
"a",
"label",
"from",
"one",
"cluster",
"to",
"another",
"."
] | 77210fb64e5a7d567aedeea3b742a1d872fd0e5e | https://github.com/qubole/qds-sdk-py/blob/77210fb64e5a7d567aedeea3b742a1d872fd0e5e/qds_sdk/cluster.py#L573-L587 | train |
qubole/qds-sdk-py | qds_sdk/cluster.py | Cluster._parse_snapshot_restore_command | def _parse_snapshot_restore_command(cls, args, action):
"""
Parse command line arguments for snapshot command.
"""
argparser = ArgumentParser(prog="cluster %s" % action)
group = argparser.add_mutually_exclusive_group(required=True)
group.add_argument("--id", dest="cluste... | python | def _parse_snapshot_restore_command(cls, args, action):
"""
Parse command line arguments for snapshot command.
"""
argparser = ArgumentParser(prog="cluster %s" % action)
group = argparser.add_mutually_exclusive_group(required=True)
group.add_argument("--id", dest="cluste... | [
"def",
"_parse_snapshot_restore_command",
"(",
"cls",
",",
"args",
",",
"action",
")",
":",
"argparser",
"=",
"ArgumentParser",
"(",
"prog",
"=",
"\"cluster %s\"",
"%",
"action",
")",
"group",
"=",
"argparser",
".",
"add_mutually_exclusive_group",
"(",
"required",... | Parse command line arguments for snapshot command. | [
"Parse",
"command",
"line",
"arguments",
"for",
"snapshot",
"command",
"."
] | 77210fb64e5a7d567aedeea3b742a1d872fd0e5e | https://github.com/qubole/qds-sdk-py/blob/77210fb64e5a7d567aedeea3b742a1d872fd0e5e/qds_sdk/cluster.py#L598-L625 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.