repo stringlengths 7 55 | path stringlengths 4 223 | func_name stringlengths 1 134 | original_string stringlengths 75 104k | language stringclasses 1
value | code stringlengths 75 104k | code_tokens listlengths 19 28.4k | docstring stringlengths 1 46.9k | docstring_tokens listlengths 1 1.97k | sha stringlengths 40 40 | url stringlengths 87 315 | partition stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|
AoiKuiyuyou/AoikLiveReload | src/aoiklivereload/demo/flask_demo.py | main | def main():
"""
Main function.
:return:
None.
"""
try:
# Get the `src` directory's absolute path
src_path = os.path.dirname(
# `aoiklivereload` directory's absolute path
os.path.dirname(
# `demo` directory's absolute path
... | python | def main():
"""
Main function.
:return:
None.
"""
try:
# Get the `src` directory's absolute path
src_path = os.path.dirname(
# `aoiklivereload` directory's absolute path
os.path.dirname(
# `demo` directory's absolute path
... | [
"def",
"main",
"(",
")",
":",
"try",
":",
"# Get the `src` directory's absolute path",
"src_path",
"=",
"os",
".",
"path",
".",
"dirname",
"(",
"# `aoiklivereload` directory's absolute path",
"os",
".",
"path",
".",
"dirname",
"(",
"# `demo` directory's absolute path",
... | Main function.
:return:
None. | [
"Main",
"function",
"."
] | 0d5adb12118a33749e6690a8165fdb769cff7d5c | https://github.com/AoiKuiyuyou/AoikLiveReload/blob/0d5adb12118a33749e6690a8165fdb769cff7d5c/src/aoiklivereload/demo/flask_demo.py#L15-L92 | train |
housecanary/hc-api-python | housecanary/excel/analytics_data_excel.py | get_excel_workbook | def get_excel_workbook(api_data, result_info_key, identifier_keys):
"""Generates an Excel workbook object given api_data returned by the Analytics API
Args:
api_data: Analytics API data as a list of dicts (one per identifier)
result_info_key: the key in api_data dicts that contains the data res... | python | def get_excel_workbook(api_data, result_info_key, identifier_keys):
"""Generates an Excel workbook object given api_data returned by the Analytics API
Args:
api_data: Analytics API data as a list of dicts (one per identifier)
result_info_key: the key in api_data dicts that contains the data res... | [
"def",
"get_excel_workbook",
"(",
"api_data",
",",
"result_info_key",
",",
"identifier_keys",
")",
":",
"cleaned_data",
"=",
"[",
"]",
"for",
"item_data",
"in",
"api_data",
":",
"result_info",
"=",
"item_data",
".",
"pop",
"(",
"result_info_key",
",",
"{",
"}"... | Generates an Excel workbook object given api_data returned by the Analytics API
Args:
api_data: Analytics API data as a list of dicts (one per identifier)
result_info_key: the key in api_data dicts that contains the data results
identifier_keys: the list of keys used as requested identifier... | [
"Generates",
"an",
"Excel",
"workbook",
"object",
"given",
"api_data",
"returned",
"by",
"the",
"Analytics",
"API"
] | 2bb9e2208b34e8617575de45934357ee33b8531c | https://github.com/housecanary/hc-api-python/blob/2bb9e2208b34e8617575de45934357ee33b8531c/housecanary/excel/analytics_data_excel.py#L30-L67 | train |
housecanary/hc-api-python | housecanary/excel/analytics_data_excel.py | write_worksheets | def write_worksheets(workbook, data_list, result_info_key, identifier_keys):
"""Writes rest of the worksheets to workbook.
Args:
workbook: workbook to write into
data_list: Analytics API data as a list of dicts
result_info_key: the key in api_data dicts that contains the data results
... | python | def write_worksheets(workbook, data_list, result_info_key, identifier_keys):
"""Writes rest of the worksheets to workbook.
Args:
workbook: workbook to write into
data_list: Analytics API data as a list of dicts
result_info_key: the key in api_data dicts that contains the data results
... | [
"def",
"write_worksheets",
"(",
"workbook",
",",
"data_list",
",",
"result_info_key",
",",
"identifier_keys",
")",
":",
"# we can use the first item to figure out the worksheet keys",
"worksheet_keys",
"=",
"get_worksheet_keys",
"(",
"data_list",
"[",
"0",
"]",
",",
"resu... | Writes rest of the worksheets to workbook.
Args:
workbook: workbook to write into
data_list: Analytics API data as a list of dicts
result_info_key: the key in api_data dicts that contains the data results
identifier_keys: the list of keys used as requested identifiers
... | [
"Writes",
"rest",
"of",
"the",
"worksheets",
"to",
"workbook",
"."
] | 2bb9e2208b34e8617575de45934357ee33b8531c | https://github.com/housecanary/hc-api-python/blob/2bb9e2208b34e8617575de45934357ee33b8531c/housecanary/excel/analytics_data_excel.py#L70-L106 | train |
housecanary/hc-api-python | housecanary/excel/analytics_data_excel.py | create_property_nod_worksheets | def create_property_nod_worksheets(workbook, data_list, result_info_key, identifier_keys):
"""Creates two worksheets out of the property/nod data because the data
doesn't come flat enough to make sense on one sheet.
Args:
workbook: the main workbook to add the sheets to
data_l... | python | def create_property_nod_worksheets(workbook, data_list, result_info_key, identifier_keys):
"""Creates two worksheets out of the property/nod data because the data
doesn't come flat enough to make sense on one sheet.
Args:
workbook: the main workbook to add the sheets to
data_l... | [
"def",
"create_property_nod_worksheets",
"(",
"workbook",
",",
"data_list",
",",
"result_info_key",
",",
"identifier_keys",
")",
":",
"nod_details_list",
"=",
"[",
"]",
"nod_default_history_list",
"=",
"[",
"]",
"for",
"prop_data",
"in",
"data_list",
":",
"nod_data"... | Creates two worksheets out of the property/nod data because the data
doesn't come flat enough to make sense on one sheet.
Args:
workbook: the main workbook to add the sheets to
data_list: the main list of data
result_info_key: the key in api_data dicts that contains th... | [
"Creates",
"two",
"worksheets",
"out",
"of",
"the",
"property",
"/",
"nod",
"data",
"because",
"the",
"data",
"doesn",
"t",
"come",
"flat",
"enough",
"to",
"make",
"sense",
"on",
"one",
"sheet",
"."
] | 2bb9e2208b34e8617575de45934357ee33b8531c | https://github.com/housecanary/hc-api-python/blob/2bb9e2208b34e8617575de45934357ee33b8531c/housecanary/excel/analytics_data_excel.py#L109-L144 | train |
housecanary/hc-api-python | housecanary/excel/analytics_data_excel.py | get_worksheet_keys | def get_worksheet_keys(data_dict, result_info_key):
"""Gets sorted keys from the dict, ignoring result_info_key and 'meta' key
Args:
data_dict: dict to pull keys from
Returns:
list of keys in the dict other than the result_info_key
"""
keys = set(data_dict.keys())
keys.remove(re... | python | def get_worksheet_keys(data_dict, result_info_key):
"""Gets sorted keys from the dict, ignoring result_info_key and 'meta' key
Args:
data_dict: dict to pull keys from
Returns:
list of keys in the dict other than the result_info_key
"""
keys = set(data_dict.keys())
keys.remove(re... | [
"def",
"get_worksheet_keys",
"(",
"data_dict",
",",
"result_info_key",
")",
":",
"keys",
"=",
"set",
"(",
"data_dict",
".",
"keys",
"(",
")",
")",
"keys",
".",
"remove",
"(",
"result_info_key",
")",
"if",
"'meta'",
"in",
"keys",
":",
"keys",
".",
"remove... | Gets sorted keys from the dict, ignoring result_info_key and 'meta' key
Args:
data_dict: dict to pull keys from
Returns:
list of keys in the dict other than the result_info_key | [
"Gets",
"sorted",
"keys",
"from",
"the",
"dict",
"ignoring",
"result_info_key",
"and",
"meta",
"key",
"Args",
":",
"data_dict",
":",
"dict",
"to",
"pull",
"keys",
"from"
] | 2bb9e2208b34e8617575de45934357ee33b8531c | https://github.com/housecanary/hc-api-python/blob/2bb9e2208b34e8617575de45934357ee33b8531c/housecanary/excel/analytics_data_excel.py#L147-L159 | train |
housecanary/hc-api-python | housecanary/excel/analytics_data_excel.py | get_keys | def get_keys(data_list, leading_columns=LEADING_COLUMNS):
"""Gets all possible keys from a list of dicts, sorting by leading_columns first
Args:
data_list: list of dicts to pull keys from
leading_columns: list of keys to put first in the result
Returns:
list of keys to be included ... | python | def get_keys(data_list, leading_columns=LEADING_COLUMNS):
"""Gets all possible keys from a list of dicts, sorting by leading_columns first
Args:
data_list: list of dicts to pull keys from
leading_columns: list of keys to put first in the result
Returns:
list of keys to be included ... | [
"def",
"get_keys",
"(",
"data_list",
",",
"leading_columns",
"=",
"LEADING_COLUMNS",
")",
":",
"all_keys",
"=",
"set",
"(",
")",
".",
"union",
"(",
"*",
"(",
"list",
"(",
"d",
".",
"keys",
"(",
")",
")",
"for",
"d",
"in",
"data_list",
")",
")",
"le... | Gets all possible keys from a list of dicts, sorting by leading_columns first
Args:
data_list: list of dicts to pull keys from
leading_columns: list of keys to put first in the result
Returns:
list of keys to be included as columns in excel worksheet | [
"Gets",
"all",
"possible",
"keys",
"from",
"a",
"list",
"of",
"dicts",
"sorting",
"by",
"leading_columns",
"first"
] | 2bb9e2208b34e8617575de45934357ee33b8531c | https://github.com/housecanary/hc-api-python/blob/2bb9e2208b34e8617575de45934357ee33b8531c/housecanary/excel/analytics_data_excel.py#L162-L182 | train |
housecanary/hc-api-python | housecanary/excel/analytics_data_excel.py | write_data | def write_data(worksheet, data):
"""Writes data into worksheet.
Args:
worksheet: worksheet to write into
data: data to be written
"""
if not data:
return
if isinstance(data, list):
rows = data
else:
rows = [data]
if isinstance(rows[0], dict):
... | python | def write_data(worksheet, data):
"""Writes data into worksheet.
Args:
worksheet: worksheet to write into
data: data to be written
"""
if not data:
return
if isinstance(data, list):
rows = data
else:
rows = [data]
if isinstance(rows[0], dict):
... | [
"def",
"write_data",
"(",
"worksheet",
",",
"data",
")",
":",
"if",
"not",
"data",
":",
"return",
"if",
"isinstance",
"(",
"data",
",",
"list",
")",
":",
"rows",
"=",
"data",
"else",
":",
"rows",
"=",
"[",
"data",
"]",
"if",
"isinstance",
"(",
"row... | Writes data into worksheet.
Args:
worksheet: worksheet to write into
data: data to be written | [
"Writes",
"data",
"into",
"worksheet",
"."
] | 2bb9e2208b34e8617575de45934357ee33b8531c | https://github.com/housecanary/hc-api-python/blob/2bb9e2208b34e8617575de45934357ee33b8531c/housecanary/excel/analytics_data_excel.py#L185-L212 | train |
housecanary/hc-api-python | housecanary/excel/analytics_data_excel.py | process_data | def process_data(key, data_list, result_info_key, identifier_keys):
""" Given a key as the endpoint name, pulls the data for that endpoint out
of the data_list for each address, processes the data into a more
excel-friendly format and returns that data.
Args:
key: the endpoint n... | python | def process_data(key, data_list, result_info_key, identifier_keys):
""" Given a key as the endpoint name, pulls the data for that endpoint out
of the data_list for each address, processes the data into a more
excel-friendly format and returns that data.
Args:
key: the endpoint n... | [
"def",
"process_data",
"(",
"key",
",",
"data_list",
",",
"result_info_key",
",",
"identifier_keys",
")",
":",
"master_data",
"=",
"[",
"]",
"for",
"item_data",
"in",
"data_list",
":",
"data",
"=",
"item_data",
"[",
"key",
"]",
"if",
"data",
"is",
"None",
... | Given a key as the endpoint name, pulls the data for that endpoint out
of the data_list for each address, processes the data into a more
excel-friendly format and returns that data.
Args:
key: the endpoint name of the data to process
data_list: the main data list to take... | [
"Given",
"a",
"key",
"as",
"the",
"endpoint",
"name",
"pulls",
"the",
"data",
"for",
"that",
"endpoint",
"out",
"of",
"the",
"data_list",
"for",
"each",
"address",
"processes",
"the",
"data",
"into",
"a",
"more",
"excel",
"-",
"friendly",
"format",
"and",
... | 2bb9e2208b34e8617575de45934357ee33b8531c | https://github.com/housecanary/hc-api-python/blob/2bb9e2208b34e8617575de45934357ee33b8531c/housecanary/excel/analytics_data_excel.py#L222-L297 | train |
housecanary/hc-api-python | housecanary/excel/analytics_data_excel.py | flatten_top_level_keys | def flatten_top_level_keys(data, top_level_keys):
""" Helper method to flatten a nested dict of dicts (one level)
Example:
{'a': {'b': 'bbb'}} becomes {'a_-_b': 'bbb'}
The separator '_-_' gets formatted later for the column headers
Args:
data: the dict to flatt... | python | def flatten_top_level_keys(data, top_level_keys):
""" Helper method to flatten a nested dict of dicts (one level)
Example:
{'a': {'b': 'bbb'}} becomes {'a_-_b': 'bbb'}
The separator '_-_' gets formatted later for the column headers
Args:
data: the dict to flatt... | [
"def",
"flatten_top_level_keys",
"(",
"data",
",",
"top_level_keys",
")",
":",
"flattened_data",
"=",
"{",
"}",
"for",
"top_level_key",
"in",
"top_level_keys",
":",
"if",
"data",
"[",
"top_level_key",
"]",
"is",
"None",
":",
"flattened_data",
"[",
"top_level_key... | Helper method to flatten a nested dict of dicts (one level)
Example:
{'a': {'b': 'bbb'}} becomes {'a_-_b': 'bbb'}
The separator '_-_' gets formatted later for the column headers
Args:
data: the dict to flatten
top_level_keys: a list of the top level key... | [
"Helper",
"method",
"to",
"flatten",
"a",
"nested",
"dict",
"of",
"dicts",
"(",
"one",
"level",
")"
] | 2bb9e2208b34e8617575de45934357ee33b8531c | https://github.com/housecanary/hc-api-python/blob/2bb9e2208b34e8617575de45934357ee33b8531c/housecanary/excel/analytics_data_excel.py#L311-L332 | train |
mozilla-services/python-dockerflow | src/dockerflow/django/checks.py | check_database_connected | def check_database_connected(app_configs, **kwargs):
"""
A Django check to see if connecting to the configured default
database backend succeeds.
"""
errors = []
try:
connection.ensure_connection()
except OperationalError as e:
msg = 'Could not connect to database: {!s}'.for... | python | def check_database_connected(app_configs, **kwargs):
"""
A Django check to see if connecting to the configured default
database backend succeeds.
"""
errors = []
try:
connection.ensure_connection()
except OperationalError as e:
msg = 'Could not connect to database: {!s}'.for... | [
"def",
"check_database_connected",
"(",
"app_configs",
",",
"*",
"*",
"kwargs",
")",
":",
"errors",
"=",
"[",
"]",
"try",
":",
"connection",
".",
"ensure_connection",
"(",
")",
"except",
"OperationalError",
"as",
"e",
":",
"msg",
"=",
"'Could not connect to da... | A Django check to see if connecting to the configured default
database backend succeeds. | [
"A",
"Django",
"check",
"to",
"see",
"if",
"connecting",
"to",
"the",
"configured",
"default",
"database",
"backend",
"succeeds",
"."
] | 43703c5e8934ba6901b0a1520d6da4ed6457208c | https://github.com/mozilla-services/python-dockerflow/blob/43703c5e8934ba6901b0a1520d6da4ed6457208c/src/dockerflow/django/checks.py#L26-L48 | train |
mozilla-services/python-dockerflow | src/dockerflow/django/checks.py | check_migrations_applied | def check_migrations_applied(app_configs, **kwargs):
"""
A Django check to see if all migrations have been applied correctly.
"""
from django.db.migrations.loader import MigrationLoader
errors = []
# Load migrations from disk/DB
try:
loader = MigrationLoader(connection, ignore_no_mi... | python | def check_migrations_applied(app_configs, **kwargs):
"""
A Django check to see if all migrations have been applied correctly.
"""
from django.db.migrations.loader import MigrationLoader
errors = []
# Load migrations from disk/DB
try:
loader = MigrationLoader(connection, ignore_no_mi... | [
"def",
"check_migrations_applied",
"(",
"app_configs",
",",
"*",
"*",
"kwargs",
")",
":",
"from",
"django",
".",
"db",
".",
"migrations",
".",
"loader",
"import",
"MigrationLoader",
"errors",
"=",
"[",
"]",
"# Load migrations from disk/DB",
"try",
":",
"loader",... | A Django check to see if all migrations have been applied correctly. | [
"A",
"Django",
"check",
"to",
"see",
"if",
"all",
"migrations",
"have",
"been",
"applied",
"correctly",
"."
] | 43703c5e8934ba6901b0a1520d6da4ed6457208c | https://github.com/mozilla-services/python-dockerflow/blob/43703c5e8934ba6901b0a1520d6da4ed6457208c/src/dockerflow/django/checks.py#L51-L80 | train |
mozilla-services/python-dockerflow | src/dockerflow/django/checks.py | check_redis_connected | def check_redis_connected(app_configs, **kwargs):
"""
A Django check to connect to the default redis connection
using ``django_redis.get_redis_connection`` and see if Redis
responds to a ``PING`` command.
"""
import redis
from django_redis import get_redis_connection
errors = []
try... | python | def check_redis_connected(app_configs, **kwargs):
"""
A Django check to connect to the default redis connection
using ``django_redis.get_redis_connection`` and see if Redis
responds to a ``PING`` command.
"""
import redis
from django_redis import get_redis_connection
errors = []
try... | [
"def",
"check_redis_connected",
"(",
"app_configs",
",",
"*",
"*",
"kwargs",
")",
":",
"import",
"redis",
"from",
"django_redis",
"import",
"get_redis_connection",
"errors",
"=",
"[",
"]",
"try",
":",
"connection",
"=",
"get_redis_connection",
"(",
"'default'",
... | A Django check to connect to the default redis connection
using ``django_redis.get_redis_connection`` and see if Redis
responds to a ``PING`` command. | [
"A",
"Django",
"check",
"to",
"connect",
"to",
"the",
"default",
"redis",
"connection",
"using",
"django_redis",
".",
"get_redis_connection",
"and",
"see",
"if",
"Redis",
"responds",
"to",
"a",
"PING",
"command",
"."
] | 43703c5e8934ba6901b0a1520d6da4ed6457208c | https://github.com/mozilla-services/python-dockerflow/blob/43703c5e8934ba6901b0a1520d6da4ed6457208c/src/dockerflow/django/checks.py#L83-L109 | train |
HPENetworking/PYHPEIMC | build/lib/pyhpeimc/plat/alarms.py | get_realtime_alarm | def get_realtime_alarm(username, auth, url):
"""Takes in no param as input to fetch RealTime Alarms from HP IMC RESTFUL API
:param username OpeatorName, String type. Required. Default Value "admin". Checks the operator
has the privileges to view the Real-Time Alarms.
:param devId: int or str value of... | python | def get_realtime_alarm(username, auth, url):
"""Takes in no param as input to fetch RealTime Alarms from HP IMC RESTFUL API
:param username OpeatorName, String type. Required. Default Value "admin". Checks the operator
has the privileges to view the Real-Time Alarms.
:param devId: int or str value of... | [
"def",
"get_realtime_alarm",
"(",
"username",
",",
"auth",
",",
"url",
")",
":",
"get_realtime_alarm_url",
"=",
"\"/imcrs/fault/faultRealTime?operatorName=\"",
"+",
"username",
"f_url",
"=",
"url",
"+",
"get_realtime_alarm_url",
"r",
"=",
"requests",
".",
"get",
"("... | Takes in no param as input to fetch RealTime Alarms from HP IMC RESTFUL API
:param username OpeatorName, String type. Required. Default Value "admin". Checks the operator
has the privileges to view the Real-Time Alarms.
:param devId: int or str value of the target device
:param auth: requests auth o... | [
"Takes",
"in",
"no",
"param",
"as",
"input",
"to",
"fetch",
"RealTime",
"Alarms",
"from",
"HP",
"IMC",
"RESTFUL",
"API"
] | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/build/lib/pyhpeimc/plat/alarms.py#L63-L100 | train |
HPENetworking/PYHPEIMC | build/lib/pyhpeimc/plat/alarms.py | get_alarms | def get_alarms(username, auth, url):
"""Takes in no param as input to fetch RealTime Alarms from HP IMC RESTFUL API
:param username OpeatorName, String type. Required. Default Value "admin". Checks the operator
has the privileges to view the Real-Time Alarms.
:param devId: int or str value of the tar... | python | def get_alarms(username, auth, url):
"""Takes in no param as input to fetch RealTime Alarms from HP IMC RESTFUL API
:param username OpeatorName, String type. Required. Default Value "admin". Checks the operator
has the privileges to view the Real-Time Alarms.
:param devId: int or str value of the tar... | [
"def",
"get_alarms",
"(",
"username",
",",
"auth",
",",
"url",
")",
":",
"get_alarms_url",
"=",
"\"/imcrs/fault/alarm?operatorName=\"",
"+",
"username",
"+",
"\"&recStatus=0&ackStatus=0&timeRange=0&size=50&desc=true\"",
"f_url",
"=",
"url",
"+",
"get_alarms_url",
"r",
"... | Takes in no param as input to fetch RealTime Alarms from HP IMC RESTFUL API
:param username OpeatorName, String type. Required. Default Value "admin". Checks the operator
has the privileges to view the Real-Time Alarms.
:param devId: int or str value of the target device
:param auth: requests auth o... | [
"Takes",
"in",
"no",
"param",
"as",
"input",
"to",
"fetch",
"RealTime",
"Alarms",
"from",
"HP",
"IMC",
"RESTFUL",
"API"
] | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/build/lib/pyhpeimc/plat/alarms.py#L103-L349 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/alarms.py | get_dev_alarms | def get_dev_alarms(auth, url, devid=None, devip=None):
"""
function takes the devId of a specific device and issues a RESTFUL call to get the current
alarms for the target device.
:param devid: int or str value of the target device
:param devip: str of ipv4 address of the target device
:param... | python | def get_dev_alarms(auth, url, devid=None, devip=None):
"""
function takes the devId of a specific device and issues a RESTFUL call to get the current
alarms for the target device.
:param devid: int or str value of the target device
:param devip: str of ipv4 address of the target device
:param... | [
"def",
"get_dev_alarms",
"(",
"auth",
",",
"url",
",",
"devid",
"=",
"None",
",",
"devip",
"=",
"None",
")",
":",
"# checks to see if the imc credentials are already available",
"if",
"devip",
"is",
"not",
"None",
":",
"devid",
"=",
"get_dev_details",
"(",
"devi... | function takes the devId of a specific device and issues a RESTFUL call to get the current
alarms for the target device.
:param devid: int or str value of the target device
:param devip: str of ipv4 address of the target device
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.... | [
"function",
"takes",
"the",
"devId",
"of",
"a",
"specific",
"device",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"get",
"the",
"current",
"alarms",
"for",
"the",
"target",
"device",
"."
] | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/alarms.py#L20-L62 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/alarms.py | get_realtime_alarm | def get_realtime_alarm(username, auth, url):
"""Takes in no param as input to fetch RealTime Alarms from HP IMC RESTFUL API
:param username OpeatorName, String type. Required. Default Value "admin". Checks the operator
has the privileges to view the Real-Time Alarms.
:param auth: requests auth object... | python | def get_realtime_alarm(username, auth, url):
"""Takes in no param as input to fetch RealTime Alarms from HP IMC RESTFUL API
:param username OpeatorName, String type. Required. Default Value "admin". Checks the operator
has the privileges to view the Real-Time Alarms.
:param auth: requests auth object... | [
"def",
"get_realtime_alarm",
"(",
"username",
",",
"auth",
",",
"url",
")",
":",
"f_url",
"=",
"url",
"+",
"\"/imcrs/fault/faultRealTime?operatorName=\"",
"+",
"username",
"response",
"=",
"requests",
".",
"get",
"(",
"f_url",
",",
"auth",
"=",
"auth",
",",
... | Takes in no param as input to fetch RealTime Alarms from HP IMC RESTFUL API
:param username OpeatorName, String type. Required. Default Value "admin". Checks the operator
has the privileges to view the Real-Time Alarms.
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
... | [
"Takes",
"in",
"no",
"param",
"as",
"input",
"to",
"fetch",
"RealTime",
"Alarms",
"from",
"HP",
"IMC",
"RESTFUL",
"API"
] | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/alarms.py#L65-L99 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/alarms.py | get_alarms | def get_alarms(username, auth, url):
"""Takes in no param as input to fetch RealTime Alarms from HP IMC RESTFUL API
:param username OpeatorName, String type. Required. Default Value "admin". Checks the operator
has the privileges to view the Real-Time Alarms.
:param auth: requests auth object #usuall... | python | def get_alarms(username, auth, url):
"""Takes in no param as input to fetch RealTime Alarms from HP IMC RESTFUL API
:param username OpeatorName, String type. Required. Default Value "admin". Checks the operator
has the privileges to view the Real-Time Alarms.
:param auth: requests auth object #usuall... | [
"def",
"get_alarms",
"(",
"username",
",",
"auth",
",",
"url",
")",
":",
"f_url",
"=",
"url",
"+",
"\"/imcrs/fault/alarm?operatorName=\"",
"+",
"username",
"+",
"\"&recStatus=0&ackStatus=0&timeRange=0&size=50&desc=true\"",
"response",
"=",
"requests",
".",
"get",
"(",... | Takes in no param as input to fetch RealTime Alarms from HP IMC RESTFUL API
:param username OpeatorName, String type. Required. Default Value "admin". Checks the operator
has the privileges to view the Real-Time Alarms.
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
... | [
"Takes",
"in",
"no",
"param",
"as",
"input",
"to",
"fetch",
"RealTime",
"Alarms",
"from",
"HP",
"IMC",
"RESTFUL",
"API"
] | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/alarms.py#L102-L138 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/alarms.py | get_alarm_details | def get_alarm_details(alarm_id, auth, url):
"""
function to take str input of alarm_id, issues a REST call to the IMC REST interface and
returns a dictionary object which contains the details of a specific alarm.
:param alarm_id: str number which represents the internal ID of a specific alarm
:para... | python | def get_alarm_details(alarm_id, auth, url):
"""
function to take str input of alarm_id, issues a REST call to the IMC REST interface and
returns a dictionary object which contains the details of a specific alarm.
:param alarm_id: str number which represents the internal ID of a specific alarm
:para... | [
"def",
"get_alarm_details",
"(",
"alarm_id",
",",
"auth",
",",
"url",
")",
":",
"f_url",
"=",
"url",
"+",
"\"/imcrs/fault/alarm/\"",
"+",
"str",
"(",
"alarm_id",
")",
"response",
"=",
"requests",
".",
"get",
"(",
"f_url",
",",
"auth",
"=",
"auth",
",",
... | function to take str input of alarm_id, issues a REST call to the IMC REST interface and
returns a dictionary object which contains the details of a specific alarm.
:param alarm_id: str number which represents the internal ID of a specific alarm
:param auth:
:param url:
:return: | [
"function",
"to",
"take",
"str",
"input",
"of",
"alarm_id",
"issues",
"a",
"REST",
"call",
"to",
"the",
"IMC",
"REST",
"interface",
"and",
"returns",
"a",
"dictionary",
"object",
"which",
"contains",
"the",
"details",
"of",
"a",
"specific",
"alarm",
".",
"... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/alarms.py#L140-L155 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/alarms.py | acknowledge_alarm | def acknowledge_alarm(alarm_id, auth, url):
"""
Function tasks input of str of alarm ID and sends to REST API. Function will acknowledge
designated alarm in the IMC alarm database.
:param alarm_id: str of alarm ID
param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
... | python | def acknowledge_alarm(alarm_id, auth, url):
"""
Function tasks input of str of alarm ID and sends to REST API. Function will acknowledge
designated alarm in the IMC alarm database.
:param alarm_id: str of alarm ID
param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
... | [
"def",
"acknowledge_alarm",
"(",
"alarm_id",
",",
"auth",
",",
"url",
")",
":",
"f_url",
"=",
"url",
"+",
"\"/imcrs/fault/alarm/acknowledge/\"",
"+",
"str",
"(",
"alarm_id",
")",
"response",
"=",
"requests",
".",
"put",
"(",
"f_url",
",",
"auth",
"=",
"aut... | Function tasks input of str of alarm ID and sends to REST API. Function will acknowledge
designated alarm in the IMC alarm database.
:param alarm_id: str of alarm ID
param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
:param url: base url of IMC RS interface #usually auth... | [
"Function",
"tasks",
"input",
"of",
"str",
"of",
"alarm",
"ID",
"and",
"sends",
"to",
"REST",
"API",
".",
"Function",
"will",
"acknowledge",
"designated",
"alarm",
"in",
"the",
"IMC",
"alarm",
"database",
".",
":",
"param",
"alarm_id",
":",
"str",
"of",
... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/alarms.py#L158-L175 | train |
HPENetworking/PYHPEIMC | build/lib/pyhpeimc/plat/operator.py | create_operator | def create_operator(operator, auth, url,headers=HEADERS):
"""
Function takes input of dictionary operator with the following keys
operator = { "fullName" : "" ,
"sessionTimeout" : "",
"password" : "",
"operatorGroupId" : "",
"name" : "",
"d... | python | def create_operator(operator, auth, url,headers=HEADERS):
"""
Function takes input of dictionary operator with the following keys
operator = { "fullName" : "" ,
"sessionTimeout" : "",
"password" : "",
"operatorGroupId" : "",
"name" : "",
"d... | [
"def",
"create_operator",
"(",
"operator",
",",
"auth",
",",
"url",
",",
"headers",
"=",
"HEADERS",
")",
":",
"create_operator_url",
"=",
"'/imcrs/plat/operator'",
"f_url",
"=",
"url",
"+",
"create_operator_url",
"payload",
"=",
"json",
".",
"dumps",
"(",
"ope... | Function takes input of dictionary operator with the following keys
operator = { "fullName" : "" ,
"sessionTimeout" : "",
"password" : "",
"operatorGroupId" : "",
"name" : "",
"desc" : "",
"defaultAcl" : "",
"authType" : ... | [
"Function",
"takes",
"input",
"of",
"dictionary",
"operator",
"with",
"the",
"following",
"keys",
"operator",
"=",
"{",
"fullName",
":",
"sessionTimeout",
":",
"password",
":",
"operatorGroupId",
":",
"name",
":",
"desc",
":",
"defaultAcl",
":",
"authType",
":... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/build/lib/pyhpeimc/plat/operator.py#L18-L83 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/vfolder.py | list | def list():
'''List virtual folders that belongs to the current user.'''
fields = [
('Name', 'name'),
('ID', 'id'),
('Owner', 'is_owner'),
('Permission', 'permission'),
]
with Session() as session:
try:
resp = session.VFolder.list()
if not ... | python | def list():
'''List virtual folders that belongs to the current user.'''
fields = [
('Name', 'name'),
('ID', 'id'),
('Owner', 'is_owner'),
('Permission', 'permission'),
]
with Session() as session:
try:
resp = session.VFolder.list()
if not ... | [
"def",
"list",
"(",
")",
":",
"fields",
"=",
"[",
"(",
"'Name'",
",",
"'name'",
")",
",",
"(",
"'ID'",
",",
"'id'",
")",
",",
"(",
"'Owner'",
",",
"'is_owner'",
")",
",",
"(",
"'Permission'",
",",
"'permission'",
")",
",",
"]",
"with",
"Session",
... | List virtual folders that belongs to the current user. | [
"List",
"virtual",
"folders",
"that",
"belongs",
"to",
"the",
"current",
"user",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/vfolder.py#L21-L40 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/vfolder.py | list_hosts | def list_hosts():
'''List the hosts of virtual folders that is accessible to the current user.'''
with Session() as session:
try:
resp = session.VFolder.list_hosts()
print(f"Default vfolder host: {resp['default']}")
print(f"Usable hosts: {', '.join(resp['allowed'])}")... | python | def list_hosts():
'''List the hosts of virtual folders that is accessible to the current user.'''
with Session() as session:
try:
resp = session.VFolder.list_hosts()
print(f"Default vfolder host: {resp['default']}")
print(f"Usable hosts: {', '.join(resp['allowed'])}")... | [
"def",
"list_hosts",
"(",
")",
":",
"with",
"Session",
"(",
")",
"as",
"session",
":",
"try",
":",
"resp",
"=",
"session",
".",
"VFolder",
".",
"list_hosts",
"(",
")",
"print",
"(",
"f\"Default vfolder host: {resp['default']}\"",
")",
"print",
"(",
"f\"Usabl... | List the hosts of virtual folders that is accessible to the current user. | [
"List",
"the",
"hosts",
"of",
"virtual",
"folders",
"that",
"is",
"accessible",
"to",
"the",
"current",
"user",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/vfolder.py#L44-L53 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/vfolder.py | create | def create(name, host):
'''Create a new virtual folder.
\b
NAME: Name of a virtual folder.
HOST: Name of a virtual folder host in which the virtual folder will be created.
'''
with Session() as session:
try:
result = session.VFolder.create(name, host)
print('Virt... | python | def create(name, host):
'''Create a new virtual folder.
\b
NAME: Name of a virtual folder.
HOST: Name of a virtual folder host in which the virtual folder will be created.
'''
with Session() as session:
try:
result = session.VFolder.create(name, host)
print('Virt... | [
"def",
"create",
"(",
"name",
",",
"host",
")",
":",
"with",
"Session",
"(",
")",
"as",
"session",
":",
"try",
":",
"result",
"=",
"session",
".",
"VFolder",
".",
"create",
"(",
"name",
",",
"host",
")",
"print",
"(",
"'Virtual folder \"{0}\" is created.... | Create a new virtual folder.
\b
NAME: Name of a virtual folder.
HOST: Name of a virtual folder host in which the virtual folder will be created. | [
"Create",
"a",
"new",
"virtual",
"folder",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/vfolder.py#L59-L72 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/vfolder.py | delete | def delete(name):
'''Delete the given virtual folder. This operation is irreversible!
NAME: Name of a virtual folder.
'''
with Session() as session:
try:
session.VFolder(name).delete()
print_done('Deleted.')
except Exception as e:
print_error(e)
... | python | def delete(name):
'''Delete the given virtual folder. This operation is irreversible!
NAME: Name of a virtual folder.
'''
with Session() as session:
try:
session.VFolder(name).delete()
print_done('Deleted.')
except Exception as e:
print_error(e)
... | [
"def",
"delete",
"(",
"name",
")",
":",
"with",
"Session",
"(",
")",
"as",
"session",
":",
"try",
":",
"session",
".",
"VFolder",
"(",
"name",
")",
".",
"delete",
"(",
")",
"print_done",
"(",
"'Deleted.'",
")",
"except",
"Exception",
"as",
"e",
":",
... | Delete the given virtual folder. This operation is irreversible!
NAME: Name of a virtual folder. | [
"Delete",
"the",
"given",
"virtual",
"folder",
".",
"This",
"operation",
"is",
"irreversible!"
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/vfolder.py#L77-L88 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/vfolder.py | rename | def rename(old_name, new_name):
'''Rename the given virtual folder. This operation is irreversible!
You cannot change the vfolders that are shared by other users,
and the new name must be unique among all your accessible vfolders
including the shared ones.
OLD_NAME: The current name of a virtual fo... | python | def rename(old_name, new_name):
'''Rename the given virtual folder. This operation is irreversible!
You cannot change the vfolders that are shared by other users,
and the new name must be unique among all your accessible vfolders
including the shared ones.
OLD_NAME: The current name of a virtual fo... | [
"def",
"rename",
"(",
"old_name",
",",
"new_name",
")",
":",
"with",
"Session",
"(",
")",
"as",
"session",
":",
"try",
":",
"session",
".",
"VFolder",
"(",
"old_name",
")",
".",
"rename",
"(",
"new_name",
")",
"print_done",
"(",
"'Renamed.'",
")",
"exc... | Rename the given virtual folder. This operation is irreversible!
You cannot change the vfolders that are shared by other users,
and the new name must be unique among all your accessible vfolders
including the shared ones.
OLD_NAME: The current name of a virtual folder.
NEW_NAME: The new name of a v... | [
"Rename",
"the",
"given",
"virtual",
"folder",
".",
"This",
"operation",
"is",
"irreversible!",
"You",
"cannot",
"change",
"the",
"vfolders",
"that",
"are",
"shared",
"by",
"other",
"users",
"and",
"the",
"new",
"name",
"must",
"be",
"unique",
"among",
"all"... | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/vfolder.py#L94-L109 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/vfolder.py | info | def info(name):
'''Show the information of the given virtual folder.
NAME: Name of a virtual folder.
'''
with Session() as session:
try:
result = session.VFolder(name).info()
print('Virtual folder "{0}" (ID: {1})'
.format(result['name'], result['id']))
... | python | def info(name):
'''Show the information of the given virtual folder.
NAME: Name of a virtual folder.
'''
with Session() as session:
try:
result = session.VFolder(name).info()
print('Virtual folder "{0}" (ID: {1})'
.format(result['name'], result['id']))
... | [
"def",
"info",
"(",
"name",
")",
":",
"with",
"Session",
"(",
")",
"as",
"session",
":",
"try",
":",
"result",
"=",
"session",
".",
"VFolder",
"(",
"name",
")",
".",
"info",
"(",
")",
"print",
"(",
"'Virtual folder \"{0}\" (ID: {1})'",
".",
"format",
"... | Show the information of the given virtual folder.
NAME: Name of a virtual folder. | [
"Show",
"the",
"information",
"of",
"the",
"given",
"virtual",
"folder",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/vfolder.py#L114-L129 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/vfolder.py | download | def download(name, filenames):
'''
Download a file from the virtual folder to the current working directory.
The files with the same names will be overwirtten.
\b
NAME: Name of a virtual folder.
FILENAMES: Paths of the files to be uploaded.
'''
with Session() as session:
try:
... | python | def download(name, filenames):
'''
Download a file from the virtual folder to the current working directory.
The files with the same names will be overwirtten.
\b
NAME: Name of a virtual folder.
FILENAMES: Paths of the files to be uploaded.
'''
with Session() as session:
try:
... | [
"def",
"download",
"(",
"name",
",",
"filenames",
")",
":",
"with",
"Session",
"(",
")",
"as",
"session",
":",
"try",
":",
"session",
".",
"VFolder",
"(",
"name",
")",
".",
"download",
"(",
"filenames",
",",
"show_progress",
"=",
"True",
")",
"print_do... | Download a file from the virtual folder to the current working directory.
The files with the same names will be overwirtten.
\b
NAME: Name of a virtual folder.
FILENAMES: Paths of the files to be uploaded. | [
"Download",
"a",
"file",
"from",
"the",
"virtual",
"folder",
"to",
"the",
"current",
"working",
"directory",
".",
"The",
"files",
"with",
"the",
"same",
"names",
"will",
"be",
"overwirtten",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/vfolder.py#L156-L171 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/vfolder.py | mkdir | def mkdir(name, path):
'''Create an empty directory in the virtual folder.
\b
NAME: Name of a virtual folder.
PATH: The name or path of directory. Parent directories are created automatically
if they do not exist.
'''
with Session() as session:
try:
session.VFolder... | python | def mkdir(name, path):
'''Create an empty directory in the virtual folder.
\b
NAME: Name of a virtual folder.
PATH: The name or path of directory. Parent directories are created automatically
if they do not exist.
'''
with Session() as session:
try:
session.VFolder... | [
"def",
"mkdir",
"(",
"name",
",",
"path",
")",
":",
"with",
"Session",
"(",
")",
"as",
"session",
":",
"try",
":",
"session",
".",
"VFolder",
"(",
"name",
")",
".",
"mkdir",
"(",
"path",
")",
"print_done",
"(",
"'Done.'",
")",
"except",
"Exception",
... | Create an empty directory in the virtual folder.
\b
NAME: Name of a virtual folder.
PATH: The name or path of directory. Parent directories are created automatically
if they do not exist. | [
"Create",
"an",
"empty",
"directory",
"in",
"the",
"virtual",
"folder",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/vfolder.py#L190-L204 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/vfolder.py | rm | def rm(name, filenames, recursive):
'''
Delete files in a virtual folder.
If one of the given paths is a directory and the recursive option is enabled,
all its content and the directory itself are recursively deleted.
This operation is irreversible!
\b
NAME: Name of a virtual folder.
F... | python | def rm(name, filenames, recursive):
'''
Delete files in a virtual folder.
If one of the given paths is a directory and the recursive option is enabled,
all its content and the directory itself are recursively deleted.
This operation is irreversible!
\b
NAME: Name of a virtual folder.
F... | [
"def",
"rm",
"(",
"name",
",",
"filenames",
",",
"recursive",
")",
":",
"with",
"Session",
"(",
")",
"as",
"session",
":",
"try",
":",
"if",
"input",
"(",
"\"> Are you sure? (y/n): \"",
")",
".",
"lower",
"(",
")",
".",
"strip",
"(",
")",
"[",
":",
... | Delete files in a virtual folder.
If one of the given paths is a directory and the recursive option is enabled,
all its content and the directory itself are recursively deleted.
This operation is irreversible!
\b
NAME: Name of a virtual folder.
FILENAMES: Paths of the files to delete. | [
"Delete",
"files",
"in",
"a",
"virtual",
"folder",
".",
"If",
"one",
"of",
"the",
"given",
"paths",
"is",
"a",
"directory",
"and",
"the",
"recursive",
"option",
"is",
"enabled",
"all",
"its",
"content",
"and",
"the",
"directory",
"itself",
"are",
"recursiv... | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/vfolder.py#L212-L233 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/vfolder.py | ls | def ls(name, path):
"""
List files in a path of a virtual folder.
\b
NAME: Name of a virtual folder.
PATH: Path inside vfolder.
"""
with Session() as session:
try:
print_wait('Retrieving list of files in "{}"...'.format(path))
result = session.VFolder(name).l... | python | def ls(name, path):
"""
List files in a path of a virtual folder.
\b
NAME: Name of a virtual folder.
PATH: Path inside vfolder.
"""
with Session() as session:
try:
print_wait('Retrieving list of files in "{}"...'.format(path))
result = session.VFolder(name).l... | [
"def",
"ls",
"(",
"name",
",",
"path",
")",
":",
"with",
"Session",
"(",
")",
"as",
"session",
":",
"try",
":",
"print_wait",
"(",
"'Retrieving list of files in \"{}\"...'",
".",
"format",
"(",
"path",
")",
")",
"result",
"=",
"session",
".",
"VFolder",
... | List files in a path of a virtual folder.
\b
NAME: Name of a virtual folder.
PATH: Path inside vfolder. | [
"List",
"files",
"in",
"a",
"path",
"of",
"a",
"virtual",
"folder",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/vfolder.py#L239-L265 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/vfolder.py | invite | def invite(name, emails, perm):
"""Invite other users to access the virtual folder.
\b
NAME: Name of a virtual folder.
EMAIL: Emails to invite.
"""
with Session() as session:
try:
assert perm in ['rw', 'ro'], \
'Invalid permission: {}'.format(perm)
... | python | def invite(name, emails, perm):
"""Invite other users to access the virtual folder.
\b
NAME: Name of a virtual folder.
EMAIL: Emails to invite.
"""
with Session() as session:
try:
assert perm in ['rw', 'ro'], \
'Invalid permission: {}'.format(perm)
... | [
"def",
"invite",
"(",
"name",
",",
"emails",
",",
"perm",
")",
":",
"with",
"Session",
"(",
")",
"as",
"session",
":",
"try",
":",
"assert",
"perm",
"in",
"[",
"'rw'",
",",
"'ro'",
"]",
",",
"'Invalid permission: {}'",
".",
"format",
"(",
"perm",
")"... | Invite other users to access the virtual folder.
\b
NAME: Name of a virtual folder.
EMAIL: Emails to invite. | [
"Invite",
"other",
"users",
"to",
"access",
"the",
"virtual",
"folder",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/vfolder.py#L273-L294 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/vfolder.py | invitations | def invitations():
"""List and manage received invitations.
"""
with Session() as session:
try:
result = session.VFolder.invitations()
invitations = result.get('invitations', [])
if len(invitations) < 1:
print('No invitations.')
ret... | python | def invitations():
"""List and manage received invitations.
"""
with Session() as session:
try:
result = session.VFolder.invitations()
invitations = result.get('invitations', [])
if len(invitations) < 1:
print('No invitations.')
ret... | [
"def",
"invitations",
"(",
")",
":",
"with",
"Session",
"(",
")",
"as",
"session",
":",
"try",
":",
"result",
"=",
"session",
".",
"VFolder",
".",
"invitations",
"(",
")",
"invitations",
"=",
"result",
".",
"get",
"(",
"'invitations'",
",",
"[",
"]",
... | List and manage received invitations. | [
"List",
"and",
"manage",
"received",
"invitations",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/vfolder.py#L298-L344 | train |
mozilla-services/python-dockerflow | src/dockerflow/flask/app.py | Dockerflow.init_check | def init_check(self, check, obj):
"""
Adds a given check callback with the provided object to the list
of checks. Useful for built-ins but also advanced custom checks.
"""
self.logger.info('Adding extension check %s' % check.__name__)
check = functools.wraps(check)(functo... | python | def init_check(self, check, obj):
"""
Adds a given check callback with the provided object to the list
of checks. Useful for built-ins but also advanced custom checks.
"""
self.logger.info('Adding extension check %s' % check.__name__)
check = functools.wraps(check)(functo... | [
"def",
"init_check",
"(",
"self",
",",
"check",
",",
"obj",
")",
":",
"self",
".",
"logger",
".",
"info",
"(",
"'Adding extension check %s'",
"%",
"check",
".",
"__name__",
")",
"check",
"=",
"functools",
".",
"wraps",
"(",
"check",
")",
"(",
"functools"... | Adds a given check callback with the provided object to the list
of checks. Useful for built-ins but also advanced custom checks. | [
"Adds",
"a",
"given",
"check",
"callback",
"with",
"the",
"provided",
"object",
"to",
"the",
"list",
"of",
"checks",
".",
"Useful",
"for",
"built",
"-",
"ins",
"but",
"also",
"advanced",
"custom",
"checks",
"."
] | 43703c5e8934ba6901b0a1520d6da4ed6457208c | https://github.com/mozilla-services/python-dockerflow/blob/43703c5e8934ba6901b0a1520d6da4ed6457208c/src/dockerflow/flask/app.py#L135-L142 | train |
mozilla-services/python-dockerflow | src/dockerflow/flask/app.py | Dockerflow.init_app | def init_app(self, app):
"""
Initializes the extension with the given app, registers the
built-in views with an own blueprint and hooks up our signal
callbacks.
"""
# If no version path was provided in the init of the Dockerflow
# class we'll use the parent direct... | python | def init_app(self, app):
"""
Initializes the extension with the given app, registers the
built-in views with an own blueprint and hooks up our signal
callbacks.
"""
# If no version path was provided in the init of the Dockerflow
# class we'll use the parent direct... | [
"def",
"init_app",
"(",
"self",
",",
"app",
")",
":",
"# If no version path was provided in the init of the Dockerflow",
"# class we'll use the parent directory of the app root path.",
"if",
"self",
".",
"version_path",
"is",
"None",
":",
"self",
".",
"version_path",
"=",
"... | Initializes the extension with the given app, registers the
built-in views with an own blueprint and hooks up our signal
callbacks. | [
"Initializes",
"the",
"extension",
"with",
"the",
"given",
"app",
"registers",
"the",
"built",
"-",
"in",
"views",
"with",
"an",
"own",
"blueprint",
"and",
"hooks",
"up",
"our",
"signal",
"callbacks",
"."
] | 43703c5e8934ba6901b0a1520d6da4ed6457208c | https://github.com/mozilla-services/python-dockerflow/blob/43703c5e8934ba6901b0a1520d6da4ed6457208c/src/dockerflow/flask/app.py#L144-L169 | train |
mozilla-services/python-dockerflow | src/dockerflow/flask/app.py | Dockerflow._before_request | def _before_request(self):
"""
The before_request callback.
"""
g._request_id = str(uuid.uuid4())
g._start_timestamp = time.time() | python | def _before_request(self):
"""
The before_request callback.
"""
g._request_id = str(uuid.uuid4())
g._start_timestamp = time.time() | [
"def",
"_before_request",
"(",
"self",
")",
":",
"g",
".",
"_request_id",
"=",
"str",
"(",
"uuid",
".",
"uuid4",
"(",
")",
")",
"g",
".",
"_start_timestamp",
"=",
"time",
".",
"time",
"(",
")"
] | The before_request callback. | [
"The",
"before_request",
"callback",
"."
] | 43703c5e8934ba6901b0a1520d6da4ed6457208c | https://github.com/mozilla-services/python-dockerflow/blob/43703c5e8934ba6901b0a1520d6da4ed6457208c/src/dockerflow/flask/app.py#L178-L183 | train |
mozilla-services/python-dockerflow | src/dockerflow/flask/app.py | Dockerflow._after_request | def _after_request(self, response):
"""
The signal handler for the request_finished signal.
"""
if not getattr(g, '_has_exception', False):
extra = self.summary_extra()
self.summary_logger.info('', extra=extra)
return response | python | def _after_request(self, response):
"""
The signal handler for the request_finished signal.
"""
if not getattr(g, '_has_exception', False):
extra = self.summary_extra()
self.summary_logger.info('', extra=extra)
return response | [
"def",
"_after_request",
"(",
"self",
",",
"response",
")",
":",
"if",
"not",
"getattr",
"(",
"g",
",",
"'_has_exception'",
",",
"False",
")",
":",
"extra",
"=",
"self",
".",
"summary_extra",
"(",
")",
"self",
".",
"summary_logger",
".",
"info",
"(",
"... | The signal handler for the request_finished signal. | [
"The",
"signal",
"handler",
"for",
"the",
"request_finished",
"signal",
"."
] | 43703c5e8934ba6901b0a1520d6da4ed6457208c | https://github.com/mozilla-services/python-dockerflow/blob/43703c5e8934ba6901b0a1520d6da4ed6457208c/src/dockerflow/flask/app.py#L185-L192 | train |
mozilla-services/python-dockerflow | src/dockerflow/flask/app.py | Dockerflow._got_request_exception | def _got_request_exception(self, sender, exception, **extra):
"""
The signal handler for the got_request_exception signal.
"""
extra = self.summary_extra()
extra['errno'] = 500
self.summary_logger.error(str(exception), extra=extra)
g._has_exception = True | python | def _got_request_exception(self, sender, exception, **extra):
"""
The signal handler for the got_request_exception signal.
"""
extra = self.summary_extra()
extra['errno'] = 500
self.summary_logger.error(str(exception), extra=extra)
g._has_exception = True | [
"def",
"_got_request_exception",
"(",
"self",
",",
"sender",
",",
"exception",
",",
"*",
"*",
"extra",
")",
":",
"extra",
"=",
"self",
".",
"summary_extra",
"(",
")",
"extra",
"[",
"'errno'",
"]",
"=",
"500",
"self",
".",
"summary_logger",
".",
"error",
... | The signal handler for the got_request_exception signal. | [
"The",
"signal",
"handler",
"for",
"the",
"got_request_exception",
"signal",
"."
] | 43703c5e8934ba6901b0a1520d6da4ed6457208c | https://github.com/mozilla-services/python-dockerflow/blob/43703c5e8934ba6901b0a1520d6da4ed6457208c/src/dockerflow/flask/app.py#L194-L201 | train |
mozilla-services/python-dockerflow | src/dockerflow/flask/app.py | Dockerflow.user_id | def user_id(self):
"""
Return the ID of the current request's user
"""
# This needs flask-login to be installed
if not has_flask_login:
return
# and the actual login manager installed
if not hasattr(current_app, 'login_manager'):
return
... | python | def user_id(self):
"""
Return the ID of the current request's user
"""
# This needs flask-login to be installed
if not has_flask_login:
return
# and the actual login manager installed
if not hasattr(current_app, 'login_manager'):
return
... | [
"def",
"user_id",
"(",
"self",
")",
":",
"# This needs flask-login to be installed",
"if",
"not",
"has_flask_login",
":",
"return",
"# and the actual login manager installed",
"if",
"not",
"hasattr",
"(",
"current_app",
",",
"'login_manager'",
")",
":",
"return",
"# fai... | Return the ID of the current request's user | [
"Return",
"the",
"ID",
"of",
"the",
"current",
"request",
"s",
"user"
] | 43703c5e8934ba6901b0a1520d6da4ed6457208c | https://github.com/mozilla-services/python-dockerflow/blob/43703c5e8934ba6901b0a1520d6da4ed6457208c/src/dockerflow/flask/app.py#L203-L230 | train |
mozilla-services/python-dockerflow | src/dockerflow/flask/app.py | Dockerflow.summary_extra | def summary_extra(self):
"""
Build the extra data for the summary logger.
"""
out = {
'errno': 0,
'agent': request.headers.get('User-Agent', ''),
'lang': request.headers.get('Accept-Language', ''),
'method': request.method,
'pat... | python | def summary_extra(self):
"""
Build the extra data for the summary logger.
"""
out = {
'errno': 0,
'agent': request.headers.get('User-Agent', ''),
'lang': request.headers.get('Accept-Language', ''),
'method': request.method,
'pat... | [
"def",
"summary_extra",
"(",
"self",
")",
":",
"out",
"=",
"{",
"'errno'",
":",
"0",
",",
"'agent'",
":",
"request",
".",
"headers",
".",
"get",
"(",
"'User-Agent'",
",",
"''",
")",
",",
"'lang'",
":",
"request",
".",
"headers",
".",
"get",
"(",
"'... | Build the extra data for the summary logger. | [
"Build",
"the",
"extra",
"data",
"for",
"the",
"summary",
"logger",
"."
] | 43703c5e8934ba6901b0a1520d6da4ed6457208c | https://github.com/mozilla-services/python-dockerflow/blob/43703c5e8934ba6901b0a1520d6da4ed6457208c/src/dockerflow/flask/app.py#L232-L261 | train |
mozilla-services/python-dockerflow | src/dockerflow/flask/app.py | Dockerflow._version_view | def _version_view(self):
"""
View that returns the contents of version.json or a 404.
"""
version_json = self._version_callback(self.version_path)
if version_json is None:
return 'version.json not found', 404
else:
return jsonify(version_json) | python | def _version_view(self):
"""
View that returns the contents of version.json or a 404.
"""
version_json = self._version_callback(self.version_path)
if version_json is None:
return 'version.json not found', 404
else:
return jsonify(version_json) | [
"def",
"_version_view",
"(",
"self",
")",
":",
"version_json",
"=",
"self",
".",
"_version_callback",
"(",
"self",
".",
"version_path",
")",
"if",
"version_json",
"is",
"None",
":",
"return",
"'version.json not found'",
",",
"404",
"else",
":",
"return",
"json... | View that returns the contents of version.json or a 404. | [
"View",
"that",
"returns",
"the",
"contents",
"of",
"version",
".",
"json",
"or",
"a",
"404",
"."
] | 43703c5e8934ba6901b0a1520d6da4ed6457208c | https://github.com/mozilla-services/python-dockerflow/blob/43703c5e8934ba6901b0a1520d6da4ed6457208c/src/dockerflow/flask/app.py#L263-L271 | train |
mozilla-services/python-dockerflow | src/dockerflow/flask/app.py | Dockerflow._heartbeat_view | def _heartbeat_view(self):
"""
Runs all the registered checks and returns a JSON response with either
a status code of 200 or 500 depending on the results of the checks.
Any check that returns a warning or worse (error, critical) will
return a 500 response.
"""
d... | python | def _heartbeat_view(self):
"""
Runs all the registered checks and returns a JSON response with either
a status code of 200 or 500 depending on the results of the checks.
Any check that returns a warning or worse (error, critical) will
return a 500 response.
"""
d... | [
"def",
"_heartbeat_view",
"(",
"self",
")",
":",
"details",
"=",
"{",
"}",
"statuses",
"=",
"{",
"}",
"level",
"=",
"0",
"for",
"name",
",",
"check",
"in",
"self",
".",
"checks",
".",
"items",
"(",
")",
":",
"detail",
"=",
"self",
".",
"_heartbeat_... | Runs all the registered checks and returns a JSON response with either
a status code of 200 or 500 depending on the results of the checks.
Any check that returns a warning or worse (error, critical) will
return a 500 response. | [
"Runs",
"all",
"the",
"registered",
"checks",
"and",
"returns",
"a",
"JSON",
"response",
"with",
"either",
"a",
"status",
"code",
"of",
"200",
"or",
"500",
"depending",
"on",
"the",
"results",
"of",
"the",
"checks",
"."
] | 43703c5e8934ba6901b0a1520d6da4ed6457208c | https://github.com/mozilla-services/python-dockerflow/blob/43703c5e8934ba6901b0a1520d6da4ed6457208c/src/dockerflow/flask/app.py#L291-L326 | train |
mozilla-services/python-dockerflow | src/dockerflow/flask/app.py | Dockerflow.check | def check(self, func=None, name=None):
"""
A decorator to register a new Dockerflow check to be run
when the /__heartbeat__ endpoint is called., e.g.::
from dockerflow.flask import checks
@dockerflow.check
def storage_reachable():
try:
... | python | def check(self, func=None, name=None):
"""
A decorator to register a new Dockerflow check to be run
when the /__heartbeat__ endpoint is called., e.g.::
from dockerflow.flask import checks
@dockerflow.check
def storage_reachable():
try:
... | [
"def",
"check",
"(",
"self",
",",
"func",
"=",
"None",
",",
"name",
"=",
"None",
")",
":",
"if",
"func",
"is",
"None",
":",
"return",
"functools",
".",
"partial",
"(",
"self",
".",
"check",
",",
"name",
"=",
"name",
")",
"if",
"name",
"is",
"None... | A decorator to register a new Dockerflow check to be run
when the /__heartbeat__ endpoint is called., e.g.::
from dockerflow.flask import checks
@dockerflow.check
def storage_reachable():
try:
acme.storage.ping()
except Sl... | [
"A",
"decorator",
"to",
"register",
"a",
"new",
"Dockerflow",
"check",
"to",
"be",
"run",
"when",
"the",
"/",
"__heartbeat__",
"endpoint",
"is",
"called",
".",
"e",
".",
"g",
".",
"::"
] | 43703c5e8934ba6901b0a1520d6da4ed6457208c | https://github.com/mozilla-services/python-dockerflow/blob/43703c5e8934ba6901b0a1520d6da4ed6457208c/src/dockerflow/flask/app.py#L354-L391 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/run.py | drange | def drange(start: Decimal, stop: Decimal, num: int):
'''
A simplified version of numpy.linspace with default options
'''
delta = stop - start
step = delta / (num - 1)
yield from (start + step * Decimal(tick) for tick in range(0, num)) | python | def drange(start: Decimal, stop: Decimal, num: int):
'''
A simplified version of numpy.linspace with default options
'''
delta = stop - start
step = delta / (num - 1)
yield from (start + step * Decimal(tick) for tick in range(0, num)) | [
"def",
"drange",
"(",
"start",
":",
"Decimal",
",",
"stop",
":",
"Decimal",
",",
"num",
":",
"int",
")",
":",
"delta",
"=",
"stop",
"-",
"start",
"step",
"=",
"delta",
"/",
"(",
"num",
"-",
"1",
")",
"yield",
"from",
"(",
"start",
"+",
"step",
... | A simplified version of numpy.linspace with default options | [
"A",
"simplified",
"version",
"of",
"numpy",
".",
"linspace",
"with",
"default",
"options"
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/run.py#L32-L38 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/run.py | range_expr | def range_expr(arg):
'''
Accepts a range expression which generates a range of values for a variable.
Linear space range: "linspace:1,2,10" (start, stop, num) as in numpy.linspace
Pythonic range: "range:1,10,2" (start, stop[, step]) as in Python's range
Case range: "case:a,b,c" (comma-separated str... | python | def range_expr(arg):
'''
Accepts a range expression which generates a range of values for a variable.
Linear space range: "linspace:1,2,10" (start, stop, num) as in numpy.linspace
Pythonic range: "range:1,10,2" (start, stop[, step]) as in Python's range
Case range: "case:a,b,c" (comma-separated str... | [
"def",
"range_expr",
"(",
"arg",
")",
":",
"key",
",",
"value",
"=",
"arg",
".",
"split",
"(",
"'='",
",",
"maxsplit",
"=",
"1",
")",
"assert",
"_rx_range_key",
".",
"match",
"(",
"key",
")",
",",
"'The key must be a valid slug string.'",
"try",
":",
"if... | Accepts a range expression which generates a range of values for a variable.
Linear space range: "linspace:1,2,10" (start, stop, num) as in numpy.linspace
Pythonic range: "range:1,10,2" (start, stop[, step]) as in Python's range
Case range: "case:a,b,c" (comma-separated strings) | [
"Accepts",
"a",
"range",
"expression",
"which",
"generates",
"a",
"range",
"of",
"values",
"for",
"a",
"variable",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/run.py#L41-L63 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/run.py | exec_loop | async def exec_loop(stdout, stderr, kernel, mode, code, *, opts=None,
vprint_done=print_done, is_multi=False):
'''
Fully streamed asynchronous version of the execute loop.
'''
async with kernel.stream_execute(code, mode=mode, opts=opts) as stream:
async for result in stream:
... | python | async def exec_loop(stdout, stderr, kernel, mode, code, *, opts=None,
vprint_done=print_done, is_multi=False):
'''
Fully streamed asynchronous version of the execute loop.
'''
async with kernel.stream_execute(code, mode=mode, opts=opts) as stream:
async for result in stream:
... | [
"async",
"def",
"exec_loop",
"(",
"stdout",
",",
"stderr",
",",
"kernel",
",",
"mode",
",",
"code",
",",
"*",
",",
"opts",
"=",
"None",
",",
"vprint_done",
"=",
"print_done",
",",
"is_multi",
"=",
"False",
")",
":",
"async",
"with",
"kernel",
".",
"s... | Fully streamed asynchronous version of the execute loop. | [
"Fully",
"streamed",
"asynchronous",
"version",
"of",
"the",
"execute",
"loop",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/run.py#L66-L121 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/run.py | exec_loop_sync | def exec_loop_sync(stdout, stderr, kernel, mode, code, *, opts=None,
vprint_done=print_done):
'''
Old synchronous polling version of the execute loop.
'''
opts = opts if opts else {}
run_id = None # use server-assigned run ID
while True:
result = kernel.execute(run_id... | python | def exec_loop_sync(stdout, stderr, kernel, mode, code, *, opts=None,
vprint_done=print_done):
'''
Old synchronous polling version of the execute loop.
'''
opts = opts if opts else {}
run_id = None # use server-assigned run ID
while True:
result = kernel.execute(run_id... | [
"def",
"exec_loop_sync",
"(",
"stdout",
",",
"stderr",
",",
"kernel",
",",
"mode",
",",
"code",
",",
"*",
",",
"opts",
"=",
"None",
",",
"vprint_done",
"=",
"print_done",
")",
":",
"opts",
"=",
"opts",
"if",
"opts",
"else",
"{",
"}",
"run_id",
"=",
... | Old synchronous polling version of the execute loop. | [
"Old",
"synchronous",
"polling",
"version",
"of",
"the",
"execute",
"loop",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/run.py#L124-L177 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/run.py | run | def run(lang, files, session_id, cluster_size, code, clean, build, exec, terminal,
basedir, rm, env, env_range, build_range, exec_range, max_parallel, mount,
stats, tag, resources, quiet):
'''
Run the given code snippet or files in a session.
Depending on the session ID you give (default is ... | python | def run(lang, files, session_id, cluster_size, code, clean, build, exec, terminal,
basedir, rm, env, env_range, build_range, exec_range, max_parallel, mount,
stats, tag, resources, quiet):
'''
Run the given code snippet or files in a session.
Depending on the session ID you give (default is ... | [
"def",
"run",
"(",
"lang",
",",
"files",
",",
"session_id",
",",
"cluster_size",
",",
"code",
",",
"clean",
",",
"build",
",",
"exec",
",",
"terminal",
",",
"basedir",
",",
"rm",
",",
"env",
",",
"env_range",
",",
"build_range",
",",
"exec_range",
",",... | Run the given code snippet or files in a session.
Depending on the session ID you give (default is random),
it may reuse an existing session or create a new one.
\b
LANG: The name (and version/platform tags appended after a colon) of session
runtime or programming language.')
FILES: The c... | [
"Run",
"the",
"given",
"code",
"snippet",
"or",
"files",
"in",
"a",
"session",
".",
"Depending",
"on",
"the",
"session",
"ID",
"you",
"give",
"(",
"default",
"is",
"random",
")",
"it",
"may",
"reuse",
"an",
"existing",
"session",
"or",
"create",
"a",
"... | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/run.py#L273-L584 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/run.py | start | def start(lang, session_id, owner, env, mount, tag, resources, cluster_size):
'''
Prepare and start a single compute session without executing codes.
You may use the created session to execute codes using the "run" command
or connect to an application service provided by the session using the "app"
... | python | def start(lang, session_id, owner, env, mount, tag, resources, cluster_size):
'''
Prepare and start a single compute session without executing codes.
You may use the created session to execute codes using the "run" command
or connect to an application service provided by the session using the "app"
... | [
"def",
"start",
"(",
"lang",
",",
"session_id",
",",
"owner",
",",
"env",
",",
"mount",
",",
"tag",
",",
"resources",
",",
"cluster_size",
")",
":",
"if",
"session_id",
"is",
"None",
":",
"session_id",
"=",
"token_hex",
"(",
"5",
")",
"else",
":",
"s... | Prepare and start a single compute session without executing codes.
You may use the created session to execute codes using the "run" command
or connect to an application service provided by the session using the "app"
command.
\b
LANG: The name (and version/platform tags appended after a colon) of... | [
"Prepare",
"and",
"start",
"a",
"single",
"compute",
"session",
"without",
"executing",
"codes",
".",
"You",
"may",
"use",
"the",
"created",
"session",
"to",
"execute",
"codes",
"using",
"the",
"run",
"command",
"or",
"connect",
"to",
"an",
"application",
"s... | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/run.py#L607-L652 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/run.py | terminate | def terminate(sess_id_or_alias, owner, stats):
'''
Terminate the given session.
SESSID: session ID or its alias given when creating the session.
'''
print_wait('Terminating the session(s)...')
with Session() as session:
has_failure = False
for sess in sess_id_or_alias:
... | python | def terminate(sess_id_or_alias, owner, stats):
'''
Terminate the given session.
SESSID: session ID or its alias given when creating the session.
'''
print_wait('Terminating the session(s)...')
with Session() as session:
has_failure = False
for sess in sess_id_or_alias:
... | [
"def",
"terminate",
"(",
"sess_id_or_alias",
",",
"owner",
",",
"stats",
")",
":",
"print_wait",
"(",
"'Terminating the session(s)...'",
")",
"with",
"Session",
"(",
")",
"as",
"session",
":",
"has_failure",
"=",
"False",
"for",
"sess",
"in",
"sess_id_or_alias",... | Terminate the given session.
SESSID: session ID or its alias given when creating the session. | [
"Terminate",
"the",
"given",
"session",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/run.py#L661-L693 | train |
HPENetworking/PYHPEIMC | build/lib/pyhpeimc/plat/groups.py | get_custom_view_details | def get_custom_view_details(name, auth, url):
"""
function requires no input and returns a list of dictionaries of custom views from an HPE IMC. Optional name
argument will return only the specified view.
:param name: str containing the name of the desired custom view
:param auth: requests auth obj... | python | def get_custom_view_details(name, auth, url):
"""
function requires no input and returns a list of dictionaries of custom views from an HPE IMC. Optional name
argument will return only the specified view.
:param name: str containing the name of the desired custom view
:param auth: requests auth obj... | [
"def",
"get_custom_view_details",
"(",
"name",
",",
"auth",
",",
"url",
")",
":",
"view_id",
"=",
"get_custom_views",
"(",
"auth",
",",
"url",
",",
"name",
"=",
"name",
")",
"[",
"0",
"]",
"[",
"'symbolId'",
"]",
"get_custom_view_details_url",
"=",
"'/imcr... | function requires no input and returns a list of dictionaries of custom views from an HPE IMC. Optional name
argument will return only the specified view.
:param name: str containing the name of the desired custom view
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
... | [
"function",
"requires",
"no",
"input",
"and",
"returns",
"a",
"list",
"of",
"dictionaries",
"of",
"custom",
"views",
"from",
"an",
"HPE",
"IMC",
".",
"Optional",
"name",
"argument",
"will",
"return",
"only",
"the",
"specified",
"view",
".",
":",
"param",
"... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/build/lib/pyhpeimc/plat/groups.py#L72-L114 | train |
HPENetworking/PYHPEIMC | build/lib/pyhpeimc/plat/groups.py | add_devs_custom_views | def add_devs_custom_views(custom_view_name, dev_list, auth, url):
"""
function takes a list of devIDs from devices discovered in the HPE IMC platform and and issues a RESTFUL call to
add the list of devices to a specific custom views from HPE IMC.
:param dev_list: list containing the devID of all devi... | python | def add_devs_custom_views(custom_view_name, dev_list, auth, url):
"""
function takes a list of devIDs from devices discovered in the HPE IMC platform and and issues a RESTFUL call to
add the list of devices to a specific custom views from HPE IMC.
:param dev_list: list containing the devID of all devi... | [
"def",
"add_devs_custom_views",
"(",
"custom_view_name",
",",
"dev_list",
",",
"auth",
",",
"url",
")",
":",
"view_id",
"=",
"get_custom_views",
"(",
"auth",
",",
"url",
",",
"name",
"=",
"custom_view_name",
")",
"[",
"0",
"]",
"[",
"'symbolId'",
"]",
"add... | function takes a list of devIDs from devices discovered in the HPE IMC platform and and issues a RESTFUL call to
add the list of devices to a specific custom views from HPE IMC.
:param dev_list: list containing the devID of all devices to be contained in this custom view.
:param auth: requests auth objec... | [
"function",
"takes",
"a",
"list",
"of",
"devIDs",
"from",
"devices",
"discovered",
"in",
"the",
"HPE",
"IMC",
"platform",
"and",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"add",
"the",
"list",
"of",
"devices",
"to",
"a",
"specific",
"custom",
"views",... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/build/lib/pyhpeimc/plat/groups.py#L181-L213 | train |
HPENetworking/PYHPEIMC | build/lib/pyhpeimc/plat/groups.py | delete_custom_view | def delete_custom_view(auth, url, name):
"""
function takes input of auth, url, and name and issues a RESTFUL call to delete a specific of custom views from HPE
IMC.
:param name: string containg the name of the desired custom view
:param auth: requests auth object #usually auth.creds from auth pyhp... | python | def delete_custom_view(auth, url, name):
"""
function takes input of auth, url, and name and issues a RESTFUL call to delete a specific of custom views from HPE
IMC.
:param name: string containg the name of the desired custom view
:param auth: requests auth object #usually auth.creds from auth pyhp... | [
"def",
"delete_custom_view",
"(",
"auth",
",",
"url",
",",
"name",
")",
":",
"view_id",
"=",
"get_custom_views",
"(",
"auth",
",",
"url",
",",
"name",
")",
"[",
"0",
"]",
"[",
"'symbolId'",
"]",
"delete_custom_view_url",
"=",
"'/imcrs/plat/res/view/custom/'",
... | function takes input of auth, url, and name and issues a RESTFUL call to delete a specific of custom views from HPE
IMC.
:param name: string containg the name of the desired custom view
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
:param url: base url of IMC RS i... | [
"function",
"takes",
"input",
"of",
"auth",
"url",
"and",
"name",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"delete",
"a",
"specific",
"of",
"custom",
"views",
"from",
"HPE",
"IMC",
".",
":",
"param",
"name",
":",
"string",
"containg",
"the",
"name"... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/build/lib/pyhpeimc/plat/groups.py#L217-L260 | train |
Tygs/ww | src/ww/tools/strings.py | multisplit | def multisplit(string, # type: unicode
*separators, # type: unicode
**kwargs # type: Union[unicode, C[..., I[unicode]]]
): # type: (...) -> I
""" Like unicode.split, but accept several separators and regexes
Args:
string: the string to split.
... | python | def multisplit(string, # type: unicode
*separators, # type: unicode
**kwargs # type: Union[unicode, C[..., I[unicode]]]
): # type: (...) -> I
""" Like unicode.split, but accept several separators and regexes
Args:
string: the string to split.
... | [
"def",
"multisplit",
"(",
"string",
",",
"# type: unicode",
"*",
"separators",
",",
"# type: unicode",
"*",
"*",
"kwargs",
"# type: Union[unicode, C[..., I[unicode]]]",
")",
":",
"# type: (...) -> I",
"cast",
"=",
"kwargs",
".",
"pop",
"(",
"'cast'",
",",
"list",
... | Like unicode.split, but accept several separators and regexes
Args:
string: the string to split.
separators: strings you can split on. Each string can be a
regex.
maxsplit: max number of time you wish to split. default is 0,
whic... | [
"Like",
"unicode",
".",
"split",
"but",
"accept",
"several",
"separators",
"and",
"regexes"
] | 6a4b85141c9b74026abe8f3fa9bc7021f3c99fd4 | https://github.com/Tygs/ww/blob/6a4b85141c9b74026abe8f3fa9bc7021f3c99fd4/src/ww/tools/strings.py#L77-L163 | train |
Tygs/ww | src/ww/tools/strings.py | multireplace | def multireplace(string, # type: unicode
patterns, # type: str_or_str_iterable
substitutions, # type: str_istr_icallable
maxreplace=0, # type: int
flags=0 # type: unicode
): # type: (...) -> bool
""" Like unicode.replace() bu... | python | def multireplace(string, # type: unicode
patterns, # type: str_or_str_iterable
substitutions, # type: str_istr_icallable
maxreplace=0, # type: int
flags=0 # type: unicode
): # type: (...) -> bool
""" Like unicode.replace() bu... | [
"def",
"multireplace",
"(",
"string",
",",
"# type: unicode",
"patterns",
",",
"# type: str_or_str_iterable",
"substitutions",
",",
"# type: str_istr_icallable",
"maxreplace",
"=",
"0",
",",
"# type: int",
"flags",
"=",
"0",
"# type: unicode",
")",
":",
"# type: (...) -... | Like unicode.replace() but accept several substitutions and regexes
Args:
string: the string to split on.
patterns: a string, or an iterable of strings to be replaced.
substitutions: a string or an iterable of string to use as a
replacement. You ca... | [
"Like",
"unicode",
".",
"replace",
"()",
"but",
"accept",
"several",
"substitutions",
"and",
"regexes"
] | 6a4b85141c9b74026abe8f3fa9bc7021f3c99fd4 | https://github.com/Tygs/ww/blob/6a4b85141c9b74026abe8f3fa9bc7021f3c99fd4/src/ww/tools/strings.py#L214-L300 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/manager.py | status | def status():
'''Show the manager's current status.'''
with Session() as session:
resp = session.Manager.status()
print(tabulate([('Status', 'Active Sessions'),
(resp['status'], resp['active_sessions'])],
headers='firstrow')) | python | def status():
'''Show the manager's current status.'''
with Session() as session:
resp = session.Manager.status()
print(tabulate([('Status', 'Active Sessions'),
(resp['status'], resp['active_sessions'])],
headers='firstrow')) | [
"def",
"status",
"(",
")",
":",
"with",
"Session",
"(",
")",
"as",
"session",
":",
"resp",
"=",
"session",
".",
"Manager",
".",
"status",
"(",
")",
"print",
"(",
"tabulate",
"(",
"[",
"(",
"'Status'",
",",
"'Active Sessions'",
")",
",",
"(",
"resp",
... | Show the manager's current status. | [
"Show",
"the",
"manager",
"s",
"current",
"status",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/manager.py#L19-L25 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/manager.py | freeze | def freeze(wait, force_kill):
'''Freeze manager.'''
if wait and force_kill:
print('You cannot use both --wait and --force-kill options '
'at the same time.', file=sys.stderr)
return
with Session() as session:
if wait:
while True:
resp = sess... | python | def freeze(wait, force_kill):
'''Freeze manager.'''
if wait and force_kill:
print('You cannot use both --wait and --force-kill options '
'at the same time.', file=sys.stderr)
return
with Session() as session:
if wait:
while True:
resp = sess... | [
"def",
"freeze",
"(",
"wait",
",",
"force_kill",
")",
":",
"if",
"wait",
"and",
"force_kill",
":",
"print",
"(",
"'You cannot use both --wait and --force-kill options '",
"'at the same time.'",
",",
"file",
"=",
"sys",
".",
"stderr",
")",
"return",
"with",
"Sessio... | Freeze manager. | [
"Freeze",
"manager",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/manager.py#L34-L61 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/vlanm.py | get_dev_vlans | def get_dev_vlans(auth, url, devid=None, devip=None):
"""Function takes input of devID to issue RESTUL call to HP IMC
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
:param url: base url of IMC RS interface #usually auth.url from pyhpeimc.auth.authclass
:param devi... | python | def get_dev_vlans(auth, url, devid=None, devip=None):
"""Function takes input of devID to issue RESTUL call to HP IMC
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
:param url: base url of IMC RS interface #usually auth.url from pyhpeimc.auth.authclass
:param devi... | [
"def",
"get_dev_vlans",
"(",
"auth",
",",
"url",
",",
"devid",
"=",
"None",
",",
"devip",
"=",
"None",
")",
":",
"if",
"devip",
"is",
"not",
"None",
":",
"devid",
"=",
"get_dev_details",
"(",
"devip",
",",
"auth",
",",
"url",
")",
"[",
"'id'",
"]",... | Function takes input of devID to issue RESTUL call to HP IMC
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
:param url: base url of IMC RS interface #usually auth.url from pyhpeimc.auth.authclass
:param devid: str requires devId as the only input parameter
:param... | [
"Function",
"takes",
"input",
"of",
"devID",
"to",
"issue",
"RESTUL",
"call",
"to",
"HP",
"IMC"
] | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/vlanm.py#L23-L64 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/vlanm.py | get_trunk_interfaces | def get_trunk_interfaces(auth, url, devid=None, devip=None):
"""Function takes devId as input to RESTFULL call to HP IMC platform
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
:param url: base url of IMC RS interface #usually auth.url from pyhpeimc.auth.authclass
... | python | def get_trunk_interfaces(auth, url, devid=None, devip=None):
"""Function takes devId as input to RESTFULL call to HP IMC platform
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
:param url: base url of IMC RS interface #usually auth.url from pyhpeimc.auth.authclass
... | [
"def",
"get_trunk_interfaces",
"(",
"auth",
",",
"url",
",",
"devid",
"=",
"None",
",",
"devip",
"=",
"None",
")",
":",
"if",
"devip",
"is",
"not",
"None",
":",
"devid",
"=",
"get_dev_details",
"(",
"devip",
",",
"auth",
",",
"url",
")",
"[",
"'id'",... | Function takes devId as input to RESTFULL call to HP IMC platform
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
:param url: base url of IMC RS interface #usually auth.url from pyhpeimc.auth.authclass
:param devid: str requires devid of the target device
:param d... | [
"Function",
"takes",
"devId",
"as",
"input",
"to",
"RESTFULL",
"call",
"to",
"HP",
"IMC",
"platform"
] | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/vlanm.py#L67-L123 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/vlanm.py | get_device_access_interfaces | def get_device_access_interfaces(auth, url, devid=None, devip=None):
"""
Function takes devid pr devip as input to RESTFUL call to HP IMC platform
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
:param url: base url of IMC RS interface #usually auth.url from pyhpeim... | python | def get_device_access_interfaces(auth, url, devid=None, devip=None):
"""
Function takes devid pr devip as input to RESTFUL call to HP IMC platform
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
:param url: base url of IMC RS interface #usually auth.url from pyhpeim... | [
"def",
"get_device_access_interfaces",
"(",
"auth",
",",
"url",
",",
"devid",
"=",
"None",
",",
"devip",
"=",
"None",
")",
":",
"if",
"devip",
"is",
"not",
"None",
":",
"devid",
"=",
"get_dev_details",
"(",
"devip",
",",
"auth",
",",
"url",
")",
"[",
... | Function takes devid pr devip as input to RESTFUL call to HP IMC platform
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
:param url: base url of IMC RS interface #usually auth.url from pyhpeimc.auth.authclass
:param devid: str requires devid of the target device
... | [
"Function",
"takes",
"devid",
"pr",
"devip",
"as",
"input",
"to",
"RESTFUL",
"call",
"to",
"HP",
"IMC",
"platform"
] | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/vlanm.py#L126-L178 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/vlanm.py | get_device_hybrid_interfaces | def get_device_hybrid_interfaces(auth, url, devid=None, devip=None):
"""
Function takes devId as input to RESTFUL call to HP IMC platform
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
:param url: base url of IMC RS interface #usually auth.url from pyhpeimc.auth.au... | python | def get_device_hybrid_interfaces(auth, url, devid=None, devip=None):
"""
Function takes devId as input to RESTFUL call to HP IMC platform
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
:param url: base url of IMC RS interface #usually auth.url from pyhpeimc.auth.au... | [
"def",
"get_device_hybrid_interfaces",
"(",
"auth",
",",
"url",
",",
"devid",
"=",
"None",
",",
"devip",
"=",
"None",
")",
":",
"if",
"devip",
"is",
"not",
"None",
":",
"devid",
"=",
"get_dev_details",
"(",
"devip",
",",
"auth",
",",
"url",
")",
"[",
... | Function takes devId as input to RESTFUL call to HP IMC platform
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
:param url: base url of IMC RS interface #usually auth.url from pyhpeimc.auth.authclass
:param devid: str requires devid of the target device
:param de... | [
"Function",
"takes",
"devId",
"as",
"input",
"to",
"RESTFUL",
"call",
"to",
"HP",
"IMC",
"platform"
] | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/vlanm.py#L184-L237 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/vlanm.py | add_hybrid_interface | def add_hybrid_interface(ifindex, pvid, taggedvlans, untaggedvlans, auth, url, devip=None,
devid=None):
"""
Function takes ifindex, pvid, tagged vlans untagged vlans as input values to add a hybrid
port to a HPE Comware based switch. These functions only apply to HPE Comware based d... | python | def add_hybrid_interface(ifindex, pvid, taggedvlans, untaggedvlans, auth, url, devip=None,
devid=None):
"""
Function takes ifindex, pvid, tagged vlans untagged vlans as input values to add a hybrid
port to a HPE Comware based switch. These functions only apply to HPE Comware based d... | [
"def",
"add_hybrid_interface",
"(",
"ifindex",
",",
"pvid",
",",
"taggedvlans",
",",
"untaggedvlans",
",",
"auth",
",",
"url",
",",
"devip",
"=",
"None",
",",
"devid",
"=",
"None",
")",
":",
"if",
"devip",
"is",
"not",
"None",
":",
"devid",
"=",
"get_d... | Function takes ifindex, pvid, tagged vlans untagged vlans as input values to add a hybrid
port to a HPE Comware based switch. These functions only apply to HPE Comware based devices.
:param ifindex: str ifIndex value of target interface
:param pvid: str 802.1q value (1-4094) of target VLAN
:param tagged... | [
"Function",
"takes",
"ifindex",
"pvid",
"tagged",
"vlans",
"untagged",
"vlans",
"as",
"input",
"values",
"to",
"add",
"a",
"hybrid",
"port",
"to",
"a",
"HPE",
"Comware",
"based",
"switch",
".",
"These",
"functions",
"only",
"apply",
"to",
"HPE",
"Comware",
... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/vlanm.py#L240-L274 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/vlanm.py | delete_hybrid_interface | def delete_hybrid_interface(ifindex, auth, url, devip=None, devid=None):
"""
Function takes devip ( ipv4 address ), ifIndex and pvid (vlanid) of specific device and
802.1q VLAN tag and issues a RESTFUL call to remove the specified VLAN from the target device.
:param ifindex: str value of ifIndex for ... | python | def delete_hybrid_interface(ifindex, auth, url, devip=None, devid=None):
"""
Function takes devip ( ipv4 address ), ifIndex and pvid (vlanid) of specific device and
802.1q VLAN tag and issues a RESTFUL call to remove the specified VLAN from the target device.
:param ifindex: str value of ifIndex for ... | [
"def",
"delete_hybrid_interface",
"(",
"ifindex",
",",
"auth",
",",
"url",
",",
"devip",
"=",
"None",
",",
"devid",
"=",
"None",
")",
":",
"if",
"devip",
"is",
"not",
"None",
":",
"devid",
"=",
"get_dev_details",
"(",
"devip",
",",
"auth",
",",
"url",
... | Function takes devip ( ipv4 address ), ifIndex and pvid (vlanid) of specific device and
802.1q VLAN tag and issues a RESTFUL call to remove the specified VLAN from the target device.
:param ifindex: str value of ifIndex for a specific interface on the device
:param auth: requests auth object #usually aut... | [
"Function",
"takes",
"devip",
"(",
"ipv4",
"address",
")",
"ifIndex",
"and",
"pvid",
"(",
"vlanid",
")",
"of",
"specific",
"device",
"and",
"802",
".",
"1q",
"VLAN",
"tag",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"remove",
"the",
"specified",
"VLA... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/vlanm.py#L313-L360 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/vlanm.py | set_access_interface_pvid | def set_access_interface_pvid(ifindex, pvid, auth, url, devip=None, devid=None):
"""
Function takes devip ( ipv4 address ), ifIndex and pvid (vlanid) of specific device and
802.1q VLAN tag and issues a RESTFUL call to remove the specified VLAN from the target device.
:param ifindex: str value of ifInde... | python | def set_access_interface_pvid(ifindex, pvid, auth, url, devip=None, devid=None):
"""
Function takes devip ( ipv4 address ), ifIndex and pvid (vlanid) of specific device and
802.1q VLAN tag and issues a RESTFUL call to remove the specified VLAN from the target device.
:param ifindex: str value of ifInde... | [
"def",
"set_access_interface_pvid",
"(",
"ifindex",
",",
"pvid",
",",
"auth",
",",
"url",
",",
"devip",
"=",
"None",
",",
"devid",
"=",
"None",
")",
":",
"if",
"devip",
"is",
"not",
"None",
":",
"devid",
"=",
"get_dev_details",
"(",
"devip",
",",
"auth... | Function takes devip ( ipv4 address ), ifIndex and pvid (vlanid) of specific device and
802.1q VLAN tag and issues a RESTFUL call to remove the specified VLAN from the target device.
:param ifindex: str value of ifIndex for a specific interface on the device
:param pvid: str value of dot1q VLAN desired t... | [
"Function",
"takes",
"devip",
"(",
"ipv4",
"address",
")",
"ifIndex",
"and",
"pvid",
"(",
"vlanid",
")",
"of",
"specific",
"device",
"and",
"802",
".",
"1q",
"VLAN",
"tag",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"remove",
"the",
"specified",
"VLA... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/vlanm.py#L365-L418 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/vlanm.py | create_dev_vlan | def create_dev_vlan(vlanid, vlan_name, auth, url, devid=None, devip=None):
"""
function takes devid and vlanid vlan_name of specific device and 802.1q VLAN tag
and issues a RESTFUL call to add the specified VLAN from the target device. VLAN Name
MUST be valid on target device.
:param vlanid:int or ... | python | def create_dev_vlan(vlanid, vlan_name, auth, url, devid=None, devip=None):
"""
function takes devid and vlanid vlan_name of specific device and 802.1q VLAN tag
and issues a RESTFUL call to add the specified VLAN from the target device. VLAN Name
MUST be valid on target device.
:param vlanid:int or ... | [
"def",
"create_dev_vlan",
"(",
"vlanid",
",",
"vlan_name",
",",
"auth",
",",
"url",
",",
"devid",
"=",
"None",
",",
"devip",
"=",
"None",
")",
":",
"if",
"devip",
"is",
"not",
"None",
":",
"devid",
"=",
"get_dev_details",
"(",
"devip",
",",
"auth",
"... | function takes devid and vlanid vlan_name of specific device and 802.1q VLAN tag
and issues a RESTFUL call to add the specified VLAN from the target device. VLAN Name
MUST be valid on target device.
:param vlanid:int or str value of target 802.1q VLAN
:param vlan_name: str value of the target 802.1q V... | [
"function",
"takes",
"devid",
"and",
"vlanid",
"vlan_name",
"of",
"specific",
"device",
"and",
"802",
".",
"1q",
"VLAN",
"tag",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"add",
"the",
"specified",
"VLAN",
"from",
"the",
"target",
"device",
".",
"VLAN"... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/vlanm.py#L455-L502 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/vlanm.py | delete_dev_vlans | def delete_dev_vlans(vlanid, auth, url, devid=None, devip=None):
"""
function takes devid and vlanid of specific device and 802.1q VLAN tag and issues a RESTFUL
call to remove the specified VLAN from the target device.
:param vlanid:int or str value of target 802.1q VLAN
:param auth: requests auth ... | python | def delete_dev_vlans(vlanid, auth, url, devid=None, devip=None):
"""
function takes devid and vlanid of specific device and 802.1q VLAN tag and issues a RESTFUL
call to remove the specified VLAN from the target device.
:param vlanid:int or str value of target 802.1q VLAN
:param auth: requests auth ... | [
"def",
"delete_dev_vlans",
"(",
"vlanid",
",",
"auth",
",",
"url",
",",
"devid",
"=",
"None",
",",
"devip",
"=",
"None",
")",
":",
"if",
"devip",
"is",
"not",
"None",
":",
"devid",
"=",
"get_dev_details",
"(",
"devip",
",",
"auth",
",",
"url",
")",
... | function takes devid and vlanid of specific device and 802.1q VLAN tag and issues a RESTFUL
call to remove the specified VLAN from the target device.
:param vlanid:int or str value of target 802.1q VLAN
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
:param url: bas... | [
"function",
"takes",
"devid",
"and",
"vlanid",
"of",
"specific",
"device",
"and",
"802",
".",
"1q",
"VLAN",
"tag",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"remove",
"the",
"specified",
"VLAN",
"from",
"the",
"target",
"device",
".",
":",
"param",
... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/vlanm.py#L505-L545 | train |
housecanary/hc-api-python | housecanary/hc_api_export/hc_api_export.py | _get_results_from_api | def _get_results_from_api(identifiers, endpoints, api_key, api_secret):
"""Use the HouseCanary API Python Client to access the API"""
if api_key is not None and api_secret is not None:
client = housecanary.ApiClient(api_key, api_secret)
else:
client = housecanary.ApiClient()
wrapper = ... | python | def _get_results_from_api(identifiers, endpoints, api_key, api_secret):
"""Use the HouseCanary API Python Client to access the API"""
if api_key is not None and api_secret is not None:
client = housecanary.ApiClient(api_key, api_secret)
else:
client = housecanary.ApiClient()
wrapper = ... | [
"def",
"_get_results_from_api",
"(",
"identifiers",
",",
"endpoints",
",",
"api_key",
",",
"api_secret",
")",
":",
"if",
"api_key",
"is",
"not",
"None",
"and",
"api_secret",
"is",
"not",
"None",
":",
"client",
"=",
"housecanary",
".",
"ApiClient",
"(",
"api_... | Use the HouseCanary API Python Client to access the API | [
"Use",
"the",
"HouseCanary",
"API",
"Python",
"Client",
"to",
"access",
"the",
"API"
] | 2bb9e2208b34e8617575de45934357ee33b8531c | https://github.com/housecanary/hc-api-python/blob/2bb9e2208b34e8617575de45934357ee33b8531c/housecanary/hc_api_export/hc_api_export.py#L154-L168 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/admin/images.py | images | def images():
'''
Show the list of registered images in this cluster.
'''
fields = [
('Name', 'name'),
('Registry', 'registry'),
('Tag', 'tag'),
('Digest', 'digest'),
('Size', 'size_bytes'),
('Aliases', 'aliases'),
]
with Session() as session:
... | python | def images():
'''
Show the list of registered images in this cluster.
'''
fields = [
('Name', 'name'),
('Registry', 'registry'),
('Tag', 'tag'),
('Digest', 'digest'),
('Size', 'size_bytes'),
('Aliases', 'aliases'),
]
with Session() as session:
... | [
"def",
"images",
"(",
")",
":",
"fields",
"=",
"[",
"(",
"'Name'",
",",
"'name'",
")",
",",
"(",
"'Registry'",
",",
"'registry'",
")",
",",
"(",
"'Tag'",
",",
"'tag'",
")",
",",
"(",
"'Digest'",
",",
"'digest'",
")",
",",
"(",
"'Size'",
",",
"'si... | Show the list of registered images in this cluster. | [
"Show",
"the",
"list",
"of",
"registered",
"images",
"in",
"this",
"cluster",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/admin/images.py#L11-L34 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/admin/images.py | rescan_images | def rescan_images(registry):
'''Update the kernel image metadata from all configured docker registries.'''
with Session() as session:
try:
result = session.Image.rescanImages(registry)
except Exception as e:
print_error(e)
sys.exit(1)
if result['ok']:
... | python | def rescan_images(registry):
'''Update the kernel image metadata from all configured docker registries.'''
with Session() as session:
try:
result = session.Image.rescanImages(registry)
except Exception as e:
print_error(e)
sys.exit(1)
if result['ok']:
... | [
"def",
"rescan_images",
"(",
"registry",
")",
":",
"with",
"Session",
"(",
")",
"as",
"session",
":",
"try",
":",
"result",
"=",
"session",
".",
"Image",
".",
"rescanImages",
"(",
"registry",
")",
"except",
"Exception",
"as",
"e",
":",
"print_error",
"("... | Update the kernel image metadata from all configured docker registries. | [
"Update",
"the",
"kernel",
"image",
"metadata",
"from",
"all",
"configured",
"docker",
"registries",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/admin/images.py#L40-L51 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/admin/images.py | alias_image | def alias_image(alias, target):
'''Add an image alias.'''
with Session() as session:
try:
result = session.Image.aliasImage(alias, target)
except Exception as e:
print_error(e)
sys.exit(1)
if result['ok']:
print("alias {0} created for targe... | python | def alias_image(alias, target):
'''Add an image alias.'''
with Session() as session:
try:
result = session.Image.aliasImage(alias, target)
except Exception as e:
print_error(e)
sys.exit(1)
if result['ok']:
print("alias {0} created for targe... | [
"def",
"alias_image",
"(",
"alias",
",",
"target",
")",
":",
"with",
"Session",
"(",
")",
"as",
"session",
":",
"try",
":",
"result",
"=",
"session",
".",
"Image",
".",
"aliasImage",
"(",
"alias",
",",
"target",
")",
"except",
"Exception",
"as",
"e",
... | Add an image alias. | [
"Add",
"an",
"image",
"alias",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/admin/images.py#L56-L67 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/admin/images.py | dealias_image | def dealias_image(alias):
'''Remove an image alias.'''
with Session() as session:
try:
result = session.Image.dealiasImage(alias)
except Exception as e:
print_error(e)
sys.exit(1)
if result['ok']:
print("alias {0} removed.".format(alias))
... | python | def dealias_image(alias):
'''Remove an image alias.'''
with Session() as session:
try:
result = session.Image.dealiasImage(alias)
except Exception as e:
print_error(e)
sys.exit(1)
if result['ok']:
print("alias {0} removed.".format(alias))
... | [
"def",
"dealias_image",
"(",
"alias",
")",
":",
"with",
"Session",
"(",
")",
"as",
"session",
":",
"try",
":",
"result",
"=",
"session",
".",
"Image",
".",
"dealiasImage",
"(",
"alias",
")",
"except",
"Exception",
"as",
"e",
":",
"print_error",
"(",
"e... | Remove an image alias. | [
"Remove",
"an",
"image",
"alias",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/admin/images.py#L72-L83 | train |
lablup/backend.ai-client-py | src/ai/backend/client/cli/__init__.py | run_alias | def run_alias():
"""
Quick aliases for run command.
"""
mode = Path(sys.argv[0]).stem
help = True if len(sys.argv) <= 1 else False
if mode == 'lcc':
sys.argv.insert(1, 'c')
elif mode == 'lpython':
sys.argv.insert(1, 'python')
sys.argv.insert(1, 'run')
if help:
... | python | def run_alias():
"""
Quick aliases for run command.
"""
mode = Path(sys.argv[0]).stem
help = True if len(sys.argv) <= 1 else False
if mode == 'lcc':
sys.argv.insert(1, 'c')
elif mode == 'lpython':
sys.argv.insert(1, 'python')
sys.argv.insert(1, 'run')
if help:
... | [
"def",
"run_alias",
"(",
")",
":",
"mode",
"=",
"Path",
"(",
"sys",
".",
"argv",
"[",
"0",
"]",
")",
".",
"stem",
"help",
"=",
"True",
"if",
"len",
"(",
"sys",
".",
"argv",
")",
"<=",
"1",
"else",
"False",
"if",
"mode",
"==",
"'lcc'",
":",
"s... | Quick aliases for run command. | [
"Quick",
"aliases",
"for",
"run",
"command",
"."
] | a063d774fea6f4350b89498c40d3c837ec3029a7 | https://github.com/lablup/backend.ai-client-py/blob/a063d774fea6f4350b89498c40d3c837ec3029a7/src/ai/backend/client/cli/__init__.py#L99-L112 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | get_dev_asset_details | def get_dev_asset_details(ipaddress):
"""Takes in ipaddress as input to fetch device assett details from HP IMC RESTFUL API
:param ipaddress: IP address of the device you wish to gather the asset details
:return: object of type list containing the device asset details
"""
# checks to see if the imc ... | python | def get_dev_asset_details(ipaddress):
"""Takes in ipaddress as input to fetch device assett details from HP IMC RESTFUL API
:param ipaddress: IP address of the device you wish to gather the asset details
:return: object of type list containing the device asset details
"""
# checks to see if the imc ... | [
"def",
"get_dev_asset_details",
"(",
"ipaddress",
")",
":",
"# checks to see if the imc credentials are already available",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"set_imc_creds",
"(",
")",
"global",
"r",
"get_dev_asset_url",
"=",
"\"/imcrs/netasset... | Takes in ipaddress as input to fetch device assett details from HP IMC RESTFUL API
:param ipaddress: IP address of the device you wish to gather the asset details
:return: object of type list containing the device asset details | [
"Takes",
"in",
"ipaddress",
"as",
"input",
"to",
"fetch",
"device",
"assett",
"details",
"from",
"HP",
"IMC",
"RESTFUL",
"API",
":",
"param",
"ipaddress",
":",
"IP",
"address",
"of",
"the",
"device",
"you",
"wish",
"to",
"gather",
"the",
"asset",
"details"... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L150-L175 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | get_serial_numbers | def get_serial_numbers(assetList):
"""
Helper function: Uses return of get_dev_asset_details function to evaluate to evaluate for multipe serial objects.
:param assetList: output of get_dev_asset_details function
:return: the serial_list object of list type which contains one or more dictionaries of the... | python | def get_serial_numbers(assetList):
"""
Helper function: Uses return of get_dev_asset_details function to evaluate to evaluate for multipe serial objects.
:param assetList: output of get_dev_asset_details function
:return: the serial_list object of list type which contains one or more dictionaries of the... | [
"def",
"get_serial_numbers",
"(",
"assetList",
")",
":",
"serial_list",
"=",
"[",
"]",
"if",
"type",
"(",
"assetList",
")",
"==",
"list",
":",
"for",
"i",
"in",
"assetList",
":",
"if",
"len",
"(",
"i",
"[",
"'serialNum'",
"]",
")",
">",
"0",
":",
"... | Helper function: Uses return of get_dev_asset_details function to evaluate to evaluate for multipe serial objects.
:param assetList: output of get_dev_asset_details function
:return: the serial_list object of list type which contains one or more dictionaries of the asset details | [
"Helper",
"function",
":",
"Uses",
"return",
"of",
"get_dev_asset_details",
"function",
"to",
"evaluate",
"to",
"evaluate",
"for",
"multipe",
"serial",
"objects",
".",
":",
"param",
"assetList",
":",
"output",
"of",
"get_dev_asset_details",
"function",
":",
"retur... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L178-L189 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | get_trunk_interfaces | def get_trunk_interfaces(devId):
"""Function takes devId as input to RESTFULL call to HP IMC platform
:param devId: output of get_dev_details
:return: list of dictionaries containing of interfaces configured as an 802.1q trunk
"""
# checks to see if the imc credentials are already available
if ... | python | def get_trunk_interfaces(devId):
"""Function takes devId as input to RESTFULL call to HP IMC platform
:param devId: output of get_dev_details
:return: list of dictionaries containing of interfaces configured as an 802.1q trunk
"""
# checks to see if the imc credentials are already available
if ... | [
"def",
"get_trunk_interfaces",
"(",
"devId",
")",
":",
"# checks to see if the imc credentials are already available",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"set_imc_creds",
"(",
")",
"global",
"r",
"get_trunk_interfaces_url",
"=",
"\"/imcrs/vlan/t... | Function takes devId as input to RESTFULL call to HP IMC platform
:param devId: output of get_dev_details
:return: list of dictionaries containing of interfaces configured as an 802.1q trunk | [
"Function",
"takes",
"devId",
"as",
"input",
"to",
"RESTFULL",
"call",
"to",
"HP",
"IMC",
"platform",
":",
"param",
"devId",
":",
"output",
"of",
"get_dev_details",
":",
"return",
":",
"list",
"of",
"dictionaries",
"containing",
"of",
"interfaces",
"configured... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L192-L214 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | get_device_access_interfaces | def get_device_access_interfaces(devId):
"""Function takes devId as input to RESTFUL call to HP IMC platform
:param devId: requires deviceID as the only input parameter
:return: list of dictionaries containing interfaces configured as access ports
"""
# checks to see if the imc credentials are alrea... | python | def get_device_access_interfaces(devId):
"""Function takes devId as input to RESTFUL call to HP IMC platform
:param devId: requires deviceID as the only input parameter
:return: list of dictionaries containing interfaces configured as access ports
"""
# checks to see if the imc credentials are alrea... | [
"def",
"get_device_access_interfaces",
"(",
"devId",
")",
":",
"# checks to see if the imc credentials are already available",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"set_imc_creds",
"(",
")",
"global",
"r",
"get_access_interface_vlan_url",
"=",
"\"... | Function takes devId as input to RESTFUL call to HP IMC platform
:param devId: requires deviceID as the only input parameter
:return: list of dictionaries containing interfaces configured as access ports | [
"Function",
"takes",
"devId",
"as",
"input",
"to",
"RESTFUL",
"call",
"to",
"HP",
"IMC",
"platform",
":",
"param",
"devId",
":",
"requires",
"deviceID",
"as",
"the",
"only",
"input",
"parameter",
":",
"return",
":",
"list",
"of",
"dictionaries",
"containing"... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L217-L240 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | get_dev_details | def get_dev_details(ip_address):
"""Takes string input of IP address to issue RESTUL call to HP IMC
:param ip_address: string object of dotted decimal notation of IPv4 address
:return: dictionary of device details
>>> get_dev_details('10.101.0.1')
{'symbolLevel': '2', 'typeName': 'Cisco 2811', 'loc... | python | def get_dev_details(ip_address):
"""Takes string input of IP address to issue RESTUL call to HP IMC
:param ip_address: string object of dotted decimal notation of IPv4 address
:return: dictionary of device details
>>> get_dev_details('10.101.0.1')
{'symbolLevel': '2', 'typeName': 'Cisco 2811', 'loc... | [
"def",
"get_dev_details",
"(",
"ip_address",
")",
":",
"# checks to see if the imc credentials are already available",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"set_imc_creds",
"(",
")",
"global",
"r",
"get_dev_details_url",
"=",
"\"/imcrs/plat/res/de... | Takes string input of IP address to issue RESTUL call to HP IMC
:param ip_address: string object of dotted decimal notation of IPv4 address
:return: dictionary of device details
>>> get_dev_details('10.101.0.1')
{'symbolLevel': '2', 'typeName': 'Cisco 2811', 'location': 'changed this too', 'status': '1... | [
"Takes",
"string",
"input",
"of",
"IP",
"address",
"to",
"issue",
"RESTUL",
"call",
"to",
"HP",
"IMC",
":",
"param",
"ip_address",
":",
"string",
"object",
"of",
"dotted",
"decimal",
"notation",
"of",
"IPv4",
"address",
":",
"return",
":",
"dictionary",
"o... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L269-L305 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | get_dev_vlans | def get_dev_vlans(devId):
"""Function takes input of devID to issue RESTUL call to HP IMC
:param devId: requires devId as the only input parameter
:return: list dictionaries of existing vlans on the devices. Device must be supported in HP IMC platform VLAN manager module
"""
# checks to see if the ... | python | def get_dev_vlans(devId):
"""Function takes input of devID to issue RESTUL call to HP IMC
:param devId: requires devId as the only input parameter
:return: list dictionaries of existing vlans on the devices. Device must be supported in HP IMC platform VLAN manager module
"""
# checks to see if the ... | [
"def",
"get_dev_vlans",
"(",
"devId",
")",
":",
"# checks to see if the imc credentials are already available",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"set_imc_creds",
"(",
")",
"global",
"r",
"get_dev_vlans_url",
"=",
"\"/imcrs/vlan?devId=\"",
"+... | Function takes input of devID to issue RESTUL call to HP IMC
:param devId: requires devId as the only input parameter
:return: list dictionaries of existing vlans on the devices. Device must be supported in HP IMC platform VLAN manager module | [
"Function",
"takes",
"input",
"of",
"devID",
"to",
"issue",
"RESTUL",
"call",
"to",
"HP",
"IMC",
":",
"param",
"devId",
":",
"requires",
"devId",
"as",
"the",
"only",
"input",
"parameter",
":",
"return",
":",
"list",
"dictionaries",
"of",
"existing",
"vlan... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L308-L330 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | get_dev_interface | def get_dev_interface(devid):
"""
Function takes devid as input to RESTFUL call to HP IMC platform
:param devid: requires devid as the only input
:return: list object which contains a dictionary per interface
"""
# checks to see if the imc credentials are already available
if auth is None or... | python | def get_dev_interface(devid):
"""
Function takes devid as input to RESTFUL call to HP IMC platform
:param devid: requires devid as the only input
:return: list object which contains a dictionary per interface
"""
# checks to see if the imc credentials are already available
if auth is None or... | [
"def",
"get_dev_interface",
"(",
"devid",
")",
":",
"# checks to see if the imc credentials are already available",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"set_imc_creds",
"(",
")",
"global",
"r",
"get_dev_interface_url",
"=",
"\"/imcrs/plat/res/dev... | Function takes devid as input to RESTFUL call to HP IMC platform
:param devid: requires devid as the only input
:return: list object which contains a dictionary per interface | [
"Function",
"takes",
"devid",
"as",
"input",
"to",
"RESTFUL",
"call",
"to",
"HP",
"IMC",
"platform",
":",
"param",
"devid",
":",
"requires",
"devid",
"as",
"the",
"only",
"input",
":",
"return",
":",
"list",
"object",
"which",
"contains",
"a",
"dictionary"... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L333-L354 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | get_dev_run_config | def get_dev_run_config(devId):
"""
function takes the devId of a specific device and issues a RESTFUL call to get the most current running config
file as known by the HP IMC Base Platform ICC module for the target device.
:param devId: int or str value of the target device
:return: str which contai... | python | def get_dev_run_config(devId):
"""
function takes the devId of a specific device and issues a RESTFUL call to get the most current running config
file as known by the HP IMC Base Platform ICC module for the target device.
:param devId: int or str value of the target device
:return: str which contai... | [
"def",
"get_dev_run_config",
"(",
"devId",
")",
":",
"# checks to see if the imc credentials are already available",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"set_imc_creds",
"(",
")",
"global",
"r",
"get_dev_run_url",
"=",
"\"/imcrs/icc/deviceCfg/\""... | function takes the devId of a specific device and issues a RESTFUL call to get the most current running config
file as known by the HP IMC Base Platform ICC module for the target device.
:param devId: int or str value of the target device
:return: str which contains the entire content of the target device ... | [
"function",
"takes",
"the",
"devId",
"of",
"a",
"specific",
"device",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"get",
"the",
"most",
"current",
"running",
"config",
"file",
"as",
"known",
"by",
"the",
"HP",
"IMC",
"Base",
"Platform",
"ICC",
"module",... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L357-L384 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | get_dev_start_config | def get_dev_start_config(devId):
"""
function takes the devId of a specific device and issues a RESTFUL call to get the most current startup config
file as known by the HP IMC Base Platform ICC module for the target device.
:param devId: int or str value of the target device
:return: str which cont... | python | def get_dev_start_config(devId):
"""
function takes the devId of a specific device and issues a RESTFUL call to get the most current startup config
file as known by the HP IMC Base Platform ICC module for the target device.
:param devId: int or str value of the target device
:return: str which cont... | [
"def",
"get_dev_start_config",
"(",
"devId",
")",
":",
"# checks to see if the imc credentials are already available",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"set_imc_creds",
"(",
")",
"global",
"r",
"get_dev_run_url",
"=",
"\"/imcrs/icc/deviceCfg/\... | function takes the devId of a specific device and issues a RESTFUL call to get the most current startup config
file as known by the HP IMC Base Platform ICC module for the target device.
:param devId: int or str value of the target device
:return: str which contains the entire content of the target device ... | [
"function",
"takes",
"the",
"devId",
"of",
"a",
"specific",
"device",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"get",
"the",
"most",
"current",
"startup",
"config",
"file",
"as",
"known",
"by",
"the",
"HP",
"IMC",
"Base",
"Platform",
"ICC",
"module",... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L387-L410 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | get_dev_alarms | def get_dev_alarms(devId):
"""
function takes the devId of a specific device and issues a RESTFUL call to get the current alarms for the target
device.
:param devId: int or str value of the target device
:return:list of dictionaries containing the alarms for this device
"""
# checks to see i... | python | def get_dev_alarms(devId):
"""
function takes the devId of a specific device and issues a RESTFUL call to get the current alarms for the target
device.
:param devId: int or str value of the target device
:return:list of dictionaries containing the alarms for this device
"""
# checks to see i... | [
"def",
"get_dev_alarms",
"(",
"devId",
")",
":",
"# checks to see if the imc credentials are already available",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"set_imc_creds",
"(",
")",
"global",
"r",
"get_dev_alarm_url",
"=",
"\"/imcrs/fault/alarm?operato... | function takes the devId of a specific device and issues a RESTFUL call to get the current alarms for the target
device.
:param devId: int or str value of the target device
:return:list of dictionaries containing the alarms for this device | [
"function",
"takes",
"the",
"devId",
"of",
"a",
"specific",
"device",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"get",
"the",
"current",
"alarms",
"for",
"the",
"target",
"device",
".",
":",
"param",
"devId",
":",
"int",
"or",
"str",
"value",
"of",
... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L413-L435 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | get_real_time_locate | def get_real_time_locate(ipAddress):
"""
function takes the ipAddress of a specific host and issues a RESTFUL call to get the device and interface that the
target host is currently connected to.
:param ipAddress: str value valid IPv4 IP address
:return: dictionary containing hostIp, devId, deviceIP,... | python | def get_real_time_locate(ipAddress):
"""
function takes the ipAddress of a specific host and issues a RESTFUL call to get the device and interface that the
target host is currently connected to.
:param ipAddress: str value valid IPv4 IP address
:return: dictionary containing hostIp, devId, deviceIP,... | [
"def",
"get_real_time_locate",
"(",
"ipAddress",
")",
":",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"# checks to see if the imc credentials are already available",
"set_imc_creds",
"(",
")",
"real_time_locate_url",
"=",
"\"/imcrs/res/access/realtimeLocate... | function takes the ipAddress of a specific host and issues a RESTFUL call to get the device and interface that the
target host is currently connected to.
:param ipAddress: str value valid IPv4 IP address
:return: dictionary containing hostIp, devId, deviceIP, ifDesc, ifIndex | [
"function",
"takes",
"the",
"ipAddress",
"of",
"a",
"specific",
"host",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"get",
"the",
"device",
"and",
"interface",
"that",
"the",
"target",
"host",
"is",
"currently",
"connected",
"to",
".",
":",
"param",
"ip... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L441-L458 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | get_ip_mac_arp_list | def get_ip_mac_arp_list(devId):
"""
function takes devid of specific device and issues a RESTFUL call to get the IP/MAC/ARP list from the target device.
:param devId: int or str value of the target device.
:return: list of dictionaries containing the IP/MAC/ARP list of the target device.
"""
if ... | python | def get_ip_mac_arp_list(devId):
"""
function takes devid of specific device and issues a RESTFUL call to get the IP/MAC/ARP list from the target device.
:param devId: int or str value of the target device.
:return: list of dictionaries containing the IP/MAC/ARP list of the target device.
"""
if ... | [
"def",
"get_ip_mac_arp_list",
"(",
"devId",
")",
":",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"# checks to see if the imc credentials are already available",
"set_imc_creds",
"(",
")",
"ip_mac_arp_list_url",
"=",
"\"/imcrs/res/access/ipMacArp/\"",
"+",... | function takes devid of specific device and issues a RESTFUL call to get the IP/MAC/ARP list from the target device.
:param devId: int or str value of the target device.
:return: list of dictionaries containing the IP/MAC/ARP list of the target device. | [
"function",
"takes",
"devid",
"of",
"specific",
"device",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"get",
"the",
"IP",
"/",
"MAC",
"/",
"ARP",
"list",
"from",
"the",
"target",
"device",
".",
":",
"param",
"devId",
":",
"int",
"or",
"str",
"value"... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L461-L481 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | get_custom_views | def get_custom_views(name=None):
"""
function takes no input and issues a RESTFUL call to get a list of custom views from HPE IMC. Optioanl Name input
will return only the specified view.
:param name: string containg the name of the desired custom view
:return: list of dictionaries containing attrib... | python | def get_custom_views(name=None):
"""
function takes no input and issues a RESTFUL call to get a list of custom views from HPE IMC. Optioanl Name input
will return only the specified view.
:param name: string containg the name of the desired custom view
:return: list of dictionaries containing attrib... | [
"def",
"get_custom_views",
"(",
"name",
"=",
"None",
")",
":",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"# checks to see if the imc credentials are already available",
"set_imc_creds",
"(",
")",
"if",
"name",
"is",
"None",
":",
"get_custom_views... | function takes no input and issues a RESTFUL call to get a list of custom views from HPE IMC. Optioanl Name input
will return only the specified view.
:param name: string containg the name of the desired custom view
:return: list of dictionaries containing attributes of the custom views. | [
"function",
"takes",
"no",
"input",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"get",
"a",
"list",
"of",
"custom",
"views",
"from",
"HPE",
"IMC",
".",
"Optioanl",
"Name",
"input",
"will",
"return",
"only",
"the",
"specified",
"view",
".",
":",
"param... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L488-L512 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | create_custom_views | def create_custom_views(name=None, upperview=None):
"""
function takes no input and issues a RESTFUL call to get a list of custom views from HPE IMC. Optioanl Name input
will return only the specified view.
:param name: string containg the name of the desired custom view
:return: list of dictionarie... | python | def create_custom_views(name=None, upperview=None):
"""
function takes no input and issues a RESTFUL call to get a list of custom views from HPE IMC. Optioanl Name input
will return only the specified view.
:param name: string containg the name of the desired custom view
:return: list of dictionarie... | [
"def",
"create_custom_views",
"(",
"name",
"=",
"None",
",",
"upperview",
"=",
"None",
")",
":",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"# checks to see if the imc credentials are already available",
"set_imc_creds",
"(",
")",
"create_custom_vie... | function takes no input and issues a RESTFUL call to get a list of custom views from HPE IMC. Optioanl Name input
will return only the specified view.
:param name: string containg the name of the desired custom view
:return: list of dictionaries containing attributes of the custom views. | [
"function",
"takes",
"no",
"input",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"get",
"a",
"list",
"of",
"custom",
"views",
"from",
"HPE",
"IMC",
".",
"Optioanl",
"Name",
"input",
"will",
"return",
"only",
"the",
"specified",
"view",
".",
":",
"param... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L514-L538 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | create_dev_vlan | def create_dev_vlan(devid, vlanid, vlan_name):
"""
function takes devid and vlanid vlan_name of specific device and 802.1q VLAN tag and issues a RESTFUL call to add the
specified VLAN from the target device. VLAN Name MUST be valid on target device.
:param devid: int or str value of the target device
... | python | def create_dev_vlan(devid, vlanid, vlan_name):
"""
function takes devid and vlanid vlan_name of specific device and 802.1q VLAN tag and issues a RESTFUL call to add the
specified VLAN from the target device. VLAN Name MUST be valid on target device.
:param devid: int or str value of the target device
... | [
"def",
"create_dev_vlan",
"(",
"devid",
",",
"vlanid",
",",
"vlan_name",
")",
":",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"# checks to see if the imc credentials are already available",
"set_imc_creds",
"(",
")",
"create_dev_vlan_url",
"=",
"\"/... | function takes devid and vlanid vlan_name of specific device and 802.1q VLAN tag and issues a RESTFUL call to add the
specified VLAN from the target device. VLAN Name MUST be valid on target device.
:param devid: int or str value of the target device
:param vlanid:int or str value of target 802.1q VLAN
... | [
"function",
"takes",
"devid",
"and",
"vlanid",
"vlan_name",
"of",
"specific",
"device",
"and",
"802",
".",
"1q",
"VLAN",
"tag",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"add",
"the",
"specified",
"VLAN",
"from",
"the",
"target",
"device",
".",
"VLAN"... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L543-L566 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | delete_dev_vlans | def delete_dev_vlans(devid, vlanid):
"""
function takes devid and vlanid of specific device and 802.1q VLAN tag and issues a RESTFUL call to remove the
specified VLAN from the target device.
:param devid: int or str value of the target device
:param vlanid:
:return:HTTP Status code of 204 with n... | python | def delete_dev_vlans(devid, vlanid):
"""
function takes devid and vlanid of specific device and 802.1q VLAN tag and issues a RESTFUL call to remove the
specified VLAN from the target device.
:param devid: int or str value of the target device
:param vlanid:
:return:HTTP Status code of 204 with n... | [
"def",
"delete_dev_vlans",
"(",
"devid",
",",
"vlanid",
")",
":",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"# checks to see if the imc credentials are already available",
"set_imc_creds",
"(",
")",
"remove_dev_vlan_url",
"=",
"\"/imcrs/vlan/delvlan?de... | function takes devid and vlanid of specific device and 802.1q VLAN tag and issues a RESTFUL call to remove the
specified VLAN from the target device.
:param devid: int or str value of the target device
:param vlanid:
:return:HTTP Status code of 204 with no values. | [
"function",
"takes",
"devid",
"and",
"vlanid",
"of",
"specific",
"device",
"and",
"802",
".",
"1q",
"VLAN",
"tag",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"remove",
"the",
"specified",
"VLAN",
"from",
"the",
"target",
"device",
".",
":",
"param",
... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L569-L592 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | set_inteface_down | def set_inteface_down(devid, ifindex):
"""
function takest devid and ifindex of specific device and interface and issues a RESTFUL call to " shut" the specifie
d interface on the target device.
:param devid: int or str value of the target device
:param ifindex: int or str value of the target interfa... | python | def set_inteface_down(devid, ifindex):
"""
function takest devid and ifindex of specific device and interface and issues a RESTFUL call to " shut" the specifie
d interface on the target device.
:param devid: int or str value of the target device
:param ifindex: int or str value of the target interfa... | [
"def",
"set_inteface_down",
"(",
"devid",
",",
"ifindex",
")",
":",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"# checks to see if the imc credentials are already available",
"set_imc_creds",
"(",
")",
"set_int_down_url",
"=",
"\"/imcrs/plat/res/device/... | function takest devid and ifindex of specific device and interface and issues a RESTFUL call to " shut" the specifie
d interface on the target device.
:param devid: int or str value of the target device
:param ifindex: int or str value of the target interface
:return: HTTP status code 204 with no values... | [
"function",
"takest",
"devid",
"and",
"ifindex",
"of",
"specific",
"device",
"and",
"interface",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"shut",
"the",
"specifie",
"d",
"interface",
"on",
"the",
"target",
"device",
".",
":",
"param",
"devid",
":",
"... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L598-L617 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | set_inteface_up | def set_inteface_up(devid, ifindex):
"""
function takest devid and ifindex of specific device and interface and issues a RESTFUL call to "undo shut" the spec
ified interface on the target device.
:param devid: int or str value of the target device
:param ifindex: int or str value of the target inter... | python | def set_inteface_up(devid, ifindex):
"""
function takest devid and ifindex of specific device and interface and issues a RESTFUL call to "undo shut" the spec
ified interface on the target device.
:param devid: int or str value of the target device
:param ifindex: int or str value of the target inter... | [
"def",
"set_inteface_up",
"(",
"devid",
",",
"ifindex",
")",
":",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"# checks to see if the imc credentials are already available",
"set_imc_creds",
"(",
")",
"set_int_up_url",
"=",
"\"/imcrs/plat/res/device/\"",... | function takest devid and ifindex of specific device and interface and issues a RESTFUL call to "undo shut" the spec
ified interface on the target device.
:param devid: int or str value of the target device
:param ifindex: int or str value of the target interface
:return: HTTP status code 204 with no va... | [
"function",
"takest",
"devid",
"and",
"ifindex",
"of",
"specific",
"device",
"and",
"interface",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"undo",
"shut",
"the",
"spec",
"ified",
"interface",
"on",
"the",
"target",
"device",
".",
":",
"param",
"devid",
... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L620-L639 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | get_vm_host_info | def get_vm_host_info(hostId):
"""
function takes hostId as input to RESTFUL call to HP IMC
:param hostId: int or string of HostId of Hypervisor host
:return:list of dictionatires contraining the VM Host information for the target hypervisor
"""
global r
if auth is None or url is None: # che... | python | def get_vm_host_info(hostId):
"""
function takes hostId as input to RESTFUL call to HP IMC
:param hostId: int or string of HostId of Hypervisor host
:return:list of dictionatires contraining the VM Host information for the target hypervisor
"""
global r
if auth is None or url is None: # che... | [
"def",
"get_vm_host_info",
"(",
"hostId",
")",
":",
"global",
"r",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"# checks to see if the imc credentials are already available",
"set_imc_creds",
"(",
")",
"get_vm_host_info_url",
"=",
"\"/imcrs/vrm/host?host... | function takes hostId as input to RESTFUL call to HP IMC
:param hostId: int or string of HostId of Hypervisor host
:return:list of dictionatires contraining the VM Host information for the target hypervisor | [
"function",
"takes",
"hostId",
"as",
"input",
"to",
"RESTFUL",
"call",
"to",
"HP",
"IMC",
":",
"param",
"hostId",
":",
"int",
"or",
"string",
"of",
"HostId",
"of",
"Hypervisor",
"host",
":",
"return",
":",
"list",
"of",
"dictionatires",
"contraining",
"the... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L642-L664 | train |
HPENetworking/PYHPEIMC | archived/pyhpimc.py | get_trap_definitions | def get_trap_definitions():
"""Takes in no param as input to fetch SNMP TRAP definitions from HP IMC RESTFUL API
:param None
:return: object of type list containing the device asset details
"""
# checks to see if the imc credentials are already available
if auth is None or url is None:
s... | python | def get_trap_definitions():
"""Takes in no param as input to fetch SNMP TRAP definitions from HP IMC RESTFUL API
:param None
:return: object of type list containing the device asset details
"""
# checks to see if the imc credentials are already available
if auth is None or url is None:
s... | [
"def",
"get_trap_definitions",
"(",
")",
":",
"# checks to see if the imc credentials are already available",
"if",
"auth",
"is",
"None",
"or",
"url",
"is",
"None",
":",
"set_imc_creds",
"(",
")",
"global",
"r",
"get_trap_def_url",
"=",
"\"/imcrs/fault/trapDefine/sync/que... | Takes in no param as input to fetch SNMP TRAP definitions from HP IMC RESTFUL API
:param None
:return: object of type list containing the device asset details | [
"Takes",
"in",
"no",
"param",
"as",
"input",
"to",
"fetch",
"SNMP",
"TRAP",
"definitions",
"from",
"HP",
"IMC",
"RESTFUL",
"API",
":",
"param",
"None",
":",
"return",
":",
"object",
"of",
"type",
"list",
"containing",
"the",
"device",
"asset",
"details"
] | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/archived/pyhpimc.py#L741-L760 | train |
housecanary/hc-api-python | housecanary/exceptions.py | RateLimitException.rate_limits | def rate_limits(self):
"""Returns list of rate limit information from the response"""
if not self._rate_limits:
self._rate_limits = utilities.get_rate_limits(self._response)
return self._rate_limits | python | def rate_limits(self):
"""Returns list of rate limit information from the response"""
if not self._rate_limits:
self._rate_limits = utilities.get_rate_limits(self._response)
return self._rate_limits | [
"def",
"rate_limits",
"(",
"self",
")",
":",
"if",
"not",
"self",
".",
"_rate_limits",
":",
"self",
".",
"_rate_limits",
"=",
"utilities",
".",
"get_rate_limits",
"(",
"self",
".",
"_response",
")",
"return",
"self",
".",
"_rate_limits"
] | Returns list of rate limit information from the response | [
"Returns",
"list",
"of",
"rate",
"limit",
"information",
"from",
"the",
"response"
] | 2bb9e2208b34e8617575de45934357ee33b8531c | https://github.com/housecanary/hc-api-python/blob/2bb9e2208b34e8617575de45934357ee33b8531c/housecanary/exceptions.py#L30-L34 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/groups.py | get_custom_views | def get_custom_views(auth, url, name=None):
"""
function requires no input and returns a list of dictionaries of custom views from an HPE
IMC. Optional name argument will return only the specified view.
:param name: str containing the name of the desired custom view
:param auth: requests auth objec... | python | def get_custom_views(auth, url, name=None):
"""
function requires no input and returns a list of dictionaries of custom views from an HPE
IMC. Optional name argument will return only the specified view.
:param name: str containing the name of the desired custom view
:param auth: requests auth objec... | [
"def",
"get_custom_views",
"(",
"auth",
",",
"url",
",",
"name",
"=",
"None",
")",
":",
"get_custom_view_url",
"=",
"None",
"if",
"name",
"is",
"None",
":",
"get_custom_view_url",
"=",
"'/imcrs/plat/res/view/custom?resPrivilegeFilter=false&desc=false'",
"'&total=false'"... | function requires no input and returns a list of dictionaries of custom views from an HPE
IMC. Optional name argument will return only the specified view.
:param name: str containing the name of the desired custom view
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
... | [
"function",
"requires",
"no",
"input",
"and",
"returns",
"a",
"list",
"of",
"dictionaries",
"of",
"custom",
"views",
"from",
"an",
"HPE",
"IMC",
".",
"Optional",
"name",
"argument",
"will",
"return",
"only",
"the",
"specified",
"view",
".",
":",
"param",
"... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/groups.py#L23-L77 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/groups.py | get_custom_view_details | def get_custom_view_details(name, auth, url):
"""
function requires no input and returns a list of dictionaries of custom views from an HPE
IMC. Optional name argument will return only the specified view.
:param name: str containing the name of the desired custom view
:param auth: requests auth obj... | python | def get_custom_view_details(name, auth, url):
"""
function requires no input and returns a list of dictionaries of custom views from an HPE
IMC. Optional name argument will return only the specified view.
:param name: str containing the name of the desired custom view
:param auth: requests auth obj... | [
"def",
"get_custom_view_details",
"(",
"name",
",",
"auth",
",",
"url",
")",
":",
"view_id",
"=",
"get_custom_views",
"(",
"auth",
",",
"url",
",",
"name",
"=",
"name",
")",
"if",
"view_id",
"is",
"None",
":",
"return",
"view_id",
"view_id",
"=",
"get_cu... | function requires no input and returns a list of dictionaries of custom views from an HPE
IMC. Optional name argument will return only the specified view.
:param name: str containing the name of the desired custom view
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
... | [
"function",
"requires",
"no",
"input",
"and",
"returns",
"a",
"list",
"of",
"dictionaries",
"of",
"custom",
"views",
"from",
"an",
"HPE",
"IMC",
".",
"Optional",
"name",
"argument",
"will",
"return",
"only",
"the",
"specified",
"view",
".",
":",
"param",
"... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/groups.py#L80-L127 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/groups.py | create_custom_views | def create_custom_views(auth, url, name=None, upperview=None):
"""
function takes no input and issues a RESTFUL call to get a list of custom views from HPE IMC.
Optional Name input will return only the specified view.
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
... | python | def create_custom_views(auth, url, name=None, upperview=None):
"""
function takes no input and issues a RESTFUL call to get a list of custom views from HPE IMC.
Optional Name input will return only the specified view.
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
... | [
"def",
"create_custom_views",
"(",
"auth",
",",
"url",
",",
"name",
"=",
"None",
",",
"upperview",
"=",
"None",
")",
":",
"create_custom_views_url",
"=",
"'/imcrs/plat/res/view/custom?resPrivilegeFilter=false&desc=false'",
"'&total=false'",
"f_url",
"=",
"url",
"+",
"... | function takes no input and issues a RESTFUL call to get a list of custom views from HPE IMC.
Optional Name input will return only the specified view.
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
:param url: base url of IMC RS interface #usually auth.url from pyhpeim... | [
"function",
"takes",
"no",
"input",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"get",
"a",
"list",
"of",
"custom",
"views",
"from",
"HPE",
"IMC",
".",
"Optional",
"Name",
"input",
"will",
"return",
"only",
"the",
"specified",
"view",
"."
] | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/groups.py#L130-L195 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/groups.py | add_devs_custom_views | def add_devs_custom_views(custom_view_name, dev_list, auth, url):
"""
function takes a list of devIDs from devices discovered in the HPE IMC platform and issues a
RESTFUL call to add the list of devices to a specific custom views from HPE IMC.
:param custom_view_name: str of the target custom view name... | python | def add_devs_custom_views(custom_view_name, dev_list, auth, url):
"""
function takes a list of devIDs from devices discovered in the HPE IMC platform and issues a
RESTFUL call to add the list of devices to a specific custom views from HPE IMC.
:param custom_view_name: str of the target custom view name... | [
"def",
"add_devs_custom_views",
"(",
"custom_view_name",
",",
"dev_list",
",",
"auth",
",",
"url",
")",
":",
"view_id",
"=",
"get_custom_views",
"(",
"auth",
",",
"url",
",",
"name",
"=",
"custom_view_name",
")",
"if",
"view_id",
"is",
"None",
":",
"print",
... | function takes a list of devIDs from devices discovered in the HPE IMC platform and issues a
RESTFUL call to add the list of devices to a specific custom views from HPE IMC.
:param custom_view_name: str of the target custom view name
:param dev_list: list containing the devID of all devices to be containe... | [
"function",
"takes",
"a",
"list",
"of",
"devIDs",
"from",
"devices",
"discovered",
"in",
"the",
"HPE",
"IMC",
"platform",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"add",
"the",
"list",
"of",
"devices",
"to",
"a",
"specific",
"custom",
"views",
"from"... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/groups.py#L200-L241 | train |
HPENetworking/PYHPEIMC | pyhpeimc/plat/groups.py | delete_custom_view | def delete_custom_view(auth, url, name):
"""
function takes input of auth, url, and name and issues a RESTFUL call to delete a specific
of custom views from HPE
IMC.
:param name: string containg the name of the desired custom view
:param auth: requests auth object #usually auth.creds from auth ... | python | def delete_custom_view(auth, url, name):
"""
function takes input of auth, url, and name and issues a RESTFUL call to delete a specific
of custom views from HPE
IMC.
:param name: string containg the name of the desired custom view
:param auth: requests auth object #usually auth.creds from auth ... | [
"def",
"delete_custom_view",
"(",
"auth",
",",
"url",
",",
"name",
")",
":",
"view_id",
"=",
"get_custom_views",
"(",
"auth",
",",
"url",
",",
"name",
")",
"if",
"view_id",
"is",
"None",
":",
"print",
"(",
"\"View \"",
"+",
"name",
"+",
"\" doesn't exist... | function takes input of auth, url, and name and issues a RESTFUL call to delete a specific
of custom views from HPE
IMC.
:param name: string containg the name of the desired custom view
:param auth: requests auth object #usually auth.creds from auth pyhpeimc.auth.class
:param url: base url of IMC ... | [
"function",
"takes",
"input",
"of",
"auth",
"url",
"and",
"name",
"and",
"issues",
"a",
"RESTFUL",
"call",
"to",
"delete",
"a",
"specific",
"of",
"custom",
"views",
"from",
"HPE",
"IMC",
".",
":",
"param",
"name",
":",
"string",
"containg",
"the",
"name"... | 4fba31827573587e03a6233c7db60f188038c8e5 | https://github.com/HPENetworking/PYHPEIMC/blob/4fba31827573587e03a6233c7db60f188038c8e5/pyhpeimc/plat/groups.py#L244-L295 | train |
wilfilho/BingTranslator | BingTranslator/__init__.py | Translator._get_token | def _get_token(self):
"""
Get token for make request. The The data obtained herein are used
in the variable header.
Returns:
To perform the request, receive in return a dictionary
with several keys. With this method only return the tok... | python | def _get_token(self):
"""
Get token for make request. The The data obtained herein are used
in the variable header.
Returns:
To perform the request, receive in return a dictionary
with several keys. With this method only return the tok... | [
"def",
"_get_token",
"(",
"self",
")",
":",
"informations",
"=",
"self",
".",
"_set_format_oauth",
"(",
")",
"oauth_url",
"=",
"\"https://datamarket.accesscontrol.windows.net/v2/OAuth2-13\"",
"token",
"=",
"requests",
".",
"post",
"(",
"oauth_url",
",",
"informations"... | Get token for make request. The The data obtained herein are used
in the variable header.
Returns:
To perform the request, receive in return a dictionary
with several keys. With this method only return the token
as it will use it for subseq... | [
"Get",
"token",
"for",
"make",
"request",
".",
"The",
"The",
"data",
"obtained",
"herein",
"are",
"used",
"in",
"the",
"variable",
"header",
".",
"Returns",
":",
"To",
"perform",
"the",
"request",
"receive",
"in",
"return",
"a",
"dictionary",
"with",
"seve... | 6bada6fe1ac4177cc7dc62ff16dab561ba714534 | https://github.com/wilfilho/BingTranslator/blob/6bada6fe1ac4177cc7dc62ff16dab561ba714534/BingTranslator/__init__.py#L35-L49 | train |
wilfilho/BingTranslator | BingTranslator/__init__.py | Translator._set_format_oauth | def _set_format_oauth(self):
"""
Format and encode dict for make authentication on microsoft
servers.
"""
format_oauth = urllib.parse.urlencode({
'client_id': self._client_id,
'client_secret': self._client_secret,
'scope': self... | python | def _set_format_oauth(self):
"""
Format and encode dict for make authentication on microsoft
servers.
"""
format_oauth = urllib.parse.urlencode({
'client_id': self._client_id,
'client_secret': self._client_secret,
'scope': self... | [
"def",
"_set_format_oauth",
"(",
"self",
")",
":",
"format_oauth",
"=",
"urllib",
".",
"parse",
".",
"urlencode",
"(",
"{",
"'client_id'",
":",
"self",
".",
"_client_id",
",",
"'client_secret'",
":",
"self",
".",
"_client_secret",
",",
"'scope'",
":",
"self"... | Format and encode dict for make authentication on microsoft
servers. | [
"Format",
"and",
"encode",
"dict",
"for",
"make",
"authentication",
"on",
"microsoft",
"servers",
"."
] | 6bada6fe1ac4177cc7dc62ff16dab561ba714534 | https://github.com/wilfilho/BingTranslator/blob/6bada6fe1ac4177cc7dc62ff16dab561ba714534/BingTranslator/__init__.py#L51-L62 | train |
wilfilho/BingTranslator | BingTranslator/__init__.py | Translator._make_request | def _make_request(self, params, translation_url, headers):
"""
This is the final step, where the request is made, the data is
retrieved and returned.
"""
resp = requests.get(translation_url, params=params, headers=headers)
resp.encoding = "UTF-8-sig"
... | python | def _make_request(self, params, translation_url, headers):
"""
This is the final step, where the request is made, the data is
retrieved and returned.
"""
resp = requests.get(translation_url, params=params, headers=headers)
resp.encoding = "UTF-8-sig"
... | [
"def",
"_make_request",
"(",
"self",
",",
"params",
",",
"translation_url",
",",
"headers",
")",
":",
"resp",
"=",
"requests",
".",
"get",
"(",
"translation_url",
",",
"params",
"=",
"params",
",",
"headers",
"=",
"headers",
")",
"resp",
".",
"encoding",
... | This is the final step, where the request is made, the data is
retrieved and returned. | [
"This",
"is",
"the",
"final",
"step",
"where",
"the",
"request",
"is",
"made",
"the",
"data",
"is",
"retrieved",
"and",
"returned",
"."
] | 6bada6fe1ac4177cc7dc62ff16dab561ba714534 | https://github.com/wilfilho/BingTranslator/blob/6bada6fe1ac4177cc7dc62ff16dab561ba714534/BingTranslator/__init__.py#L64-L72 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.