repository_name
stringlengths
7
55
func_path_in_repository
stringlengths
4
223
func_name
stringlengths
1
134
whole_func_string
stringlengths
75
104k
language
stringclasses
1 value
func_code_string
stringlengths
75
104k
func_code_tokens
listlengths
19
28.4k
func_documentation_string
stringlengths
1
46.9k
func_documentation_tokens
listlengths
1
1.97k
split_name
stringclasses
1 value
func_code_url
stringlengths
87
315
sods/ods
pods/datasets.py
movie_body_count
def movie_body_count(data_set='movie_body_count'): """Data set of movies and body count for movies scraped from www.MovieBodyCounts.com created by Simon Garnier and Randy Olson for exploring differences between Python and R.""" if not data_available(data_set): download_data(data_set) from pandas im...
python
def movie_body_count(data_set='movie_body_count'): """Data set of movies and body count for movies scraped from www.MovieBodyCounts.com created by Simon Garnier and Randy Olson for exploring differences between Python and R.""" if not data_available(data_set): download_data(data_set) from pandas im...
[ "def", "movie_body_count", "(", "data_set", "=", "'movie_body_count'", ")", ":", "if", "not", "data_available", "(", "data_set", ")", ":", "download_data", "(", "data_set", ")", "from", "pandas", "import", "read_csv", "dir_path", "=", "os", ".", "path", ".", ...
Data set of movies and body count for movies scraped from www.MovieBodyCounts.com created by Simon Garnier and Randy Olson for exploring differences between Python and R.
[ "Data", "set", "of", "movies", "and", "body", "count", "for", "movies", "scraped", "from", "www", ".", "MovieBodyCounts", ".", "com", "created", "by", "Simon", "Garnier", "and", "Randy", "Olson", "for", "exploring", "differences", "between", "Python", "and", ...
train
https://github.com/sods/ods/blob/3995c659f25a0a640f6009ed7fcc2559ce659b1d/pods/datasets.py#L1306-L1319
sods/ods
pods/datasets.py
movie_body_count_r_classify
def movie_body_count_r_classify(data_set='movie_body_count'): """Data set of movies and body count for movies scraped from www.MovieBodyCounts.com created by Simon Garnier and Randy Olson for exploring differences between Python and R.""" data = movie_body_count()['Y'] import pandas as pd import numpy a...
python
def movie_body_count_r_classify(data_set='movie_body_count'): """Data set of movies and body count for movies scraped from www.MovieBodyCounts.com created by Simon Garnier and Randy Olson for exploring differences between Python and R.""" data = movie_body_count()['Y'] import pandas as pd import numpy a...
[ "def", "movie_body_count_r_classify", "(", "data_set", "=", "'movie_body_count'", ")", ":", "data", "=", "movie_body_count", "(", ")", "[", "'Y'", "]", "import", "pandas", "as", "pd", "import", "numpy", "as", "np", "X", "=", "data", "[", "[", "'Year'", ","...
Data set of movies and body count for movies scraped from www.MovieBodyCounts.com created by Simon Garnier and Randy Olson for exploring differences between Python and R.
[ "Data", "set", "of", "movies", "and", "body", "count", "for", "movies", "scraped", "from", "www", ".", "MovieBodyCounts", ".", "com", "created", "by", "Simon", "Garnier", "and", "Randy", "Olson", "for", "exploring", "differences", "between", "Python", "and", ...
train
https://github.com/sods/ods/blob/3995c659f25a0a640f6009ed7fcc2559ce659b1d/pods/datasets.py#L1321-L1343
sods/ods
pods/datasets.py
movielens100k
def movielens100k(data_set='movielens100k'): """Data set of movie ratings collected by the University of Minnesota and 'cleaned up' for use.""" if not data_available(data_set): import zipfile download_data(data_set) dir_path = os.path.join(data_path, data_set) zip = zipfile.ZipFi...
python
def movielens100k(data_set='movielens100k'): """Data set of movie ratings collected by the University of Minnesota and 'cleaned up' for use.""" if not data_available(data_set): import zipfile download_data(data_set) dir_path = os.path.join(data_path, data_set) zip = zipfile.ZipFi...
[ "def", "movielens100k", "(", "data_set", "=", "'movielens100k'", ")", ":", "if", "not", "data_available", "(", "data_set", ")", ":", "import", "zipfile", "download_data", "(", "data_set", ")", "dir_path", "=", "os", ".", "path", ".", "join", "(", "data_path"...
Data set of movie ratings collected by the University of Minnesota and 'cleaned up' for use.
[ "Data", "set", "of", "movie", "ratings", "collected", "by", "the", "University", "of", "Minnesota", "and", "cleaned", "up", "for", "use", "." ]
train
https://github.com/sods/ods/blob/3995c659f25a0a640f6009ed7fcc2559ce659b1d/pods/datasets.py#L1347-L1368
sods/ods
pods/datasets.py
ceres
def ceres(data_set='ceres'): """Twenty two observations of the Dwarf planet Ceres as observed by Giueseppe Piazzi and published in the September edition of Monatlicher Correspondenz in 1801. These were the measurements used by Gauss to fit a model of the planets orbit through which the planet was recovered three mo...
python
def ceres(data_set='ceres'): """Twenty two observations of the Dwarf planet Ceres as observed by Giueseppe Piazzi and published in the September edition of Monatlicher Correspondenz in 1801. These were the measurements used by Gauss to fit a model of the planets orbit through which the planet was recovered three mo...
[ "def", "ceres", "(", "data_set", "=", "'ceres'", ")", ":", "if", "not", "data_available", "(", "data_set", ")", ":", "download_data", "(", "data_set", ")", "import", "pandas", "as", "pd", "data", "=", "pd", ".", "read_csv", "(", "os", ".", "path", ".",...
Twenty two observations of the Dwarf planet Ceres as observed by Giueseppe Piazzi and published in the September edition of Monatlicher Correspondenz in 1801. These were the measurements used by Gauss to fit a model of the planets orbit through which the planet was recovered three months later.
[ "Twenty", "two", "observations", "of", "the", "Dwarf", "planet", "Ceres", "as", "observed", "by", "Giueseppe", "Piazzi", "and", "published", "in", "the", "September", "edition", "of", "Monatlicher", "Correspondenz", "in", "1801", ".", "These", "were", "the", "...
train
https://github.com/sods/ods/blob/3995c659f25a0a640f6009ed7fcc2559ce659b1d/pods/datasets.py#L1432-L1438
rbuffat/pyepw
pyepw/calc.py
calc_horizontal_infrared_radiation_intensity
def calc_horizontal_infrared_radiation_intensity(weatherdata): """ Estimates the global horizontal infrared radiation intensity based on drybulb, dewpoint and opaque sky cover. References: Walton, G. N. 1983. Thermal Analysis Research Program Reference Manual. NBSSIR 83- 2655. National Bureau of Sta...
python
def calc_horizontal_infrared_radiation_intensity(weatherdata): """ Estimates the global horizontal infrared radiation intensity based on drybulb, dewpoint and opaque sky cover. References: Walton, G. N. 1983. Thermal Analysis Research Program Reference Manual. NBSSIR 83- 2655. National Bureau of Sta...
[ "def", "calc_horizontal_infrared_radiation_intensity", "(", "weatherdata", ")", ":", "temp_drybulb_K", "=", "C2K", "(", "weatherdata", ".", "_dry_bulb_temperature", ")", "temp_dew_K", "=", "C2K", "(", "weatherdata", ".", "dew_point_temperature", ")", "N", "=", "weathe...
Estimates the global horizontal infrared radiation intensity based on drybulb, dewpoint and opaque sky cover. References: Walton, G. N. 1983. Thermal Analysis Research Program Reference Manual. NBSSIR 83- 2655. National Bureau of Standards, p. 21. Clark, G. and C. Allen, "The Estimation of Atmospher...
[ "Estimates", "the", "global", "horizontal", "infrared", "radiation", "intensity", "based", "on", "drybulb", "dewpoint", "and", "opaque", "sky", "cover", ".", "References", ":", "Walton", "G", ".", "N", ".", "1983", ".", "Thermal", "Analysis", "Research", "Prog...
train
https://github.com/rbuffat/pyepw/blob/373d4d3c8386c8d35789f086ac5f6018c2711745/pyepw/calc.py#L10-L25
sods/ods
pods/util.py
download_url
def download_url(url, dir_name='.', save_name=None, store_directory=None, messages=True, suffix=''): """Download a file from a url and save it to disk.""" if sys.version_info>=(3,0): from urllib.parse import quote from urllib.request import urlopen from urllib.error import HTTPError, UR...
python
def download_url(url, dir_name='.', save_name=None, store_directory=None, messages=True, suffix=''): """Download a file from a url and save it to disk.""" if sys.version_info>=(3,0): from urllib.parse import quote from urllib.request import urlopen from urllib.error import HTTPError, UR...
[ "def", "download_url", "(", "url", ",", "dir_name", "=", "'.'", ",", "save_name", "=", "None", ",", "store_directory", "=", "None", ",", "messages", "=", "True", ",", "suffix", "=", "''", ")", ":", "if", "sys", ".", "version_info", ">=", "(", "3", ",...
Download a file from a url and save it to disk.
[ "Download", "a", "file", "from", "a", "url", "and", "save", "it", "to", "disk", "." ]
train
https://github.com/sods/ods/blob/3995c659f25a0a640f6009ed7fcc2559ce659b1d/pods/util.py#L9-L102
CloudGenix/sdk-python
cloudgenix/get_api.py
Get.access_elementusers
def access_elementusers(self, elementuser_id, access_id=None, tenant_id=None, api_version="v2.0"): """ Get all accesses for a particular user **Parameters:**: - **elementuser_id**: Element User ID - **access_id**: (optional) Access ID - **tenant_id**: Tenant ID ...
python
def access_elementusers(self, elementuser_id, access_id=None, tenant_id=None, api_version="v2.0"): """ Get all accesses for a particular user **Parameters:**: - **elementuser_id**: Element User ID - **access_id**: (optional) Access ID - **tenant_id**: Tenant ID ...
[ "def", "access_elementusers", "(", "self", ",", "elementuser_id", ",", "access_id", "=", "None", ",", "tenant_id", "=", "None", ",", "api_version", "=", "\"v2.0\"", ")", ":", "if", "tenant_id", "is", "None", "and", "self", ".", "_parent_class", ".", "tenant_...
Get all accesses for a particular user **Parameters:**: - **elementuser_id**: Element User ID - **access_id**: (optional) Access ID - **tenant_id**: Tenant ID - **api_version**: API version to use (default v2.0) **Returns:** requests.Response object extended ...
[ "Get", "all", "accesses", "for", "a", "particular", "user" ]
train
https://github.com/CloudGenix/sdk-python/blob/1b2f92582b6a19769134914793bfd00e4caa074b/cloudgenix/get_api.py#L55-L88
CloudGenix/sdk-python
cloudgenix/get_api.py
Get.logout
def logout(self, api_version="v2.0"): """ Logout current session **Parameters:**: - **api_version**: API version to use (default v2.0) **Returns:** requests.Response object extended with cgx_status and cgx_content properties. """ cur_ctlr = self._parent_cl...
python
def logout(self, api_version="v2.0"): """ Logout current session **Parameters:**: - **api_version**: API version to use (default v2.0) **Returns:** requests.Response object extended with cgx_status and cgx_content properties. """ cur_ctlr = self._parent_cl...
[ "def", "logout", "(", "self", ",", "api_version", "=", "\"v2.0\"", ")", ":", "cur_ctlr", "=", "self", ".", "_parent_class", ".", "controller", "url", "=", "str", "(", "cur_ctlr", ")", "+", "\"/{}/api/logout\"", ".", "format", "(", "api_version", ")", "api_...
Logout current session **Parameters:**: - **api_version**: API version to use (default v2.0) **Returns:** requests.Response object extended with cgx_status and cgx_content properties.
[ "Logout", "current", "session" ]
train
https://github.com/CloudGenix/sdk-python/blob/1b2f92582b6a19769134914793bfd00e4caa074b/cloudgenix/get_api.py#L1459-L1475
CloudGenix/sdk-python
cloudgenix/interactive.py
Interactive.login
def login(self, email=None, password=None): """ Interactive login using the `cloudgenix.API` object. This function is more robust and handles SAML and MSP accounts. Expects interactive capability. if this is not available, use `cloudenix.API.post.login` directly. **Parameters:**: ...
python
def login(self, email=None, password=None): """ Interactive login using the `cloudgenix.API` object. This function is more robust and handles SAML and MSP accounts. Expects interactive capability. if this is not available, use `cloudenix.API.post.login` directly. **Parameters:**: ...
[ "def", "login", "(", "self", ",", "email", "=", "None", ",", "password", "=", "None", ")", ":", "# if email not given in function, or if first login fails, prompt.", "if", "email", "is", "None", ":", "# If user is not set, pull from cache. If not in cache, prompt.", "if", ...
Interactive login using the `cloudgenix.API` object. This function is more robust and handles SAML and MSP accounts. Expects interactive capability. if this is not available, use `cloudenix.API.post.login` directly. **Parameters:**: - **email**: Email to log in for, will prompt if not entere...
[ "Interactive", "login", "using", "the", "cloudgenix", ".", "API", "object", ".", "This", "function", "is", "more", "robust", "and", "handles", "SAML", "and", "MSP", "accounts", ".", "Expects", "interactive", "capability", ".", "if", "this", "is", "not", "ava...
train
https://github.com/CloudGenix/sdk-python/blob/1b2f92582b6a19769134914793bfd00e4caa074b/cloudgenix/interactive.py#L72-L254
CloudGenix/sdk-python
cloudgenix/interactive.py
Interactive.use_token
def use_token(self, token=None): """ Function to use static AUTH_TOKEN as auth for the constructor instead of full login process. **Parameters:**: - **token**: Static AUTH_TOKEN **Returns:** Bool on success or failure. In addition the function will mutate the `cloudgenix.API...
python
def use_token(self, token=None): """ Function to use static AUTH_TOKEN as auth for the constructor instead of full login process. **Parameters:**: - **token**: Static AUTH_TOKEN **Returns:** Bool on success or failure. In addition the function will mutate the `cloudgenix.API...
[ "def", "use_token", "(", "self", ",", "token", "=", "None", ")", ":", "api_logger", ".", "info", "(", "'use_token function:'", ")", "# check token is a string.", "if", "not", "isinstance", "(", "token", ",", "(", "text_type", ",", "binary_type", ")", ")", ":...
Function to use static AUTH_TOKEN as auth for the constructor instead of full login process. **Parameters:**: - **token**: Static AUTH_TOKEN **Returns:** Bool on success or failure. In addition the function will mutate the `cloudgenix.API` constructor items as needed.
[ "Function", "to", "use", "static", "AUTH_TOKEN", "as", "auth", "for", "the", "constructor", "instead", "of", "full", "login", "process", "." ]
train
https://github.com/CloudGenix/sdk-python/blob/1b2f92582b6a19769134914793bfd00e4caa074b/cloudgenix/interactive.py#L256-L360
CloudGenix/sdk-python
cloudgenix/interactive.py
Interactive.interactive_tenant_update_vars
def interactive_tenant_update_vars(self): """ Function to update the `cloudgenix.API` object with tenant login info. Run after login or client login. **Returns:** Boolean on success/failure, """ api_logger.info('interactive_tenant_update_vars function:') tenant_resp = se...
python
def interactive_tenant_update_vars(self): """ Function to update the `cloudgenix.API` object with tenant login info. Run after login or client login. **Returns:** Boolean on success/failure, """ api_logger.info('interactive_tenant_update_vars function:') tenant_resp = se...
[ "def", "interactive_tenant_update_vars", "(", "self", ")", ":", "api_logger", ".", "info", "(", "'interactive_tenant_update_vars function:'", ")", "tenant_resp", "=", "self", ".", "_parent_class", ".", "get", ".", "tenants", "(", "self", ".", "_parent_class", ".", ...
Function to update the `cloudgenix.API` object with tenant login info. Run after login or client login. **Returns:** Boolean on success/failure,
[ "Function", "to", "update", "the", "cloudgenix", ".", "API", "object", "with", "tenant", "login", "info", ".", "Run", "after", "login", "or", "client", "login", "." ]
train
https://github.com/CloudGenix/sdk-python/blob/1b2f92582b6a19769134914793bfd00e4caa074b/cloudgenix/interactive.py#L362-L396
CloudGenix/sdk-python
cloudgenix/interactive.py
Interactive.interactive_update_profile_vars
def interactive_update_profile_vars(self): """ Function to update the `cloudgenix.API` object with profile info. Run after login or client login. **Returns:** Boolean on success/failure, """ profile = self._parent_class.get.profile() if profile.cgx_status: ...
python
def interactive_update_profile_vars(self): """ Function to update the `cloudgenix.API` object with profile info. Run after login or client login. **Returns:** Boolean on success/failure, """ profile = self._parent_class.get.profile() if profile.cgx_status: ...
[ "def", "interactive_update_profile_vars", "(", "self", ")", ":", "profile", "=", "self", ".", "_parent_class", ".", "get", ".", "profile", "(", ")", "if", "profile", ".", "cgx_status", ":", "# if successful, save tenant id and email info to cli state.", "self", ".", ...
Function to update the `cloudgenix.API` object with profile info. Run after login or client login. **Returns:** Boolean on success/failure,
[ "Function", "to", "update", "the", "cloudgenix", ".", "API", "object", "with", "profile", "info", ".", "Run", "after", "login", "or", "client", "login", "." ]
train
https://github.com/CloudGenix/sdk-python/blob/1b2f92582b6a19769134914793bfd00e4caa074b/cloudgenix/interactive.py#L398-L422
CloudGenix/sdk-python
cloudgenix/interactive.py
Interactive.interactive_client_choice
def interactive_client_choice(self): """ Present a menu for user to select from ESP/MSP managed clients they have permission to. **Returns:** Tuple with (Boolean success, selected client ID). """ clients = self._parent_class.get.clients_t() clients_perms = self._parent_...
python
def interactive_client_choice(self): """ Present a menu for user to select from ESP/MSP managed clients they have permission to. **Returns:** Tuple with (Boolean success, selected client ID). """ clients = self._parent_class.get.clients_t() clients_perms = self._parent_...
[ "def", "interactive_client_choice", "(", "self", ")", ":", "clients", "=", "self", ".", "_parent_class", ".", "get", ".", "clients_t", "(", ")", "clients_perms", "=", "self", ".", "_parent_class", ".", "get", ".", "permissions_clients_d", "(", "self", ".", "...
Present a menu for user to select from ESP/MSP managed clients they have permission to. **Returns:** Tuple with (Boolean success, selected client ID).
[ "Present", "a", "menu", "for", "user", "to", "select", "from", "ESP", "/", "MSP", "managed", "clients", "they", "have", "permission", "to", "." ]
train
https://github.com/CloudGenix/sdk-python/blob/1b2f92582b6a19769134914793bfd00e4caa074b/cloudgenix/interactive.py#L424-L470
CloudGenix/sdk-python
cloudgenix/interactive.py
Interactive.quick_menu
def quick_menu(self, banner, list_line_format, choice_list): """ Function to display a quick menu for user input **Parameters:** - **banner:** Text to display before menu - **list_line_format:** Print'ing string with format spots for index + tuple values - **choic...
python
def quick_menu(self, banner, list_line_format, choice_list): """ Function to display a quick menu for user input **Parameters:** - **banner:** Text to display before menu - **list_line_format:** Print'ing string with format spots for index + tuple values - **choic...
[ "def", "quick_menu", "(", "self", ",", "banner", ",", "list_line_format", ",", "choice_list", ")", ":", "# Setup menu", "invalid", "=", "True", "menu_int", "=", "-", "1", "# loop until valid", "while", "invalid", ":", "print", "(", "banner", ")", "for", "ite...
Function to display a quick menu for user input **Parameters:** - **banner:** Text to display before menu - **list_line_format:** Print'ing string with format spots for index + tuple values - **choice_list:** List of tuple values that you want returned if selected (and printed) ...
[ "Function", "to", "display", "a", "quick", "menu", "for", "user", "input" ]
train
https://github.com/CloudGenix/sdk-python/blob/1b2f92582b6a19769134914793bfd00e4caa074b/cloudgenix/interactive.py#L472-L520
CloudGenix/sdk-python
cloudgenix/interactive.py
Interactive.check_sso_login
def check_sso_login(self, operator_email, request_id): """ Login to the CloudGenix API, and see if SAML SSO has occurred. This function is used to check and see if SAML SSO has succeeded while waiting. **Parameters:** - **operator_email:** String with the username to log in w...
python
def check_sso_login(self, operator_email, request_id): """ Login to the CloudGenix API, and see if SAML SSO has occurred. This function is used to check and see if SAML SSO has succeeded while waiting. **Parameters:** - **operator_email:** String with the username to log in w...
[ "def", "check_sso_login", "(", "self", ",", "operator_email", ",", "request_id", ")", ":", "data", "=", "{", "\"email\"", ":", "operator_email", ",", "\"requestId\"", ":", "request_id", "}", "# If debug is set..", "api_logger", ".", "info", "(", "'check_sso_login ...
Login to the CloudGenix API, and see if SAML SSO has occurred. This function is used to check and see if SAML SSO has succeeded while waiting. **Parameters:** - **operator_email:** String with the username to log in with - **request_id:** String containing the SAML 2.0 Request ID f...
[ "Login", "to", "the", "CloudGenix", "API", "and", "see", "if", "SAML", "SSO", "has", "occurred", ".", "This", "function", "is", "used", "to", "check", "and", "see", "if", "SAML", "SSO", "has", "succeeded", "while", "waiting", "." ]
train
https://github.com/CloudGenix/sdk-python/blob/1b2f92582b6a19769134914793bfd00e4caa074b/cloudgenix/interactive.py#L522-L555
CloudGenix/sdk-python
cloudgenix/interactive.py
Interactive.logout
def logout(self, force=False): """ Interactive logout - ensures uid/tid cleared so `cloudgenix.API` object/ requests.Session can be re-used. **Parameters:**: - **force**: Bool, force logout API call, even when using a static AUTH_TOKEN. **Returns:** Bool of whether the opera...
python
def logout(self, force=False): """ Interactive logout - ensures uid/tid cleared so `cloudgenix.API` object/ requests.Session can be re-used. **Parameters:**: - **force**: Bool, force logout API call, even when using a static AUTH_TOKEN. **Returns:** Bool of whether the opera...
[ "def", "logout", "(", "self", ",", "force", "=", "False", ")", ":", "# Extract requests session for manipulation.", "session", "=", "self", ".", "_parent_class", ".", "expose_session", "(", ")", "# if force = True, or token_session = None/False, call logout API.", "if", "...
Interactive logout - ensures uid/tid cleared so `cloudgenix.API` object/ requests.Session can be re-used. **Parameters:**: - **force**: Bool, force logout API call, even when using a static AUTH_TOKEN. **Returns:** Bool of whether the operation succeeded.
[ "Interactive", "logout", "-", "ensures", "uid", "/", "tid", "cleared", "so", "cloudgenix", ".", "API", "object", "/", "requests", ".", "Session", "can", "be", "re", "-", "used", "." ]
train
https://github.com/CloudGenix/sdk-python/blob/1b2f92582b6a19769134914793bfd00e4caa074b/cloudgenix/interactive.py#L557-L610
CloudGenix/sdk-python
cloudgenix/interactive.py
Interactive.jd
def jd(api_response): """ JD (JSON Dump) function. Meant for quick pretty-printing of CloudGenix Response objects. Example: `jd(cgx_sess.get.sites())` **Returns:** No Return, directly prints all output. """ try: # attempt to print the cgx_content. should alw...
python
def jd(api_response): """ JD (JSON Dump) function. Meant for quick pretty-printing of CloudGenix Response objects. Example: `jd(cgx_sess.get.sites())` **Returns:** No Return, directly prints all output. """ try: # attempt to print the cgx_content. should alw...
[ "def", "jd", "(", "api_response", ")", ":", "try", ":", "# attempt to print the cgx_content. should always be a Dict if it exists.", "print", "(", "json", ".", "dumps", "(", "api_response", ".", "cgx_content", ",", "indent", "=", "4", ")", ")", "except", "(", "Typ...
JD (JSON Dump) function. Meant for quick pretty-printing of CloudGenix Response objects. Example: `jd(cgx_sess.get.sites())` **Returns:** No Return, directly prints all output.
[ "JD", "(", "JSON", "Dump", ")", "function", ".", "Meant", "for", "quick", "pretty", "-", "printing", "of", "CloudGenix", "Response", "objects", "." ]
train
https://github.com/CloudGenix/sdk-python/blob/1b2f92582b6a19769134914793bfd00e4caa074b/cloudgenix/interactive.py#L613-L631
CloudGenix/sdk-python
cloudgenix/interactive.py
Interactive.quick_confirm
def quick_confirm(prompt, default_value): """ Function to display a quick confirmation for user input **Parameters:** - **prompt:** Text to display before confirm - **default_value:** Default value for no entry **Returns:** 'y', 'n', or Default value. """ ...
python
def quick_confirm(prompt, default_value): """ Function to display a quick confirmation for user input **Parameters:** - **prompt:** Text to display before confirm - **default_value:** Default value for no entry **Returns:** 'y', 'n', or Default value. """ ...
[ "def", "quick_confirm", "(", "prompt", ",", "default_value", ")", ":", "valid", "=", "False", "value", "=", "default_value", ".", "lower", "(", ")", "while", "not", "valid", ":", "input_val", "=", "compat_input", "(", "prompt", "+", "\"[{0}]: \"", ".", "fo...
Function to display a quick confirmation for user input **Parameters:** - **prompt:** Text to display before confirm - **default_value:** Default value for no entry **Returns:** 'y', 'n', or Default value.
[ "Function", "to", "display", "a", "quick", "confirmation", "for", "user", "input" ]
train
https://github.com/CloudGenix/sdk-python/blob/1b2f92582b6a19769134914793bfd00e4caa074b/cloudgenix/interactive.py#L634-L666
CloudGenix/sdk-python
cloudgenix/interactive.py
Interactive.quick_int_input
def quick_int_input(prompt, default_value, min_val=1, max_val=30): """ Function to display a quick question for integer user input **Parameters:** - **prompt:** Text / question to display - **default_value:** Default value for no entry - **min_val:** Lowest allowe...
python
def quick_int_input(prompt, default_value, min_val=1, max_val=30): """ Function to display a quick question for integer user input **Parameters:** - **prompt:** Text / question to display - **default_value:** Default value for no entry - **min_val:** Lowest allowe...
[ "def", "quick_int_input", "(", "prompt", ",", "default_value", ",", "min_val", "=", "1", ",", "max_val", "=", "30", ")", ":", "valid", "=", "False", "num_val", "=", "default_value", "while", "not", "valid", ":", "input_val", "=", "compat_input", "(", "prom...
Function to display a quick question for integer user input **Parameters:** - **prompt:** Text / question to display - **default_value:** Default value for no entry - **min_val:** Lowest allowed integer - **max_val:** Highest allowed integer **Returns:** intege...
[ "Function", "to", "display", "a", "quick", "question", "for", "integer", "user", "input" ]
train
https://github.com/CloudGenix/sdk-python/blob/1b2f92582b6a19769134914793bfd00e4caa074b/cloudgenix/interactive.py#L669-L703
CloudGenix/sdk-python
cloudgenix/interactive.py
Interactive.quick_str_input
def quick_str_input(prompt, default_value): """ Function to display a quick question for text input. **Parameters:** - **prompt:** Text / question to display - **default_value:** Default value for no entry **Returns:** text_type() or default_value. """ ...
python
def quick_str_input(prompt, default_value): """ Function to display a quick question for text input. **Parameters:** - **prompt:** Text / question to display - **default_value:** Default value for no entry **Returns:** text_type() or default_value. """ ...
[ "def", "quick_str_input", "(", "prompt", ",", "default_value", ")", ":", "valid", "=", "False", "str_val", "=", "default_value", "while", "not", "valid", ":", "input_val", "=", "raw_input", "(", "prompt", "+", "\"[{0}]: \"", ".", "format", "(", "default_value"...
Function to display a quick question for text input. **Parameters:** - **prompt:** Text / question to display - **default_value:** Default value for no entry **Returns:** text_type() or default_value.
[ "Function", "to", "display", "a", "quick", "question", "for", "text", "input", "." ]
train
https://github.com/CloudGenix/sdk-python/blob/1b2f92582b6a19769134914793bfd00e4caa074b/cloudgenix/interactive.py#L706-L734
diffeo/py-nilsimsa
nilsimsa/__init__.py
compare_digests
def compare_digests(digest_1, digest_2, is_hex_1=True, is_hex_2=True, threshold=None): """ computes bit difference between two nilsisa digests takes params for format, default is hex string but can accept list of 32 length ints Optimized method originally from https://gist.github.com/michelp/6255490...
python
def compare_digests(digest_1, digest_2, is_hex_1=True, is_hex_2=True, threshold=None): """ computes bit difference between two nilsisa digests takes params for format, default is hex string but can accept list of 32 length ints Optimized method originally from https://gist.github.com/michelp/6255490...
[ "def", "compare_digests", "(", "digest_1", ",", "digest_2", ",", "is_hex_1", "=", "True", ",", "is_hex_2", "=", "True", ",", "threshold", "=", "None", ")", ":", "# if we have both hexes use optimized method", "if", "threshold", "is", "not", "None", ":", "thresho...
computes bit difference between two nilsisa digests takes params for format, default is hex string but can accept list of 32 length ints Optimized method originally from https://gist.github.com/michelp/6255490 If `threshold` is set, and the comparison will be less than `threshold`, then bail out ea...
[ "computes", "bit", "difference", "between", "two", "nilsisa", "digests", "takes", "params", "for", "format", "default", "is", "hex", "string", "but", "can", "accept", "list", "of", "32", "length", "ints", "Optimized", "method", "originally", "from", "https", "...
train
https://github.com/diffeo/py-nilsimsa/blob/c652f4bbfd836f7aebf292dcea676cc925ec315a/nilsimsa/__init__.py#L208-L240
diffeo/py-nilsimsa
nilsimsa/__init__.py
Nilsimsa.tran_hash
def tran_hash(self, a, b, c, n): """implementation of the tran53 hash function""" return (((TRAN[(a+n)&255]^TRAN[b]*(n+n+1))+TRAN[(c)^TRAN[n]])&255)
python
def tran_hash(self, a, b, c, n): """implementation of the tran53 hash function""" return (((TRAN[(a+n)&255]^TRAN[b]*(n+n+1))+TRAN[(c)^TRAN[n]])&255)
[ "def", "tran_hash", "(", "self", ",", "a", ",", "b", ",", "c", ",", "n", ")", ":", "return", "(", "(", "(", "TRAN", "[", "(", "a", "+", "n", ")", "&", "255", "]", "^", "TRAN", "[", "b", "]", "*", "(", "n", "+", "n", "+", "1", ")", ")"...
implementation of the tran53 hash function
[ "implementation", "of", "the", "tran53", "hash", "function" ]
train
https://github.com/diffeo/py-nilsimsa/blob/c652f4bbfd836f7aebf292dcea676cc925ec315a/nilsimsa/__init__.py#L99-L101
diffeo/py-nilsimsa
nilsimsa/__init__.py
Nilsimsa.process
def process(self, chunk): """ computes the hash of all of the trigrams in the chunk using a window of length 5 """ self._digest = None if isinstance(chunk, text_type): chunk = chunk.encode('utf-8') # chunk is a byte string for char in chunk: ...
python
def process(self, chunk): """ computes the hash of all of the trigrams in the chunk using a window of length 5 """ self._digest = None if isinstance(chunk, text_type): chunk = chunk.encode('utf-8') # chunk is a byte string for char in chunk: ...
[ "def", "process", "(", "self", ",", "chunk", ")", ":", "self", ".", "_digest", "=", "None", "if", "isinstance", "(", "chunk", ",", "text_type", ")", ":", "chunk", "=", "chunk", ".", "encode", "(", "'utf-8'", ")", "# chunk is a byte string", "for", "char"...
computes the hash of all of the trigrams in the chunk using a window of length 5
[ "computes", "the", "hash", "of", "all", "of", "the", "trigrams", "in", "the", "chunk", "using", "a", "window", "of", "length", "5" ]
train
https://github.com/diffeo/py-nilsimsa/blob/c652f4bbfd836f7aebf292dcea676cc925ec315a/nilsimsa/__init__.py#L103-L138
diffeo/py-nilsimsa
nilsimsa/__init__.py
Nilsimsa.compute_digest
def compute_digest(self): """ using a threshold (mean of the accumulator), computes the nilsimsa digest """ num_trigrams = 0 if self.num_char == 3: # 3 chars -> 1 trigram num_trigrams = 1 elif self.num_char == 4: # 4 chars -> 4 trigrams ...
python
def compute_digest(self): """ using a threshold (mean of the accumulator), computes the nilsimsa digest """ num_trigrams = 0 if self.num_char == 3: # 3 chars -> 1 trigram num_trigrams = 1 elif self.num_char == 4: # 4 chars -> 4 trigrams ...
[ "def", "compute_digest", "(", "self", ")", ":", "num_trigrams", "=", "0", "if", "self", ".", "num_char", "==", "3", ":", "# 3 chars -> 1 trigram", "num_trigrams", "=", "1", "elif", "self", ".", "num_char", "==", "4", ":", "# 4 chars -> 4 trigrams", "num_trigra...
using a threshold (mean of the accumulator), computes the nilsimsa digest
[ "using", "a", "threshold", "(", "mean", "of", "the", "accumulator", ")", "computes", "the", "nilsimsa", "digest" ]
train
https://github.com/diffeo/py-nilsimsa/blob/c652f4bbfd836f7aebf292dcea676cc925ec315a/nilsimsa/__init__.py#L141-L161
diffeo/py-nilsimsa
nilsimsa/__init__.py
Nilsimsa.from_file
def from_file(self, fname): """read in a file and compute digest""" f = open(fname, "rb") data = f.read() self.update(data) f.close()
python
def from_file(self, fname): """read in a file and compute digest""" f = open(fname, "rb") data = f.read() self.update(data) f.close()
[ "def", "from_file", "(", "self", ",", "fname", ")", ":", "f", "=", "open", "(", "fname", ",", "\"rb\"", ")", "data", "=", "f", ".", "read", "(", ")", "self", ".", "update", "(", "data", ")", "f", ".", "close", "(", ")" ]
read in a file and compute digest
[ "read", "in", "a", "file", "and", "compute", "digest" ]
train
https://github.com/diffeo/py-nilsimsa/blob/c652f4bbfd836f7aebf292dcea676cc925ec315a/nilsimsa/__init__.py#L182-L187
diffeo/py-nilsimsa
nilsimsa/__init__.py
Nilsimsa.compare
def compare(self, digest_2, is_hex = False): """ returns difference between the nilsimsa digests between the current object and a given digest """ # convert hex string to list of ints if is_hex: digest_2 = convert_hex_to_ints(digest_2) bit_diff = 0 ...
python
def compare(self, digest_2, is_hex = False): """ returns difference between the nilsimsa digests between the current object and a given digest """ # convert hex string to list of ints if is_hex: digest_2 = convert_hex_to_ints(digest_2) bit_diff = 0 ...
[ "def", "compare", "(", "self", ",", "digest_2", ",", "is_hex", "=", "False", ")", ":", "# convert hex string to list of ints", "if", "is_hex", ":", "digest_2", "=", "convert_hex_to_ints", "(", "digest_2", ")", "bit_diff", "=", "0", "for", "i", "in", "range", ...
returns difference between the nilsimsa digests between the current object and a given digest
[ "returns", "difference", "between", "the", "nilsimsa", "digests", "between", "the", "current", "object", "and", "a", "given", "digest" ]
train
https://github.com/diffeo/py-nilsimsa/blob/c652f4bbfd836f7aebf292dcea676cc925ec315a/nilsimsa/__init__.py#L189-L202
CloudGenix/sdk-python
cloudgenix/post_api.py
Post.login
def login(self, data, api_version="v2.0"): """ Login api **Parameters:**: - **data**: Dictionary containing data to POST as JSON - **api_version**: API version to use (default v2.0) **Returns:** requests.Response object extended with cgx_status and cgx_content pr...
python
def login(self, data, api_version="v2.0"): """ Login api **Parameters:**: - **data**: Dictionary containing data to POST as JSON - **api_version**: API version to use (default v2.0) **Returns:** requests.Response object extended with cgx_status and cgx_content pr...
[ "def", "login", "(", "self", ",", "data", ",", "api_version", "=", "\"v2.0\"", ")", ":", "cur_ctlr", "=", "self", ".", "_parent_class", ".", "controller", "url", "=", "str", "(", "cur_ctlr", ")", "+", "\"/{}/api/login\"", ".", "format", "(", "api_version",...
Login api **Parameters:**: - **data**: Dictionary containing data to POST as JSON - **api_version**: API version to use (default v2.0) **Returns:** requests.Response object extended with cgx_status and cgx_content properties.
[ "Login", "api" ]
train
https://github.com/CloudGenix/sdk-python/blob/1b2f92582b6a19769134914793bfd00e4caa074b/cloudgenix/post_api.py#L1050-L1067
CloudGenix/sdk-python
cloudgenix/post_api.py
Post.tenant_forgot_password_login
def tenant_forgot_password_login(self, data, tenant_id=None, api_version="v2.0"): """ Forgot password API **Parameters:**: - **data**: Dictionary containing data to POST as JSON - **tenant_id**: Tenant ID - **api_version**: API version to use (default v2.0) ...
python
def tenant_forgot_password_login(self, data, tenant_id=None, api_version="v2.0"): """ Forgot password API **Parameters:**: - **data**: Dictionary containing data to POST as JSON - **tenant_id**: Tenant ID - **api_version**: API version to use (default v2.0) ...
[ "def", "tenant_forgot_password_login", "(", "self", ",", "data", ",", "tenant_id", "=", "None", ",", "api_version", "=", "\"v2.0\"", ")", ":", "if", "tenant_id", "is", "None", "and", "self", ".", "_parent_class", ".", "tenant_id", ":", "# Pull tenant_id from par...
Forgot password API **Parameters:**: - **data**: Dictionary containing data to POST as JSON - **tenant_id**: Tenant ID - **api_version**: API version to use (default v2.0) **Returns:** requests.Response object extended with cgx_status and cgx_content properties.
[ "Forgot", "password", "API" ]
train
https://github.com/CloudGenix/sdk-python/blob/1b2f92582b6a19769134914793bfd00e4caa074b/cloudgenix/post_api.py#L3458-L3483
kenjoe41/ghostpaste
ghostpaste/ghostpaste.py
is_valid_file
def is_valid_file(parser,arg): """verify the validity of the given file. Never trust the End-User""" if not os.path.exists(arg): parser.error("File %s not found"%arg) else: return arg
python
def is_valid_file(parser,arg): """verify the validity of the given file. Never trust the End-User""" if not os.path.exists(arg): parser.error("File %s not found"%arg) else: return arg
[ "def", "is_valid_file", "(", "parser", ",", "arg", ")", ":", "if", "not", "os", ".", "path", ".", "exists", "(", "arg", ")", ":", "parser", ".", "error", "(", "\"File %s not found\"", "%", "arg", ")", "else", ":", "return", "arg" ]
verify the validity of the given file. Never trust the End-User
[ "verify", "the", "validity", "of", "the", "given", "file", ".", "Never", "trust", "the", "End", "-", "User" ]
train
https://github.com/kenjoe41/ghostpaste/blob/7811878fb06c661eb0e7fe2cf5601a87aa858d30/ghostpaste/ghostpaste.py#L28-L33
kenjoe41/ghostpaste
ghostpaste/ghostpaste.py
getID
def getID(code_file): """Get the language ID of the input file language""" json_path = ghostfolder+'/'+json_file if os.path.exists(json_path): pass else: download_file('https://ghostbin.com/languages.json') lang = detect_lang(code_file) json_data = json.load(file(json_path))#don't think i need this though ...
python
def getID(code_file): """Get the language ID of the input file language""" json_path = ghostfolder+'/'+json_file if os.path.exists(json_path): pass else: download_file('https://ghostbin.com/languages.json') lang = detect_lang(code_file) json_data = json.load(file(json_path))#don't think i need this though ...
[ "def", "getID", "(", "code_file", ")", ":", "json_path", "=", "ghostfolder", "+", "'/'", "+", "json_file", "if", "os", ".", "path", ".", "exists", "(", "json_path", ")", ":", "pass", "else", ":", "download_file", "(", "'https://ghostbin.com/languages.json'", ...
Get the language ID of the input file language
[ "Get", "the", "language", "ID", "of", "the", "input", "file", "language" ]
train
https://github.com/kenjoe41/ghostpaste/blob/7811878fb06c661eb0e7fe2cf5601a87aa858d30/ghostpaste/ghostpaste.py#L65-L83
kenjoe41/ghostpaste
ghostpaste/ghostpaste.py
detect_lang
def detect_lang(path): """Detect the language used in the given file.""" blob = FileBlob(path, os.getcwd()) if blob.is_text: print('Programming language of the file detected: {0}'.format(blob.language.name)) return blob.language.name else:#images, binary and what-have-you won't be pasted print('File not a tex...
python
def detect_lang(path): """Detect the language used in the given file.""" blob = FileBlob(path, os.getcwd()) if blob.is_text: print('Programming language of the file detected: {0}'.format(blob.language.name)) return blob.language.name else:#images, binary and what-have-you won't be pasted print('File not a tex...
[ "def", "detect_lang", "(", "path", ")", ":", "blob", "=", "FileBlob", "(", "path", ",", "os", ".", "getcwd", "(", ")", ")", "if", "blob", ".", "is_text", ":", "print", "(", "'Programming language of the file detected: {0}'", ".", "format", "(", "blob", "."...
Detect the language used in the given file.
[ "Detect", "the", "language", "used", "in", "the", "given", "file", "." ]
train
https://github.com/kenjoe41/ghostpaste/blob/7811878fb06c661eb0e7fe2cf5601a87aa858d30/ghostpaste/ghostpaste.py#L84-L92
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.set_serial
def set_serial(self, android_serial): """ Specify given *android_serial* device to perform test. You do not have to specify the device when there is only one device connects to the computer. When you need to use multiple devices, do not use this keyword to switch between devices in tes...
python
def set_serial(self, android_serial): """ Specify given *android_serial* device to perform test. You do not have to specify the device when there is only one device connects to the computer. When you need to use multiple devices, do not use this keyword to switch between devices in tes...
[ "def", "set_serial", "(", "self", ",", "android_serial", ")", ":", "self", ".", "adb", "=", "ADB", "(", "android_serial", ")", "self", ".", "device", "=", "Device", "(", "android_serial", ")", "self", ".", "test_helper", "=", "TestHelper", "(", "self", "...
Specify given *android_serial* device to perform test. You do not have to specify the device when there is only one device connects to the computer. When you need to use multiple devices, do not use this keyword to switch between devices in test execution. Using different library name when im...
[ "Specify", "given", "*", "android_serial", "*", "device", "to", "perform", "test", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L59-L82
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.click_at_coordinates
def click_at_coordinates(self, x, y): """ Click at (x,y) coordinates. """ self.device.click(int(x), int(y))
python
def click_at_coordinates(self, x, y): """ Click at (x,y) coordinates. """ self.device.click(int(x), int(y))
[ "def", "click_at_coordinates", "(", "self", ",", "x", ",", "y", ")", ":", "self", ".", "device", ".", "click", "(", "int", "(", "x", ")", ",", "int", "(", "y", ")", ")" ]
Click at (x,y) coordinates.
[ "Click", "at", "(", "x", "y", ")", "coordinates", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L249-L253
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.swipe_by_coordinates
def swipe_by_coordinates(self, sx, sy, ex, ey, steps=10): """ Swipe from (sx, sy) to (ex, ey) with *steps* . Example: | Swipe By Coordinates | 540 | 1340 | 940 | 1340 | | # Swipe from (540, 1340) to (940, 100) with default steps 10 | | Swipe By Coordinates | 540 | 1340 | 940...
python
def swipe_by_coordinates(self, sx, sy, ex, ey, steps=10): """ Swipe from (sx, sy) to (ex, ey) with *steps* . Example: | Swipe By Coordinates | 540 | 1340 | 940 | 1340 | | # Swipe from (540, 1340) to (940, 100) with default steps 10 | | Swipe By Coordinates | 540 | 1340 | 940...
[ "def", "swipe_by_coordinates", "(", "self", ",", "sx", ",", "sy", ",", "ex", ",", "ey", ",", "steps", "=", "10", ")", ":", "self", ".", "device", ".", "swipe", "(", "sx", ",", "sy", ",", "ex", ",", "ey", ",", "steps", ")" ]
Swipe from (sx, sy) to (ex, ey) with *steps* . Example: | Swipe By Coordinates | 540 | 1340 | 940 | 1340 | | # Swipe from (540, 1340) to (940, 100) with default steps 10 | | Swipe By Coordinates | 540 | 1340 | 940 | 1340 | 100 | # Swipe from (540, 1340) to (940, 100) with steps 100 |
[ "Swipe", "from", "(", "sx", "sy", ")", "to", "(", "ex", "ey", ")", "with", "*", "steps", "*", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L255-L263
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.swipe_left
def swipe_left(self, steps=10, *args, **selectors): """ Swipe the UI object with *selectors* from center to left. Example: | Swipe Left | description=Home screen 3 | | # swipe the UI object left | | Swipe Left | 5 |...
python
def swipe_left(self, steps=10, *args, **selectors): """ Swipe the UI object with *selectors* from center to left. Example: | Swipe Left | description=Home screen 3 | | # swipe the UI object left | | Swipe Left | 5 |...
[ "def", "swipe_left", "(", "self", ",", "steps", "=", "10", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "swipe", ".", "left", "(", "steps", "=", "steps", ")" ]
Swipe the UI object with *selectors* from center to left. Example: | Swipe Left | description=Home screen 3 | | # swipe the UI object left | | Swipe Left | 5 | description=Home screen 3 | # swipe the UI object left with steps=5 | ...
[ "Swipe", "the", "UI", "object", "with", "*", "selectors", "*", "from", "center", "to", "left", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L267-L278
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.swipe_right
def swipe_right(self, steps=10, *args, **selectors): """ Swipe the UI object with *selectors* from center to right See `Swipe Left` for more details. """ self.device(**selectors).swipe.right(steps=steps)
python
def swipe_right(self, steps=10, *args, **selectors): """ Swipe the UI object with *selectors* from center to right See `Swipe Left` for more details. """ self.device(**selectors).swipe.right(steps=steps)
[ "def", "swipe_right", "(", "self", ",", "steps", "=", "10", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "swipe", ".", "right", "(", "steps", "=", "steps", ")" ]
Swipe the UI object with *selectors* from center to right See `Swipe Left` for more details.
[ "Swipe", "the", "UI", "object", "with", "*", "selectors", "*", "from", "center", "to", "right" ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L280-L286
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.swipe_top
def swipe_top(self, steps=10, *args, **selectors): """ Swipe the UI object with *selectors* from center to top See `Swipe Left` for more details. """ self.device(**selectors).swipe.up(steps=steps)
python
def swipe_top(self, steps=10, *args, **selectors): """ Swipe the UI object with *selectors* from center to top See `Swipe Left` for more details. """ self.device(**selectors).swipe.up(steps=steps)
[ "def", "swipe_top", "(", "self", ",", "steps", "=", "10", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "swipe", ".", "up", "(", "steps", "=", "steps", ")" ]
Swipe the UI object with *selectors* from center to top See `Swipe Left` for more details.
[ "Swipe", "the", "UI", "object", "with", "*", "selectors", "*", "from", "center", "to", "top" ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L288-L294
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.swipe_bottom
def swipe_bottom(self, steps=10, *args, **selectors): """ Swipe the UI object with *selectors* from center to bottom See `Swipe Left` for more details. """ self.device(**selectors).swipe.down(steps=steps)
python
def swipe_bottom(self, steps=10, *args, **selectors): """ Swipe the UI object with *selectors* from center to bottom See `Swipe Left` for more details. """ self.device(**selectors).swipe.down(steps=steps)
[ "def", "swipe_bottom", "(", "self", ",", "steps", "=", "10", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "swipe", ".", "down", "(", "steps", "=", "steps", ")" ]
Swipe the UI object with *selectors* from center to bottom See `Swipe Left` for more details.
[ "Swipe", "the", "UI", "object", "with", "*", "selectors", "*", "from", "center", "to", "bottom" ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L296-L302
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.drag_by_coordinates
def drag_by_coordinates(self,sx, sy, ex, ey, steps=10): """ Drag from (sx, sy) to (ex, ey) with steps See `Swipe By Coordinates` also. """ self.device.drag(sx, sy, ex, ey, steps)
python
def drag_by_coordinates(self,sx, sy, ex, ey, steps=10): """ Drag from (sx, sy) to (ex, ey) with steps See `Swipe By Coordinates` also. """ self.device.drag(sx, sy, ex, ey, steps)
[ "def", "drag_by_coordinates", "(", "self", ",", "sx", ",", "sy", ",", "ex", ",", "ey", ",", "steps", "=", "10", ")", ":", "self", ".", "device", ".", "drag", "(", "sx", ",", "sy", ",", "ex", ",", "ey", ",", "steps", ")" ]
Drag from (sx, sy) to (ex, ey) with steps See `Swipe By Coordinates` also.
[ "Drag", "from", "(", "sx", "sy", ")", "to", "(", "ex", "ey", ")", "with", "steps" ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L343-L349
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.wait_for_exists
def wait_for_exists(self, timeout=0, *args, **selectors): """ Wait for the object which has *selectors* within the given timeout. Return true if the object *appear* in the given timeout. Else return false. """ return self.device(**selectors).wait.exists(timeout=timeout)
python
def wait_for_exists(self, timeout=0, *args, **selectors): """ Wait for the object which has *selectors* within the given timeout. Return true if the object *appear* in the given timeout. Else return false. """ return self.device(**selectors).wait.exists(timeout=timeout)
[ "def", "wait_for_exists", "(", "self", ",", "timeout", "=", "0", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "return", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "wait", ".", "exists", "(", "timeout", "=", "timeout", "...
Wait for the object which has *selectors* within the given timeout. Return true if the object *appear* in the given timeout. Else return false.
[ "Wait", "for", "the", "object", "which", "has", "*", "selectors", "*", "within", "the", "given", "timeout", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L354-L360
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.wait_until_gone
def wait_until_gone(self, timeout=0, *args, **selectors): """ Wait for the object which has *selectors* within the given timeout. Return true if the object *disappear* in the given timeout. Else return false. """ return self.device(**selectors).wait.gone(timeout=timeout)
python
def wait_until_gone(self, timeout=0, *args, **selectors): """ Wait for the object which has *selectors* within the given timeout. Return true if the object *disappear* in the given timeout. Else return false. """ return self.device(**selectors).wait.gone(timeout=timeout)
[ "def", "wait_until_gone", "(", "self", ",", "timeout", "=", "0", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "return", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "wait", ".", "gone", "(", "timeout", "=", "timeout", ")"...
Wait for the object which has *selectors* within the given timeout. Return true if the object *disappear* in the given timeout. Else return false.
[ "Wait", "for", "the", "object", "which", "has", "*", "selectors", "*", "within", "the", "given", "timeout", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L363-L369
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.fling_forward_horizontally
def fling_forward_horizontally(self, *args, **selectors): """ Perform fling forward (horizontally)action on the object which has *selectors* attributes. Return whether the object can be fling or not. """ return self.device(**selectors).fling.horiz.forward()
python
def fling_forward_horizontally(self, *args, **selectors): """ Perform fling forward (horizontally)action on the object which has *selectors* attributes. Return whether the object can be fling or not. """ return self.device(**selectors).fling.horiz.forward()
[ "def", "fling_forward_horizontally", "(", "self", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "return", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "fling", ".", "horiz", ".", "forward", "(", ")" ]
Perform fling forward (horizontally)action on the object which has *selectors* attributes. Return whether the object can be fling or not.
[ "Perform", "fling", "forward", "(", "horizontally", ")", "action", "on", "the", "object", "which", "has", "*", "selectors", "*", "attributes", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L390-L396
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.fling_backward_horizontally
def fling_backward_horizontally(self, *args, **selectors): """ Perform fling backward (horizontally)action on the object which has *selectors* attributes. Return whether the object can be fling or not. """ return self.device(**selectors).fling.horiz.backward()
python
def fling_backward_horizontally(self, *args, **selectors): """ Perform fling backward (horizontally)action on the object which has *selectors* attributes. Return whether the object can be fling or not. """ return self.device(**selectors).fling.horiz.backward()
[ "def", "fling_backward_horizontally", "(", "self", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "return", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "fling", ".", "horiz", ".", "backward", "(", ")" ]
Perform fling backward (horizontally)action on the object which has *selectors* attributes. Return whether the object can be fling or not.
[ "Perform", "fling", "backward", "(", "horizontally", ")", "action", "on", "the", "object", "which", "has", "*", "selectors", "*", "attributes", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L398-L404
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.fling_forward_vertically
def fling_forward_vertically(self, *args, **selectors): """ Perform fling forward (vertically)action on the object which has *selectors* attributes. Return whether the object can be fling or not. """ return self.device(**selectors).fling.vert.forward()
python
def fling_forward_vertically(self, *args, **selectors): """ Perform fling forward (vertically)action on the object which has *selectors* attributes. Return whether the object can be fling or not. """ return self.device(**selectors).fling.vert.forward()
[ "def", "fling_forward_vertically", "(", "self", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "return", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "fling", ".", "vert", ".", "forward", "(", ")" ]
Perform fling forward (vertically)action on the object which has *selectors* attributes. Return whether the object can be fling or not.
[ "Perform", "fling", "forward", "(", "vertically", ")", "action", "on", "the", "object", "which", "has", "*", "selectors", "*", "attributes", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L406-L412
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.fling_backward_vertically
def fling_backward_vertically(self, *args, **selectors): """ Perform fling backward (vertically)action on the object which has *selectors* attributes. Return whether the object can be fling or not. """ return self.device(**selectors).fling.vert.backward()
python
def fling_backward_vertically(self, *args, **selectors): """ Perform fling backward (vertically)action on the object which has *selectors* attributes. Return whether the object can be fling or not. """ return self.device(**selectors).fling.vert.backward()
[ "def", "fling_backward_vertically", "(", "self", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "return", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "fling", ".", "vert", ".", "backward", "(", ")" ]
Perform fling backward (vertically)action on the object which has *selectors* attributes. Return whether the object can be fling or not.
[ "Perform", "fling", "backward", "(", "vertically", ")", "action", "on", "the", "object", "which", "has", "*", "selectors", "*", "attributes", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L414-L420
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.scroll_to_beginning_horizontally
def scroll_to_beginning_horizontally(self, steps=10, *args,**selectors): """ Scroll the object which has *selectors* attributes to *beginning* horizontally. See `Scroll Forward Vertically` for more details. """ return self.device(**selectors).scroll.horiz.toBeginning(steps=steps...
python
def scroll_to_beginning_horizontally(self, steps=10, *args,**selectors): """ Scroll the object which has *selectors* attributes to *beginning* horizontally. See `Scroll Forward Vertically` for more details. """ return self.device(**selectors).scroll.horiz.toBeginning(steps=steps...
[ "def", "scroll_to_beginning_horizontally", "(", "self", ",", "steps", "=", "10", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "return", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "scroll", ".", "horiz", ".", "toBeginning", ...
Scroll the object which has *selectors* attributes to *beginning* horizontally. See `Scroll Forward Vertically` for more details.
[ "Scroll", "the", "object", "which", "has", "*", "selectors", "*", "attributes", "to", "*", "beginning", "*", "horizontally", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L425-L431
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.scroll_to_end_horizontally
def scroll_to_end_horizontally(self, steps=10, *args, **selectors): """ Scroll the object which has *selectors* attributes to *end* horizontally. See `Scroll Forward Vertically` for more details. """ return self.device(**selectors).scroll.horiz.toEnd(steps=steps)
python
def scroll_to_end_horizontally(self, steps=10, *args, **selectors): """ Scroll the object which has *selectors* attributes to *end* horizontally. See `Scroll Forward Vertically` for more details. """ return self.device(**selectors).scroll.horiz.toEnd(steps=steps)
[ "def", "scroll_to_end_horizontally", "(", "self", ",", "steps", "=", "10", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "return", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "scroll", ".", "horiz", ".", "toEnd", "(", "step...
Scroll the object which has *selectors* attributes to *end* horizontally. See `Scroll Forward Vertically` for more details.
[ "Scroll", "the", "object", "which", "has", "*", "selectors", "*", "attributes", "to", "*", "end", "*", "horizontally", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L433-L439
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.scroll_forward_horizontally
def scroll_forward_horizontally(self, steps=10, *args, **selectors): """ Perform scroll forward (horizontally)action on the object which has *selectors* attributes. Return whether the object can be Scroll or not. See `Scroll Forward Vertically` for more details. """ ret...
python
def scroll_forward_horizontally(self, steps=10, *args, **selectors): """ Perform scroll forward (horizontally)action on the object which has *selectors* attributes. Return whether the object can be Scroll or not. See `Scroll Forward Vertically` for more details. """ ret...
[ "def", "scroll_forward_horizontally", "(", "self", ",", "steps", "=", "10", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "return", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "scroll", ".", "horiz", ".", "forward", "(", "s...
Perform scroll forward (horizontally)action on the object which has *selectors* attributes. Return whether the object can be Scroll or not. See `Scroll Forward Vertically` for more details.
[ "Perform", "scroll", "forward", "(", "horizontally", ")", "action", "on", "the", "object", "which", "has", "*", "selectors", "*", "attributes", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L441-L449
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.scroll_backward_horizontally
def scroll_backward_horizontally(self, steps=10, *args, **selectors): """ Perform scroll backward (horizontally)action on the object which has *selectors* attributes. Return whether the object can be Scroll or not. See `Scroll Forward Vertically` for more details. """ r...
python
def scroll_backward_horizontally(self, steps=10, *args, **selectors): """ Perform scroll backward (horizontally)action on the object which has *selectors* attributes. Return whether the object can be Scroll or not. See `Scroll Forward Vertically` for more details. """ r...
[ "def", "scroll_backward_horizontally", "(", "self", ",", "steps", "=", "10", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "return", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "scroll", ".", "horiz", ".", "backward", "(", ...
Perform scroll backward (horizontally)action on the object which has *selectors* attributes. Return whether the object can be Scroll or not. See `Scroll Forward Vertically` for more details.
[ "Perform", "scroll", "backward", "(", "horizontally", ")", "action", "on", "the", "object", "which", "has", "*", "selectors", "*", "attributes", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L451-L459
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.scroll_to_horizontally
def scroll_to_horizontally(self, obj, *args,**selectors): """ Scroll(horizontally) on the object: obj to specific UI object which has *selectors* attributes appears. Return true if the UI object, else return false. See `Scroll To Vertically` for more details. """ return...
python
def scroll_to_horizontally(self, obj, *args,**selectors): """ Scroll(horizontally) on the object: obj to specific UI object which has *selectors* attributes appears. Return true if the UI object, else return false. See `Scroll To Vertically` for more details. """ return...
[ "def", "scroll_to_horizontally", "(", "self", ",", "obj", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "return", "obj", ".", "scroll", ".", "horiz", ".", "to", "(", "*", "*", "selectors", ")" ]
Scroll(horizontally) on the object: obj to specific UI object which has *selectors* attributes appears. Return true if the UI object, else return false. See `Scroll To Vertically` for more details.
[ "Scroll", "(", "horizontally", ")", "on", "the", "object", ":", "obj", "to", "specific", "UI", "object", "which", "has", "*", "selectors", "*", "attributes", "appears", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L461-L469
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.scroll_to_beginning_vertically
def scroll_to_beginning_vertically(self, steps=10, *args,**selectors): """ Scroll the object which has *selectors* attributes to *beginning* vertically. See `Scroll Forward Vertically` for more details. """ return self.device(**selectors).scroll.vert.toBeginning(steps=steps)
python
def scroll_to_beginning_vertically(self, steps=10, *args,**selectors): """ Scroll the object which has *selectors* attributes to *beginning* vertically. See `Scroll Forward Vertically` for more details. """ return self.device(**selectors).scroll.vert.toBeginning(steps=steps)
[ "def", "scroll_to_beginning_vertically", "(", "self", ",", "steps", "=", "10", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "return", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "scroll", ".", "vert", ".", "toBeginning", "("...
Scroll the object which has *selectors* attributes to *beginning* vertically. See `Scroll Forward Vertically` for more details.
[ "Scroll", "the", "object", "which", "has", "*", "selectors", "*", "attributes", "to", "*", "beginning", "*", "vertically", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L472-L478
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.scroll_to_end_vertically
def scroll_to_end_vertically(self, steps=10, *args, **selectors): """ Scroll the object which has *selectors* attributes to *end* vertically. See `Scroll Forward Vertically` for more details. """ return self.device(**selectors).scroll.vert.toEnd(steps=steps)
python
def scroll_to_end_vertically(self, steps=10, *args, **selectors): """ Scroll the object which has *selectors* attributes to *end* vertically. See `Scroll Forward Vertically` for more details. """ return self.device(**selectors).scroll.vert.toEnd(steps=steps)
[ "def", "scroll_to_end_vertically", "(", "self", ",", "steps", "=", "10", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "return", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "scroll", ".", "vert", ".", "toEnd", "(", "steps",...
Scroll the object which has *selectors* attributes to *end* vertically. See `Scroll Forward Vertically` for more details.
[ "Scroll", "the", "object", "which", "has", "*", "selectors", "*", "attributes", "to", "*", "end", "*", "vertically", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L480-L486
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.scroll_forward_vertically
def scroll_forward_vertically(self, steps=10, *args, **selectors): """ Perform scroll forward (vertically)action on the object which has *selectors* attributes. Return whether the object can be Scroll or not. Example: | ${can_be_scroll} | Scroll Forward Vertically | className=a...
python
def scroll_forward_vertically(self, steps=10, *args, **selectors): """ Perform scroll forward (vertically)action on the object which has *selectors* attributes. Return whether the object can be Scroll or not. Example: | ${can_be_scroll} | Scroll Forward Vertically | className=a...
[ "def", "scroll_forward_vertically", "(", "self", ",", "steps", "=", "10", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "return", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "scroll", ".", "vert", ".", "forward", "(", "step...
Perform scroll forward (vertically)action on the object which has *selectors* attributes. Return whether the object can be Scroll or not. Example: | ${can_be_scroll} | Scroll Forward Vertically | className=android.widget.ListView | | # Scroll forward the...
[ "Perform", "scroll", "forward", "(", "vertically", ")", "action", "on", "the", "object", "which", "has", "*", "selectors", "*", "attributes", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L488-L498
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.scroll_backward_vertically
def scroll_backward_vertically(self, steps=10, *args, **selectors): """ Perform scroll backward (vertically)action on the object which has *selectors* attributes. Return whether the object can be Scroll or not. See `Scroll Forward Vertically` for more details. """ retur...
python
def scroll_backward_vertically(self, steps=10, *args, **selectors): """ Perform scroll backward (vertically)action on the object which has *selectors* attributes. Return whether the object can be Scroll or not. See `Scroll Forward Vertically` for more details. """ retur...
[ "def", "scroll_backward_vertically", "(", "self", ",", "steps", "=", "10", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "return", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "scroll", ".", "vert", ".", "backward", "(", "st...
Perform scroll backward (vertically)action on the object which has *selectors* attributes. Return whether the object can be Scroll or not. See `Scroll Forward Vertically` for more details.
[ "Perform", "scroll", "backward", "(", "vertically", ")", "action", "on", "the", "object", "which", "has", "*", "selectors", "*", "attributes", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L500-L508
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.scroll_to_vertically
def scroll_to_vertically(self, obj, *args,**selectors): """ Scroll(vertically) on the object: obj to specific UI object which has *selectors* attributes appears. Return true if the UI object, else return false. Example: | ${list} | Get Object | className=andro...
python
def scroll_to_vertically(self, obj, *args,**selectors): """ Scroll(vertically) on the object: obj to specific UI object which has *selectors* attributes appears. Return true if the UI object, else return false. Example: | ${list} | Get Object | className=andro...
[ "def", "scroll_to_vertically", "(", "self", ",", "obj", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "return", "obj", ".", "scroll", ".", "vert", ".", "to", "(", "*", "*", "selectors", ")" ]
Scroll(vertically) on the object: obj to specific UI object which has *selectors* attributes appears. Return true if the UI object, else return false. Example: | ${list} | Get Object | className=android.widget.ListView | | # Get the list object | | ${...
[ "Scroll", "(", "vertically", ")", "on", "the", "object", ":", "obj", "to", "specific", "UI", "object", "which", "has", "*", "selectors", "*", "attributes", "appears", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L510-L521
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.screenshot
def screenshot(self, scale=None, quality=None): """ Take a screenshot of device and log in the report with timestamp, scale for screenshot size and quality for screenshot quality default scale=1.0 quality=100 """ output_dir = BuiltIn().get_variable_value('${OUTPUTDIR}') t...
python
def screenshot(self, scale=None, quality=None): """ Take a screenshot of device and log in the report with timestamp, scale for screenshot size and quality for screenshot quality default scale=1.0 quality=100 """ output_dir = BuiltIn().get_variable_value('${OUTPUTDIR}') t...
[ "def", "screenshot", "(", "self", ",", "scale", "=", "None", ",", "quality", "=", "None", ")", ":", "output_dir", "=", "BuiltIn", "(", ")", ".", "get_variable_value", "(", "'${OUTPUTDIR}'", ")", "ts", "=", "time", ".", "time", "(", ")", "st", "=", "d...
Take a screenshot of device and log in the report with timestamp, scale for screenshot size and quality for screenshot quality default scale=1.0 quality=100
[ "Take", "a", "screenshot", "of", "device", "and", "log", "in", "the", "report", "with", "timestamp", "scale", "for", "screenshot", "size", "and", "quality", "for", "screenshot", "quality", "default", "scale", "=", "1", ".", "0", "quality", "=", "100" ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L564-L574
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.register_click_watcher
def register_click_watcher(self, watcher_name, selectors, *condition_list): """ The watcher click on the object which has the *selectors* when conditions match. """ watcher = self.device.watcher(watcher_name) for condition in condition_list: watcher.when(**self.__unic...
python
def register_click_watcher(self, watcher_name, selectors, *condition_list): """ The watcher click on the object which has the *selectors* when conditions match. """ watcher = self.device.watcher(watcher_name) for condition in condition_list: watcher.when(**self.__unic...
[ "def", "register_click_watcher", "(", "self", ",", "watcher_name", ",", "selectors", ",", "*", "condition_list", ")", ":", "watcher", "=", "self", ".", "device", ".", "watcher", "(", "watcher_name", ")", "for", "condition", "in", "condition_list", ":", "watche...
The watcher click on the object which has the *selectors* when conditions match.
[ "The", "watcher", "click", "on", "the", "object", "which", "has", "the", "*", "selectors", "*", "when", "conditions", "match", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L592-L600
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.register_press_watcher
def register_press_watcher(self, watcher_name, press_keys, *condition_list): """ The watcher perform *press_keys* action sequentially when conditions match. """ def unicode_to_list(a_unicode): a_list = list() comma_count = a_unicode.count(',') for coun...
python
def register_press_watcher(self, watcher_name, press_keys, *condition_list): """ The watcher perform *press_keys* action sequentially when conditions match. """ def unicode_to_list(a_unicode): a_list = list() comma_count = a_unicode.count(',') for coun...
[ "def", "register_press_watcher", "(", "self", ",", "watcher_name", ",", "press_keys", ",", "*", "condition_list", ")", ":", "def", "unicode_to_list", "(", "a_unicode", ")", ":", "a_list", "=", "list", "(", ")", "comma_count", "=", "a_unicode", ".", "count", ...
The watcher perform *press_keys* action sequentially when conditions match.
[ "The", "watcher", "perform", "*", "press_keys", "*", "action", "sequentially", "when", "conditions", "match", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L602-L622
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.remove_watchers
def remove_watchers(self, watcher_name = None): """ Remove watcher with *watcher_name* or remove all watchers. """ if watcher_name == None: self.device.watchers.remove() else: self.device.watchers.remove(watcher_name)
python
def remove_watchers(self, watcher_name = None): """ Remove watcher with *watcher_name* or remove all watchers. """ if watcher_name == None: self.device.watchers.remove() else: self.device.watchers.remove(watcher_name)
[ "def", "remove_watchers", "(", "self", ",", "watcher_name", "=", "None", ")", ":", "if", "watcher_name", "==", "None", ":", "self", ".", "device", ".", "watchers", ".", "remove", "(", ")", "else", ":", "self", ".", "device", ".", "watchers", ".", "remo...
Remove watcher with *watcher_name* or remove all watchers.
[ "Remove", "watcher", "with", "*", "watcher_name", "*", "or", "remove", "all", "watchers", "." ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L624-L631
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.get_count
def get_count(self, *args, **selectors): """ Return the count of UI object with *selectors* Example: | ${count} | Get Count | text=Accessibility | # Get the count of UI object text=Accessibility | | ${accessibility_text} | Get Object | text=Ac...
python
def get_count(self, *args, **selectors): """ Return the count of UI object with *selectors* Example: | ${count} | Get Count | text=Accessibility | # Get the count of UI object text=Accessibility | | ${accessibility_text} | Get Object | text=Ac...
[ "def", "get_count", "(", "self", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "obj", "=", "self", ".", "get_object", "(", "*", "*", "selectors", ")", "return", "self", ".", "get_count_of_object", "(", "obj", ")" ]
Return the count of UI object with *selectors* Example: | ${count} | Get Count | text=Accessibility | # Get the count of UI object text=Accessibility | | ${accessibility_text} | Get Object | text=Accessibility | # These two keywords combination ...
[ "Return", "the", "count", "of", "UI", "object", "with", "*", "selectors", "*" ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L670-L682
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.get_info_of_object
def get_info_of_object(self, obj, selector=None): """ return info dictionary of the *obj* The info example: { u'contentDescription': u'', u'checked': False, u'scrollable': True, u'text': u'', u'packageName': u'com.android.launcher', u...
python
def get_info_of_object(self, obj, selector=None): """ return info dictionary of the *obj* The info example: { u'contentDescription': u'', u'checked': False, u'scrollable': True, u'text': u'', u'packageName': u'com.android.launcher', u...
[ "def", "get_info_of_object", "(", "self", ",", "obj", ",", "selector", "=", "None", ")", ":", "if", "selector", ":", "return", "obj", ".", "info", ".", "get", "(", "selector", ")", "else", ":", "return", "obj", ".", "info" ]
return info dictionary of the *obj* The info example: { u'contentDescription': u'', u'checked': False, u'scrollable': True, u'text': u'', u'packageName': u'com.android.launcher', u'selected': False, u'enabled': True, u'bounds': ...
[ "return", "info", "dictionary", "of", "the", "*", "obj", "*", "The", "info", "example", ":", "{", "u", "contentDescription", ":", "u", "u", "checked", ":", "False", "u", "scrollable", ":", "True", "u", "text", ":", "u", "u", "packageName", ":", "u", ...
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L692-L730
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.call
def call(self, obj, method, *args, **selectors): """ This keyword can use object method from original python uiautomator See more details from https://github.com/xiaocong/uiautomator Example: | ${accessibility_text} | Get Object | text=Accessibility | # Get the UI o...
python
def call(self, obj, method, *args, **selectors): """ This keyword can use object method from original python uiautomator See more details from https://github.com/xiaocong/uiautomator Example: | ${accessibility_text} | Get Object | text=Accessibility | # Get the UI o...
[ "def", "call", "(", "self", ",", "obj", ",", "method", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "func", "=", "getattr", "(", "obj", ",", "method", ")", "return", "func", "(", "*", "*", "selectors", ")" ]
This keyword can use object method from original python uiautomator See more details from https://github.com/xiaocong/uiautomator Example: | ${accessibility_text} | Get Object | text=Accessibility | # Get the UI object | | Call | ${ac...
[ "This", "keyword", "can", "use", "object", "method", "from", "original", "python", "uiautomator" ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L758-L770
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.set_text
def set_text(self, input_text, *args, **selectors): """ Set *input_text* to the UI object with *selectors* """ self.device(**selectors).set_text(input_text)
python
def set_text(self, input_text, *args, **selectors): """ Set *input_text* to the UI object with *selectors* """ self.device(**selectors).set_text(input_text)
[ "def", "set_text", "(", "self", ",", "input_text", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "self", ".", "device", "(", "*", "*", "selectors", ")", ".", "set_text", "(", "input_text", ")" ]
Set *input_text* to the UI object with *selectors*
[ "Set", "*", "input_text", "*", "to", "the", "UI", "object", "with", "*", "selectors", "*" ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L772-L776
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.clear_text
def clear_text(self, *args, **selectors): """ Clear text of the UI object with *selectors* """ while True: target = self.device(**selectors) text = target.info['text'] target.clear_text() remain_text = target.info['text'] if te...
python
def clear_text(self, *args, **selectors): """ Clear text of the UI object with *selectors* """ while True: target = self.device(**selectors) text = target.info['text'] target.clear_text() remain_text = target.info['text'] if te...
[ "def", "clear_text", "(", "self", ",", "*", "args", ",", "*", "*", "selectors", ")", ":", "while", "True", ":", "target", "=", "self", ".", "device", "(", "*", "*", "selectors", ")", "text", "=", "target", ".", "info", "[", "'text'", "]", "target",...
Clear text of the UI object with *selectors*
[ "Clear", "text", "of", "the", "UI", "object", "with", "*", "selectors", "*" ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L786-L796
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.open_notification
def open_notification(self): """ Open notification Built in support for Android 4.3 (API level 18) Using swipe action as a workaround for API level lower than 18 """ sdk_version = self.device.info['sdkInt'] if sdk_version < 18: height = self.device....
python
def open_notification(self): """ Open notification Built in support for Android 4.3 (API level 18) Using swipe action as a workaround for API level lower than 18 """ sdk_version = self.device.info['sdkInt'] if sdk_version < 18: height = self.device....
[ "def", "open_notification", "(", "self", ")", ":", "sdk_version", "=", "self", ".", "device", ".", "info", "[", "'sdkInt'", "]", "if", "sdk_version", "<", "18", ":", "height", "=", "self", ".", "device", ".", "info", "[", "'displayHeight'", "]", "self", ...
Open notification Built in support for Android 4.3 (API level 18) Using swipe action as a workaround for API level lower than 18
[ "Open", "notification" ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L798-L812
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.sleep
def sleep(self, time): """ Sleep(no action) for *time* (in millisecond) """ target = 'wait for %s' % str(time) self.device(text=target).wait.exists(timeout=time)
python
def sleep(self, time): """ Sleep(no action) for *time* (in millisecond) """ target = 'wait for %s' % str(time) self.device(text=target).wait.exists(timeout=time)
[ "def", "sleep", "(", "self", ",", "time", ")", ":", "target", "=", "'wait for %s'", "%", "str", "(", "time", ")", "self", ".", "device", "(", "text", "=", "target", ")", ".", "wait", ".", "exists", "(", "timeout", "=", "time", ")" ]
Sleep(no action) for *time* (in millisecond)
[ "Sleep", "(", "no", "action", ")", "for", "*", "time", "*", "(", "in", "millisecond", ")" ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L823-L828
ming060/robotframework-uiautomatorlibrary
uiautomatorlibrary/Mobile.py
Mobile.connect_to_wifi
def connect_to_wifi(self, ssid, password=None): """ [Test Agent] Connect to *ssid* with *password* """ cmd = 'am broadcast -a testagent -e action CONNECT_TO_WIFI -e ssid %s -e password %s' % (ssid, password) self.adb.shell_cmd(cmd)
python
def connect_to_wifi(self, ssid, password=None): """ [Test Agent] Connect to *ssid* with *password* """ cmd = 'am broadcast -a testagent -e action CONNECT_TO_WIFI -e ssid %s -e password %s' % (ssid, password) self.adb.shell_cmd(cmd)
[ "def", "connect_to_wifi", "(", "self", ",", "ssid", ",", "password", "=", "None", ")", ":", "cmd", "=", "'am broadcast -a testagent -e action CONNECT_TO_WIFI -e ssid %s -e password %s'", "%", "(", "ssid", ",", "password", ")", "self", ".", "adb", ".", "shell_cmd", ...
[Test Agent] Connect to *ssid* with *password*
[ "[", "Test", "Agent", "]" ]
train
https://github.com/ming060/robotframework-uiautomatorlibrary/blob/b70202b6a8aa68b4efd9d029c2845407fb33451a/uiautomatorlibrary/Mobile.py#L884-L891
RaRe-Technologies/gensim-simserver
simserver/simserver.py
merge_sims
def merge_sims(oldsims, newsims, clip=None): """Merge two precomputed similarity lists, truncating the result to `clip` most similar items.""" if oldsims is None: result = newsims or [] elif newsims is None: result = oldsims else: result = sorted(oldsims + newsims, key=lambda ite...
python
def merge_sims(oldsims, newsims, clip=None): """Merge two precomputed similarity lists, truncating the result to `clip` most similar items.""" if oldsims is None: result = newsims or [] elif newsims is None: result = oldsims else: result = sorted(oldsims + newsims, key=lambda ite...
[ "def", "merge_sims", "(", "oldsims", ",", "newsims", ",", "clip", "=", "None", ")", ":", "if", "oldsims", "is", "None", ":", "result", "=", "newsims", "or", "[", "]", "elif", "newsims", "is", "None", ":", "result", "=", "oldsims", "else", ":", "resul...
Merge two precomputed similarity lists, truncating the result to `clip` most similar items.
[ "Merge", "two", "precomputed", "similarity", "lists", "truncating", "the", "result", "to", "clip", "most", "similar", "items", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L49-L59
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimIndex.terminate
def terminate(self): """Delete all files created by this index, invalidating `self`. Use with care.""" try: self.id2sims.terminate() except: pass import glob for fname in glob.glob(self.fname + '*'): try: os.remove(fname) ...
python
def terminate(self): """Delete all files created by this index, invalidating `self`. Use with care.""" try: self.id2sims.terminate() except: pass import glob for fname in glob.glob(self.fname + '*'): try: os.remove(fname) ...
[ "def", "terminate", "(", "self", ")", ":", "try", ":", "self", ".", "id2sims", ".", "terminate", "(", ")", "except", ":", "pass", "import", "glob", "for", "fname", "in", "glob", ".", "glob", "(", "self", ".", "fname", "+", "'*'", ")", ":", "try", ...
Delete all files created by this index, invalidating `self`. Use with care.
[ "Delete", "all", "files", "created", "by", "this", "index", "invalidating", "self", ".", "Use", "with", "care", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L120-L137
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimIndex.index_documents
def index_documents(self, fresh_docs, model): """ Update fresh index with new documents (potentially replacing old ones with the same id). `fresh_docs` is a dictionary-like object (=dict, sqlitedict, shelve etc) that maps document_id->document. """ docids = fresh_docs.key...
python
def index_documents(self, fresh_docs, model): """ Update fresh index with new documents (potentially replacing old ones with the same id). `fresh_docs` is a dictionary-like object (=dict, sqlitedict, shelve etc) that maps document_id->document. """ docids = fresh_docs.key...
[ "def", "index_documents", "(", "self", ",", "fresh_docs", ",", "model", ")", ":", "docids", "=", "fresh_docs", ".", "keys", "(", ")", "vectors", "=", "(", "model", ".", "docs2vecs", "(", "fresh_docs", "[", "docid", "]", "for", "docid", "in", "docids", ...
Update fresh index with new documents (potentially replacing old ones with the same id). `fresh_docs` is a dictionary-like object (=dict, sqlitedict, shelve etc) that maps document_id->document.
[ "Update", "fresh", "index", "with", "new", "documents", "(", "potentially", "replacing", "old", "ones", "with", "the", "same", "id", ")", ".", "fresh_docs", "is", "a", "dictionary", "-", "like", "object", "(", "=", "dict", "sqlitedict", "shelve", "etc", ")...
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L140-L151
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimIndex.update_ids
def update_ids(self, docids): """Update id->pos mapping with new document ids.""" logger.info("updating %i id mappings" % len(docids)) for docid in docids: if docid is not None: pos = self.id2pos.get(docid, None) if pos is not None: ...
python
def update_ids(self, docids): """Update id->pos mapping with new document ids.""" logger.info("updating %i id mappings" % len(docids)) for docid in docids: if docid is not None: pos = self.id2pos.get(docid, None) if pos is not None: ...
[ "def", "update_ids", "(", "self", ",", "docids", ")", ":", "logger", ".", "info", "(", "\"updating %i id mappings\"", "%", "len", "(", "docids", ")", ")", "for", "docid", "in", "docids", ":", "if", "docid", "is", "not", "None", ":", "pos", "=", "self",...
Update id->pos mapping with new document ids.
[ "Update", "id", "-", ">", "pos", "mapping", "with", "new", "document", "ids", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L154-L170
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimIndex.update_mappings
def update_mappings(self): """Synchronize id<->position mappings.""" self.pos2id = dict((v, k) for k, v in self.id2pos.iteritems()) assert len(self.pos2id) == len(self.id2pos), "duplicate ids or positions detected"
python
def update_mappings(self): """Synchronize id<->position mappings.""" self.pos2id = dict((v, k) for k, v in self.id2pos.iteritems()) assert len(self.pos2id) == len(self.id2pos), "duplicate ids or positions detected"
[ "def", "update_mappings", "(", "self", ")", ":", "self", ".", "pos2id", "=", "dict", "(", "(", "v", ",", "k", ")", "for", "k", ",", "v", "in", "self", ".", "id2pos", ".", "iteritems", "(", ")", ")", "assert", "len", "(", "self", ".", "pos2id", ...
Synchronize id<->position mappings.
[ "Synchronize", "id<", "-", ">", "position", "mappings", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L173-L176
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimIndex.delete
def delete(self, docids): """Delete documents (specified by their ids) from the index.""" logger.debug("deleting %i documents from %s" % (len(docids), self)) deleted = 0 for docid in docids: try: del self.id2pos[docid] deleted += 1 ...
python
def delete(self, docids): """Delete documents (specified by their ids) from the index.""" logger.debug("deleting %i documents from %s" % (len(docids), self)) deleted = 0 for docid in docids: try: del self.id2pos[docid] deleted += 1 ...
[ "def", "delete", "(", "self", ",", "docids", ")", ":", "logger", ".", "debug", "(", "\"deleting %i documents from %s\"", "%", "(", "len", "(", "docids", ")", ",", "self", ")", ")", "deleted", "=", "0", "for", "docid", "in", "docids", ":", "try", ":", ...
Delete documents (specified by their ids) from the index.
[ "Delete", "documents", "(", "specified", "by", "their", "ids", ")", "from", "the", "index", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L179-L193
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimIndex.sims2scores
def sims2scores(self, sims, eps=1e-7): """Convert raw similarity vector to a list of (docid, similarity) results.""" result = [] if isinstance(sims, numpy.ndarray): sims = abs(sims) # TODO or maybe clip? are opposite vectors "similar" or "dissimilar"?! for pos in numpy.ar...
python
def sims2scores(self, sims, eps=1e-7): """Convert raw similarity vector to a list of (docid, similarity) results.""" result = [] if isinstance(sims, numpy.ndarray): sims = abs(sims) # TODO or maybe clip? are opposite vectors "similar" or "dissimilar"?! for pos in numpy.ar...
[ "def", "sims2scores", "(", "self", ",", "sims", ",", "eps", "=", "1e-7", ")", ":", "result", "=", "[", "]", "if", "isinstance", "(", "sims", ",", "numpy", ".", "ndarray", ")", ":", "sims", "=", "abs", "(", "sims", ")", "# TODO or maybe clip? are opposi...
Convert raw similarity vector to a list of (docid, similarity) results.
[ "Convert", "raw", "similarity", "vector", "to", "a", "list", "of", "(", "docid", "similarity", ")", "results", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L196-L214
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimIndex.vec_by_id
def vec_by_id(self, docid): """Return indexed vector corresponding to document `docid`.""" pos = self.id2pos[docid] return self.qindex.vector_by_id(pos)
python
def vec_by_id(self, docid): """Return indexed vector corresponding to document `docid`.""" pos = self.id2pos[docid] return self.qindex.vector_by_id(pos)
[ "def", "vec_by_id", "(", "self", ",", "docid", ")", ":", "pos", "=", "self", ".", "id2pos", "[", "docid", "]", "return", "self", ".", "qindex", ".", "vector_by_id", "(", "pos", ")" ]
Return indexed vector corresponding to document `docid`.
[ "Return", "indexed", "vector", "corresponding", "to", "document", "docid", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L217-L220
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimIndex.sims_by_id
def sims_by_id(self, docid): """Find the most similar documents to the (already indexed) document with `docid`.""" result = self.id2sims.get(docid, None) if result is None: self.qindex.num_best = self.topsims sims = self.qindex.similarity_by_id(self.id2pos[docid]) ...
python
def sims_by_id(self, docid): """Find the most similar documents to the (already indexed) document with `docid`.""" result = self.id2sims.get(docid, None) if result is None: self.qindex.num_best = self.topsims sims = self.qindex.similarity_by_id(self.id2pos[docid]) ...
[ "def", "sims_by_id", "(", "self", ",", "docid", ")", ":", "result", "=", "self", ".", "id2sims", ".", "get", "(", "docid", ",", "None", ")", "if", "result", "is", "None", ":", "self", ".", "qindex", ".", "num_best", "=", "self", ".", "topsims", "si...
Find the most similar documents to the (already indexed) document with `docid`.
[ "Find", "the", "most", "similar", "documents", "to", "the", "(", "already", "indexed", ")", "document", "with", "docid", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L223-L230
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimIndex.sims_by_vec
def sims_by_vec(self, vec, normalize=None): """ Find the most similar documents to a given vector (=already processed document). """ if normalize is None: normalize = self.qindex.normalize norm, self.qindex.normalize = self.qindex.normalize, normalize # store old valu...
python
def sims_by_vec(self, vec, normalize=None): """ Find the most similar documents to a given vector (=already processed document). """ if normalize is None: normalize = self.qindex.normalize norm, self.qindex.normalize = self.qindex.normalize, normalize # store old valu...
[ "def", "sims_by_vec", "(", "self", ",", "vec", ",", "normalize", "=", "None", ")", ":", "if", "normalize", "is", "None", ":", "normalize", "=", "self", ".", "qindex", ".", "normalize", "norm", ",", "self", ".", "qindex", ".", "normalize", "=", "self", ...
Find the most similar documents to a given vector (=already processed document).
[ "Find", "the", "most", "similar", "documents", "to", "a", "given", "vector", "(", "=", "already", "processed", "document", ")", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L233-L243
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimIndex.merge
def merge(self, other): """Merge documents from the other index. Update precomputed similarities in the process.""" other.qindex.normalize, other.qindex.num_best = False, self.topsims # update precomputed "most similar" for old documents (in case some of # the new docs make it to...
python
def merge(self, other): """Merge documents from the other index. Update precomputed similarities in the process.""" other.qindex.normalize, other.qindex.num_best = False, self.topsims # update precomputed "most similar" for old documents (in case some of # the new docs make it to...
[ "def", "merge", "(", "self", ",", "other", ")", ":", "other", ".", "qindex", ".", "normalize", ",", "other", ".", "qindex", ".", "num_best", "=", "False", ",", "self", ".", "topsims", "# update precomputed \"most similar\" for old documents (in case some of", "# t...
Merge documents from the other index. Update precomputed similarities in the process.
[ "Merge", "documents", "from", "the", "other", "index", ".", "Update", "precomputed", "similarities", "in", "the", "process", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L246-L291
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimModel.doc2vec
def doc2vec(self, doc): """Convert a single SimilarityDocument to vector.""" bow = self.dictionary.doc2bow(doc['tokens']) if self.method == 'lsi': return self.lsi[self.tfidf[bow]] elif self.method == 'lda': return self.lda[bow] elif self.method == 'lda_tfi...
python
def doc2vec(self, doc): """Convert a single SimilarityDocument to vector.""" bow = self.dictionary.doc2bow(doc['tokens']) if self.method == 'lsi': return self.lsi[self.tfidf[bow]] elif self.method == 'lda': return self.lda[bow] elif self.method == 'lda_tfi...
[ "def", "doc2vec", "(", "self", ",", "doc", ")", ":", "bow", "=", "self", ".", "dictionary", ".", "doc2bow", "(", "doc", "[", "'tokens'", "]", ")", "if", "self", ".", "method", "==", "'lsi'", ":", "return", "self", ".", "lsi", "[", "self", ".", "t...
Convert a single SimilarityDocument to vector.
[ "Convert", "a", "single", "SimilarityDocument", "to", "vector", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L385-L395
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimModel.docs2vecs
def docs2vecs(self, docs): """Convert multiple SimilarityDocuments to vectors (batch version of doc2vec).""" bows = (self.dictionary.doc2bow(doc['tokens']) for doc in docs) if self.method == 'lsi': return self.lsi[self.tfidf[bows]] elif self.method == 'lda': retur...
python
def docs2vecs(self, docs): """Convert multiple SimilarityDocuments to vectors (batch version of doc2vec).""" bows = (self.dictionary.doc2bow(doc['tokens']) for doc in docs) if self.method == 'lsi': return self.lsi[self.tfidf[bows]] elif self.method == 'lda': retur...
[ "def", "docs2vecs", "(", "self", ",", "docs", ")", ":", "bows", "=", "(", "self", ".", "dictionary", ".", "doc2bow", "(", "doc", "[", "'tokens'", "]", ")", "for", "doc", "in", "docs", ")", "if", "self", ".", "method", "==", "'lsi'", ":", "return", ...
Convert multiple SimilarityDocuments to vectors (batch version of doc2vec).
[ "Convert", "multiple", "SimilarityDocuments", "to", "vectors", "(", "batch", "version", "of", "doc2vec", ")", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L398-L408
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimServer.flush
def flush(self, save_index=False, save_model=False, clear_buffer=False): """Commit all changes, clear all caches.""" if save_index: if self.fresh_index is not None: self.fresh_index.save(self.location('index_fresh')) if self.opt_index is not None: ...
python
def flush(self, save_index=False, save_model=False, clear_buffer=False): """Commit all changes, clear all caches.""" if save_index: if self.fresh_index is not None: self.fresh_index.save(self.location('index_fresh')) if self.opt_index is not None: ...
[ "def", "flush", "(", "self", ",", "save_index", "=", "False", ",", "save_model", "=", "False", ",", "clear_buffer", "=", "False", ")", ":", "if", "save_index", ":", "if", "self", ".", "fresh_index", "is", "not", "None", ":", "self", ".", "fresh_index", ...
Commit all changes, clear all caches.
[ "Commit", "all", "changes", "clear", "all", "caches", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L481-L499
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimServer.close
def close(self): """Explicitly close open file handles, databases etc.""" try: self.payload.close() except: pass try: self.model.close() except: pass try: self.fresh_index.close() except: pass...
python
def close(self): """Explicitly close open file handles, databases etc.""" try: self.payload.close() except: pass try: self.model.close() except: pass try: self.fresh_index.close() except: pass...
[ "def", "close", "(", "self", ")", ":", "try", ":", "self", ".", "payload", ".", "close", "(", ")", "except", ":", "pass", "try", ":", "self", ".", "model", ".", "close", "(", ")", "except", ":", "pass", "try", ":", "self", ".", "fresh_index", "."...
Explicitly close open file handles, databases etc.
[ "Explicitly", "close", "open", "file", "handles", "databases", "etc", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L502-L523
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimServer.buffer
def buffer(self, documents): """ Add a sequence of documents to be processed (indexed or trained on). Here, the documents are simply collected; real processing is done later, during the `self.index` or `self.train` calls. `buffer` can be called repeatedly; the result is the sam...
python
def buffer(self, documents): """ Add a sequence of documents to be processed (indexed or trained on). Here, the documents are simply collected; real processing is done later, during the `self.index` or `self.train` calls. `buffer` can be called repeatedly; the result is the sam...
[ "def", "buffer", "(", "self", ",", "documents", ")", ":", "logger", ".", "info", "(", "\"adding documents to temporary buffer of %s\"", "%", "(", "self", ")", ")", "for", "doc", "in", "documents", ":", "docid", "=", "doc", "[", "'id'", "]", "# log...
Add a sequence of documents to be processed (indexed or trained on). Here, the documents are simply collected; real processing is done later, during the `self.index` or `self.train` calls. `buffer` can be called repeatedly; the result is the same as if it was called once, with a concat...
[ "Add", "a", "sequence", "of", "documents", "to", "be", "processed", "(", "indexed", "or", "trained", "on", ")", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L530-L552
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimServer.train
def train(self, corpus=None, method='auto', clear_buffer=True, params=None): """ Create an indexing model. Will overwrite the model if it already exists. All indexes become invalid, because documents in them use a now-obsolete representation. The model is trained on documents pr...
python
def train(self, corpus=None, method='auto', clear_buffer=True, params=None): """ Create an indexing model. Will overwrite the model if it already exists. All indexes become invalid, because documents in them use a now-obsolete representation. The model is trained on documents pr...
[ "def", "train", "(", "self", ",", "corpus", "=", "None", ",", "method", "=", "'auto'", ",", "clear_buffer", "=", "True", ",", "params", "=", "None", ")", ":", "if", "corpus", "is", "not", "None", ":", "# use the supplied corpus only (erase existing buffer, if ...
Create an indexing model. Will overwrite the model if it already exists. All indexes become invalid, because documents in them use a now-obsolete representation. The model is trained on documents previously entered via `buffer`, or directly on `corpus`, if specified.
[ "Create", "an", "indexing", "model", ".", "Will", "overwrite", "the", "model", "if", "it", "already", "exists", ".", "All", "indexes", "become", "invalid", "because", "documents", "in", "them", "use", "a", "now", "-", "obsolete", "representation", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L556-L583
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimServer.index
def index(self, corpus=None, clear_buffer=True): """ Permanently index all documents previously added via `buffer`, or directly index documents from `corpus`, if specified. The indexing model must already exist (see `train`) before this function is called. """ if...
python
def index(self, corpus=None, clear_buffer=True): """ Permanently index all documents previously added via `buffer`, or directly index documents from `corpus`, if specified. The indexing model must already exist (see `train`) before this function is called. """ if...
[ "def", "index", "(", "self", ",", "corpus", "=", "None", ",", "clear_buffer", "=", "True", ")", ":", "if", "not", "self", ".", "model", ":", "msg", "=", "'must initialize model for %s before indexing documents'", "%", "self", ".", "basename", "logger", ".", ...
Permanently index all documents previously added via `buffer`, or directly index documents from `corpus`, if specified. The indexing model must already exist (see `train`) before this function is called.
[ "Permanently", "index", "all", "documents", "previously", "added", "via", "buffer", "or", "directly", "index", "documents", "from", "corpus", "if", "specified", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L587-L623
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimServer.optimize
def optimize(self): """ Precompute top similarities for all indexed documents. This speeds up `find_similar` queries by id (but not queries by fulltext). Internally, documents are moved from a fresh index (=no precomputed similarities) to an optimized index (precomputed similari...
python
def optimize(self): """ Precompute top similarities for all indexed documents. This speeds up `find_similar` queries by id (but not queries by fulltext). Internally, documents are moved from a fresh index (=no precomputed similarities) to an optimized index (precomputed similari...
[ "def", "optimize", "(", "self", ")", ":", "if", "self", ".", "fresh_index", "is", "None", ":", "logger", ".", "warning", "(", "\"optimize called but there are no new documents\"", ")", "return", "# nothing to do!", "if", "self", ".", "opt_index", "is", "None", "...
Precompute top similarities for all indexed documents. This speeds up `find_similar` queries by id (but not queries by fulltext). Internally, documents are moved from a fresh index (=no precomputed similarities) to an optimized index (precomputed similarities). Similarity queries always ...
[ "Precompute", "top", "similarities", "for", "all", "indexed", "documents", ".", "This", "speeds", "up", "find_similar", "queries", "by", "id", "(", "but", "not", "queries", "by", "fulltext", ")", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L627-L652
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimServer.drop_index
def drop_index(self, keep_model=True): """Drop all indexed documents. If `keep_model` is False, also dropped the model.""" modelstr = "" if keep_model else "and model " logger.info("deleting similarity index " + modelstr + "from %s" % self.basename) # delete indexes for index in...
python
def drop_index(self, keep_model=True): """Drop all indexed documents. If `keep_model` is False, also dropped the model.""" modelstr = "" if keep_model else "and model " logger.info("deleting similarity index " + modelstr + "from %s" % self.basename) # delete indexes for index in...
[ "def", "drop_index", "(", "self", ",", "keep_model", "=", "True", ")", ":", "modelstr", "=", "\"\"", "if", "keep_model", "else", "\"and model \"", "logger", ".", "info", "(", "\"deleting similarity index \"", "+", "modelstr", "+", "\"from %s\"", "%", "self", "...
Drop all indexed documents. If `keep_model` is False, also dropped the model.
[ "Drop", "all", "indexed", "documents", ".", "If", "keep_model", "is", "False", "also", "dropped", "the", "model", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L656-L691
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimServer.delete
def delete(self, docids): """Delete specified documents from the index.""" logger.info("asked to drop %i documents" % len(docids)) for index in [self.opt_index, self.fresh_index]: if index is not None: index.delete(docids) self.flush(save_index=True)
python
def delete(self, docids): """Delete specified documents from the index.""" logger.info("asked to drop %i documents" % len(docids)) for index in [self.opt_index, self.fresh_index]: if index is not None: index.delete(docids) self.flush(save_index=True)
[ "def", "delete", "(", "self", ",", "docids", ")", ":", "logger", ".", "info", "(", "\"asked to drop %i documents\"", "%", "len", "(", "docids", ")", ")", "for", "index", "in", "[", "self", ".", "opt_index", ",", "self", ".", "fresh_index", "]", ":", "i...
Delete specified documents from the index.
[ "Delete", "specified", "documents", "from", "the", "index", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L695-L701
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimServer.find_similar
def find_similar(self, doc, min_score=0.0, max_results=100): """ Find `max_results` most similar articles in the index, each having similarity score of at least `min_score`. The resulting list may be shorter than `max_results`, in case there are not enough matching documents. `d...
python
def find_similar(self, doc, min_score=0.0, max_results=100): """ Find `max_results` most similar articles in the index, each having similarity score of at least `min_score`. The resulting list may be shorter than `max_results`, in case there are not enough matching documents. `d...
[ "def", "find_similar", "(", "self", ",", "doc", ",", "min_score", "=", "0.0", ",", "max_results", "=", "100", ")", ":", "logger", ".", "debug", "(", "\"received query call with %r\"", "%", "doc", ")", "if", "self", ".", "is_locked", "(", ")", ":", "msg",...
Find `max_results` most similar articles in the index, each having similarity score of at least `min_score`. The resulting list may be shorter than `max_results`, in case there are not enough matching documents. `doc` is either a string (=document id, previously indexed) or a dict conta...
[ "Find", "max_results", "most", "similar", "articles", "in", "the", "index", "each", "having", "similarity", "score", "of", "at", "least", "min_score", ".", "The", "resulting", "list", "may", "be", "shorter", "than", "max_results", "in", "case", "there", "are",...
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L714-L773
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SimServer.keys
def keys(self): """Return ids of all indexed documents.""" result = [] if self.fresh_index is not None: result += self.fresh_index.keys() if self.opt_index is not None: result += self.opt_index.keys() return result
python
def keys(self): """Return ids of all indexed documents.""" result = [] if self.fresh_index is not None: result += self.fresh_index.keys() if self.opt_index is not None: result += self.opt_index.keys() return result
[ "def", "keys", "(", "self", ")", ":", "result", "=", "[", "]", "if", "self", ".", "fresh_index", "is", "not", "None", ":", "result", "+=", "self", ".", "fresh_index", ".", "keys", "(", ")", "if", "self", ".", "opt_index", "is", "not", "None", ":", ...
Return ids of all indexed documents.
[ "Return", "ids", "of", "all", "indexed", "documents", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L799-L806
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SessionServer.check_session
def check_session(self): """ Make sure a session is open. If it's not and autosession is turned on, create a new session automatically. If it's not and autosession is off, raise an exception. """ if self.session is None: if self.autosession: s...
python
def check_session(self): """ Make sure a session is open. If it's not and autosession is turned on, create a new session automatically. If it's not and autosession is off, raise an exception. """ if self.session is None: if self.autosession: s...
[ "def", "check_session", "(", "self", ")", ":", "if", "self", ".", "session", "is", "None", ":", "if", "self", ".", "autosession", ":", "self", ".", "open_session", "(", ")", "else", ":", "msg", "=", "\"must open a session before modifying %s\"", "%", "self",...
Make sure a session is open. If it's not and autosession is turned on, create a new session automatically. If it's not and autosession is off, raise an exception.
[ "Make", "sure", "a", "session", "is", "open", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L876-L888
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SessionServer.open_session
def open_session(self): """ Open a new session to modify this server. You can either call this fnc directly, or turn on autosession which will open/commit sessions for you transparently. """ if self.session is not None: msg = "session already open; commit it ...
python
def open_session(self): """ Open a new session to modify this server. You can either call this fnc directly, or turn on autosession which will open/commit sessions for you transparently. """ if self.session is not None: msg = "session already open; commit it ...
[ "def", "open_session", "(", "self", ")", ":", "if", "self", ".", "session", "is", "not", "None", ":", "msg", "=", "\"session already open; commit it or rollback before opening another one in %s\"", "%", "self", "logger", ".", "error", "(", "msg", ")", "raise", "Ru...
Open a new session to modify this server. You can either call this fnc directly, or turn on autosession which will open/commit sessions for you transparently.
[ "Open", "a", "new", "session", "to", "modify", "this", "server", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L891-L913
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SessionServer.buffer
def buffer(self, *args, **kwargs): """Buffer documents, in the current session""" self.check_session() result = self.session.buffer(*args, **kwargs) return result
python
def buffer(self, *args, **kwargs): """Buffer documents, in the current session""" self.check_session() result = self.session.buffer(*args, **kwargs) return result
[ "def", "buffer", "(", "self", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "self", ".", "check_session", "(", ")", "result", "=", "self", ".", "session", ".", "buffer", "(", "*", "args", ",", "*", "*", "kwargs", ")", "return", "result" ]
Buffer documents, in the current session
[ "Buffer", "documents", "in", "the", "current", "session" ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L916-L920
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SessionServer.index
def index(self, *args, **kwargs): """Index documents, in the current session""" self.check_session() result = self.session.index(*args, **kwargs) if self.autosession: self.commit() return result
python
def index(self, *args, **kwargs): """Index documents, in the current session""" self.check_session() result = self.session.index(*args, **kwargs) if self.autosession: self.commit() return result
[ "def", "index", "(", "self", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "self", ".", "check_session", "(", ")", "result", "=", "self", ".", "session", ".", "index", "(", "*", "args", ",", "*", "*", "kwargs", ")", "if", "self", ".", "a...
Index documents, in the current session
[ "Index", "documents", "in", "the", "current", "session" ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L923-L929
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SessionServer.drop_index
def drop_index(self, keep_model=True): """Drop all indexed documents from the session. Optionally, drop model too.""" self.check_session() result = self.session.drop_index(keep_model) if self.autosession: self.commit() return result
python
def drop_index(self, keep_model=True): """Drop all indexed documents from the session. Optionally, drop model too.""" self.check_session() result = self.session.drop_index(keep_model) if self.autosession: self.commit() return result
[ "def", "drop_index", "(", "self", ",", "keep_model", "=", "True", ")", ":", "self", ".", "check_session", "(", ")", "result", "=", "self", ".", "session", ".", "drop_index", "(", "keep_model", ")", "if", "self", ".", "autosession", ":", "self", ".", "c...
Drop all indexed documents from the session. Optionally, drop model too.
[ "Drop", "all", "indexed", "documents", "from", "the", "session", ".", "Optionally", "drop", "model", "too", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L941-L947
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SessionServer.delete
def delete(self, docids): """Delete documents from the current session.""" self.check_session() result = self.session.delete(docids) if self.autosession: self.commit() return result
python
def delete(self, docids): """Delete documents from the current session.""" self.check_session() result = self.session.delete(docids) if self.autosession: self.commit() return result
[ "def", "delete", "(", "self", ",", "docids", ")", ":", "self", ".", "check_session", "(", ")", "result", "=", "self", ".", "session", ".", "delete", "(", "docids", ")", "if", "self", ".", "autosession", ":", "self", ".", "commit", "(", ")", "return",...
Delete documents from the current session.
[ "Delete", "documents", "from", "the", "current", "session", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L950-L956
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SessionServer.optimize
def optimize(self): """Optimize index for faster by-document-id queries.""" self.check_session() result = self.session.optimize() if self.autosession: self.commit() return result
python
def optimize(self): """Optimize index for faster by-document-id queries.""" self.check_session() result = self.session.optimize() if self.autosession: self.commit() return result
[ "def", "optimize", "(", "self", ")", ":", "self", ".", "check_session", "(", ")", "result", "=", "self", ".", "session", ".", "optimize", "(", ")", "if", "self", ".", "autosession", ":", "self", ".", "commit", "(", ")", "return", "result" ]
Optimize index for faster by-document-id queries.
[ "Optimize", "index", "for", "faster", "by", "-", "document", "-", "id", "queries", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L959-L965
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SessionServer.commit
def commit(self): """Commit changes made by the latest session.""" if self.session is not None: logger.info("committing transaction in %s" % self) tmp = self.stable self.stable, self.session = self.session, None self.istable = 1 - self.istable ...
python
def commit(self): """Commit changes made by the latest session.""" if self.session is not None: logger.info("committing transaction in %s" % self) tmp = self.stable self.stable, self.session = self.session, None self.istable = 1 - self.istable ...
[ "def", "commit", "(", "self", ")", ":", "if", "self", ".", "session", "is", "not", "None", ":", "logger", ".", "info", "(", "\"committing transaction in %s\"", "%", "self", ")", "tmp", "=", "self", ".", "stable", "self", ".", "stable", ",", "self", "."...
Commit changes made by the latest session.
[ "Commit", "changes", "made", "by", "the", "latest", "session", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L973-L984
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SessionServer.rollback
def rollback(self): """Ignore all changes made in the latest session (terminate the session).""" if self.session is not None: logger.info("rolling back transaction in %s" % self) self.session.close() self.session = None self.lock_update.release() e...
python
def rollback(self): """Ignore all changes made in the latest session (terminate the session).""" if self.session is not None: logger.info("rolling back transaction in %s" % self) self.session.close() self.session = None self.lock_update.release() e...
[ "def", "rollback", "(", "self", ")", ":", "if", "self", ".", "session", "is", "not", "None", ":", "logger", ".", "info", "(", "\"rolling back transaction in %s\"", "%", "self", ")", "self", ".", "session", ".", "close", "(", ")", "self", ".", "session", ...
Ignore all changes made in the latest session (terminate the session).
[ "Ignore", "all", "changes", "made", "in", "the", "latest", "session", "(", "terminate", "the", "session", ")", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L987-L995
RaRe-Technologies/gensim-simserver
simserver/simserver.py
SessionServer.set_autosession
def set_autosession(self, value=None): """ Turn autosession (automatic committing after each modification call) on/off. If value is None, only query the current value (don't change anything). """ if value is not None: self.rollback() self.autosession = val...
python
def set_autosession(self, value=None): """ Turn autosession (automatic committing after each modification call) on/off. If value is None, only query the current value (don't change anything). """ if value is not None: self.rollback() self.autosession = val...
[ "def", "set_autosession", "(", "self", ",", "value", "=", "None", ")", ":", "if", "value", "is", "not", "None", ":", "self", ".", "rollback", "(", ")", "self", ".", "autosession", "=", "value", "return", "self", ".", "autosession" ]
Turn autosession (automatic committing after each modification call) on/off. If value is None, only query the current value (don't change anything).
[ "Turn", "autosession", "(", "automatic", "committing", "after", "each", "modification", "call", ")", "on", "/", "off", ".", "If", "value", "is", "None", "only", "query", "the", "current", "value", "(", "don", "t", "change", "anything", ")", "." ]
train
https://github.com/RaRe-Technologies/gensim-simserver/blob/e7e59e836ef6d9da019a8c6b218ef0bdd998b2da/simserver/simserver.py#L998-L1006