repo
stringlengths
7
55
path
stringlengths
4
127
func_name
stringlengths
1
88
original_string
stringlengths
75
19.8k
language
stringclasses
1 value
code
stringlengths
75
19.8k
code_tokens
list
docstring
stringlengths
3
17.3k
docstring_tokens
list
sha
stringlengths
40
40
url
stringlengths
87
242
partition
stringclasses
1 value
happyleavesaoc/aoc-mgz
mgz/recorded_game/__init__.py
RecordedGame._won_in
def _won_in(self): """Get age the game was won in.""" if not self._summary['finished']: return starting_age = self._summary['settings']['starting_age'].lower() if starting_age == 'post imperial': starting_age = 'imperial' ages_reached = set([starting_age])...
python
def _won_in(self): """Get age the game was won in.""" if not self._summary['finished']: return starting_age = self._summary['settings']['starting_age'].lower() if starting_age == 'post imperial': starting_age = 'imperial' ages_reached = set([starting_age])...
[ "def", "_won_in", "(", "self", ")", ":", "if", "not", "self", ".", "_summary", "[", "'finished'", "]", ":", "return", "starting_age", "=", "self", ".", "_summary", "[", "'settings'", "]", "[", "'starting_age'", "]", ".", "lower", "(", ")", "if", "start...
Get age the game was won in.
[ "Get", "age", "the", "game", "was", "won", "in", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/recorded_game/__init__.py#L398-L413
train
happyleavesaoc/aoc-mgz
mgz/recorded_game/__init__.py
RecordedGame._rec_owner_number
def _rec_owner_number(self): """Get rec owner number.""" player = self._header.initial.players[self._header.replay.rec_player] return player.attributes.player_color + 1
python
def _rec_owner_number(self): """Get rec owner number.""" player = self._header.initial.players[self._header.replay.rec_player] return player.attributes.player_color + 1
[ "def", "_rec_owner_number", "(", "self", ")", ":", "player", "=", "self", ".", "_header", ".", "initial", ".", "players", "[", "self", ".", "_header", ".", "replay", ".", "rec_player", "]", "return", "player", ".", "attributes", ".", "player_color", "+", ...
Get rec owner number.
[ "Get", "rec", "owner", "number", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/recorded_game/__init__.py#L415-L418
train
happyleavesaoc/aoc-mgz
mgz/recorded_game/__init__.py
RecordedGame._get_timestamp
def _get_timestamp(self): """Get modification timestamp from rec file.""" filename_date = _find_date(os.path.basename(self._path)) if filename_date: return filename_date
python
def _get_timestamp(self): """Get modification timestamp from rec file.""" filename_date = _find_date(os.path.basename(self._path)) if filename_date: return filename_date
[ "def", "_get_timestamp", "(", "self", ")", ":", "filename_date", "=", "_find_date", "(", "os", ".", "path", ".", "basename", "(", "self", ".", "_path", ")", ")", "if", "filename_date", ":", "return", "filename_date" ]
Get modification timestamp from rec file.
[ "Get", "modification", "timestamp", "from", "rec", "file", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/recorded_game/__init__.py#L427-L431
train
happyleavesaoc/aoc-mgz
mgz/recorded_game/__init__.py
RecordedGame._set_winning_team
def _set_winning_team(self): """Mark the winning team.""" if not self._summary['finished']: return for team in self._summary['diplomacy']['teams']: team['winner'] = False for player_number in team['player_numbers']: for player in self._summary[...
python
def _set_winning_team(self): """Mark the winning team.""" if not self._summary['finished']: return for team in self._summary['diplomacy']['teams']: team['winner'] = False for player_number in team['player_numbers']: for player in self._summary[...
[ "def", "_set_winning_team", "(", "self", ")", ":", "if", "not", "self", ".", "_summary", "[", "'finished'", "]", ":", "return", "for", "team", "in", "self", ".", "_summary", "[", "'diplomacy'", "]", "[", "'teams'", "]", ":", "team", "[", "'winner'", "]...
Mark the winning team.
[ "Mark", "the", "winning", "team", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/recorded_game/__init__.py#L444-L454
train
happyleavesaoc/aoc-mgz
mgz/recorded_game/__init__.py
RecordedGame._map_hash
def _map_hash(self): """Compute a map hash based on a combination of map attributes. - Elevation - Map name - Player names, colors, and civilizations """ elevation_bytes = bytes([tile.elevation for tile in self._header.map_info.tile]) map_name_bytes = self._map.n...
python
def _map_hash(self): """Compute a map hash based on a combination of map attributes. - Elevation - Map name - Player names, colors, and civilizations """ elevation_bytes = bytes([tile.elevation for tile in self._header.map_info.tile]) map_name_bytes = self._map.n...
[ "def", "_map_hash", "(", "self", ")", ":", "elevation_bytes", "=", "bytes", "(", "[", "tile", ".", "elevation", "for", "tile", "in", "self", ".", "_header", ".", "map_info", ".", "tile", "]", ")", "map_name_bytes", "=", "self", ".", "_map", ".", "name"...
Compute a map hash based on a combination of map attributes. - Elevation - Map name - Player names, colors, and civilizations
[ "Compute", "a", "map", "hash", "based", "on", "a", "combination", "of", "map", "attributes", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/recorded_game/__init__.py#L456-L470
train
kstaniek/condoor
condoor/device.py
Device.device_info
def device_info(self): """Return device info dict.""" return { 'family': self.family, 'platform': self.platform, 'os_type': self.os_type, 'os_version': self.os_version, 'udi': self.udi, # TODO(klstanie): add property to make driver ...
python
def device_info(self): """Return device info dict.""" return { 'family': self.family, 'platform': self.platform, 'os_type': self.os_type, 'os_version': self.os_version, 'udi': self.udi, # TODO(klstanie): add property to make driver ...
[ "def", "device_info", "(", "self", ")", ":", "return", "{", "'family'", ":", "self", ".", "family", ",", "'platform'", ":", "self", ".", "platform", ",", "'os_type'", ":", "self", ".", "os_type", ",", "'os_version'", ":", "self", ".", "os_version", ",", ...
Return device info dict.
[ "Return", "device", "info", "dict", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L65-L80
train
kstaniek/condoor
condoor/device.py
Device.clear_info
def clear_info(self): """Clear the device info.""" self._version_text = None self._inventory_text = None self._users_text = None self.os_version = None self.os_type = None self.family = None self.platform = None self.udi = None # self.is_co...
python
def clear_info(self): """Clear the device info.""" self._version_text = None self._inventory_text = None self._users_text = None self.os_version = None self.os_type = None self.family = None self.platform = None self.udi = None # self.is_co...
[ "def", "clear_info", "(", "self", ")", ":", "self", ".", "_version_text", "=", "None", "self", ".", "_inventory_text", "=", "None", "self", ".", "_users_text", "=", "None", "self", ".", "os_version", "=", "None", "self", ".", "os_type", "=", "None", "sel...
Clear the device info.
[ "Clear", "the", "device", "info", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L92-L104
train
kstaniek/condoor
condoor/device.py
Device.disconnect
def disconnect(self): """Disconnect the device.""" self.chain.connection.log("Disconnecting: {}".format(self)) if self.connected: if self.protocol: if self.is_console: while self.mode != 'global': try: ...
python
def disconnect(self): """Disconnect the device.""" self.chain.connection.log("Disconnecting: {}".format(self)) if self.connected: if self.protocol: if self.is_console: while self.mode != 'global': try: ...
[ "def", "disconnect", "(", "self", ")", ":", "self", ".", "chain", ".", "connection", ".", "log", "(", "\"Disconnecting: {}\"", ".", "format", "(", "self", ")", ")", "if", "self", ".", "connected", ":", "if", "self", ".", "protocol", ":", "if", "self", ...
Disconnect the device.
[ "Disconnect", "the", "device", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L182-L198
train
kstaniek/condoor
condoor/device.py
Device.make_driver
def make_driver(self, driver_name='generic'): """Make driver factory function.""" module_str = 'condoor.drivers.%s' % driver_name try: __import__(module_str) module = sys.modules[module_str] driver_class = getattr(module, 'Driver') except ImportError a...
python
def make_driver(self, driver_name='generic'): """Make driver factory function.""" module_str = 'condoor.drivers.%s' % driver_name try: __import__(module_str) module = sys.modules[module_str] driver_class = getattr(module, 'Driver') except ImportError a...
[ "def", "make_driver", "(", "self", ",", "driver_name", "=", "'generic'", ")", ":", "module_str", "=", "'condoor.drivers.%s'", "%", "driver_name", "try", ":", "__import__", "(", "module_str", ")", "module", "=", "sys", ".", "modules", "[", "module_str", "]", ...
Make driver factory function.
[ "Make", "driver", "factory", "function", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L310-L324
train
kstaniek/condoor
condoor/device.py
Device.version_text
def version_text(self): """Return version text and collect if not collected.""" if self._version_text is None: self.chain.connection.log("Collecting version information") self._version_text = self.driver.get_version_text() if self._version_text: self.c...
python
def version_text(self): """Return version text and collect if not collected.""" if self._version_text is None: self.chain.connection.log("Collecting version information") self._version_text = self.driver.get_version_text() if self._version_text: self.c...
[ "def", "version_text", "(", "self", ")", ":", "if", "self", ".", "_version_text", "is", "None", ":", "self", ".", "chain", ".", "connection", ".", "log", "(", "\"Collecting version information\"", ")", "self", ".", "_version_text", "=", "self", ".", "driver"...
Return version text and collect if not collected.
[ "Return", "version", "text", "and", "collect", "if", "not", "collected", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L331-L341
train
kstaniek/condoor
condoor/device.py
Device.hostname_text
def hostname_text(self): """Return hostname text and collect if not collected.""" if self._hostname_text is None: self.chain.connection.log("Collecting hostname information") self._hostname_text = self.driver.get_hostname_text() if self._hostname_text: ...
python
def hostname_text(self): """Return hostname text and collect if not collected.""" if self._hostname_text is None: self.chain.connection.log("Collecting hostname information") self._hostname_text = self.driver.get_hostname_text() if self._hostname_text: ...
[ "def", "hostname_text", "(", "self", ")", ":", "if", "self", ".", "_hostname_text", "is", "None", ":", "self", ".", "chain", ".", "connection", ".", "log", "(", "\"Collecting hostname information\"", ")", "self", ".", "_hostname_text", "=", "self", ".", "dri...
Return hostname text and collect if not collected.
[ "Return", "hostname", "text", "and", "collect", "if", "not", "collected", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L344-L353
train
kstaniek/condoor
condoor/device.py
Device.inventory_text
def inventory_text(self): """Return inventory information and collect if not available.""" if self._inventory_text is None: self.chain.connection.log("Collecting inventory information") self._inventory_text = self.driver.get_inventory_text() if self._inventory_text: ...
python
def inventory_text(self): """Return inventory information and collect if not available.""" if self._inventory_text is None: self.chain.connection.log("Collecting inventory information") self._inventory_text = self.driver.get_inventory_text() if self._inventory_text: ...
[ "def", "inventory_text", "(", "self", ")", ":", "if", "self", ".", "_inventory_text", "is", "None", ":", "self", ".", "chain", ".", "connection", ".", "log", "(", "\"Collecting inventory information\"", ")", "self", ".", "_inventory_text", "=", "self", ".", ...
Return inventory information and collect if not available.
[ "Return", "inventory", "information", "and", "collect", "if", "not", "available", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L356-L365
train
kstaniek/condoor
condoor/device.py
Device.users_text
def users_text(self): """Return connected users information and collect if not available.""" if self._users_text is None: self.chain.connection.log("Getting connected users text") self._users_text = self.driver.get_users_text() if self._users_text: sel...
python
def users_text(self): """Return connected users information and collect if not available.""" if self._users_text is None: self.chain.connection.log("Getting connected users text") self._users_text = self.driver.get_users_text() if self._users_text: sel...
[ "def", "users_text", "(", "self", ")", ":", "if", "self", ".", "_users_text", "is", "None", ":", "self", ".", "chain", ".", "connection", ".", "log", "(", "\"Getting connected users text\"", ")", "self", ".", "_users_text", "=", "self", ".", "driver", ".",...
Return connected users information and collect if not available.
[ "Return", "connected", "users", "information", "and", "collect", "if", "not", "available", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L368-L377
train
kstaniek/condoor
condoor/device.py
Device.get_protocol_name
def get_protocol_name(self): """Provide protocol name based on node_info.""" protocol_name = self.node_info.protocol if self.is_console: protocol_name += '_console' return protocol_name
python
def get_protocol_name(self): """Provide protocol name based on node_info.""" protocol_name = self.node_info.protocol if self.is_console: protocol_name += '_console' return protocol_name
[ "def", "get_protocol_name", "(", "self", ")", ":", "protocol_name", "=", "self", ".", "node_info", ".", "protocol", "if", "self", ".", "is_console", ":", "protocol_name", "+=", "'_console'", "return", "protocol_name" ]
Provide protocol name based on node_info.
[ "Provide", "protocol", "name", "based", "on", "node_info", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L379-L384
train
kstaniek/condoor
condoor/device.py
Device.update_udi
def update_udi(self): """Update udi.""" self.chain.connection.log("Parsing inventory") # TODO: Maybe validate if udi is complete self.udi = parse_inventory(self.inventory_text)
python
def update_udi(self): """Update udi.""" self.chain.connection.log("Parsing inventory") # TODO: Maybe validate if udi is complete self.udi = parse_inventory(self.inventory_text)
[ "def", "update_udi", "(", "self", ")", ":", "self", ".", "chain", ".", "connection", ".", "log", "(", "\"Parsing inventory\"", ")", "self", ".", "udi", "=", "parse_inventory", "(", "self", ".", "inventory_text", ")" ]
Update udi.
[ "Update", "udi", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L391-L395
train
kstaniek/condoor
condoor/device.py
Device.update_config_mode
def update_config_mode(self, prompt=None): """Update config mode.""" # TODO: Fix the conflict with config mode attribute at connection if prompt: self.mode = self.driver.update_config_mode(prompt) else: self.mode = self.driver.update_config_mode(self.prompt)
python
def update_config_mode(self, prompt=None): """Update config mode.""" # TODO: Fix the conflict with config mode attribute at connection if prompt: self.mode = self.driver.update_config_mode(prompt) else: self.mode = self.driver.update_config_mode(self.prompt)
[ "def", "update_config_mode", "(", "self", ",", "prompt", "=", "None", ")", ":", "if", "prompt", ":", "self", ".", "mode", "=", "self", ".", "driver", ".", "update_config_mode", "(", "prompt", ")", "else", ":", "self", ".", "mode", "=", "self", ".", "...
Update config mode.
[ "Update", "config", "mode", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L397-L403
train
kstaniek/condoor
condoor/device.py
Device.update_driver
def update_driver(self, prompt): """Update driver based on new prompt.""" prompt = prompt.lstrip() self.chain.connection.log("({}): Prompt: '{}'".format(self.driver.platform, prompt)) self.prompt = prompt driver_name = self.driver.update_driver(prompt) if driver_name is N...
python
def update_driver(self, prompt): """Update driver based on new prompt.""" prompt = prompt.lstrip() self.chain.connection.log("({}): Prompt: '{}'".format(self.driver.platform, prompt)) self.prompt = prompt driver_name = self.driver.update_driver(prompt) if driver_name is N...
[ "def", "update_driver", "(", "self", ",", "prompt", ")", ":", "prompt", "=", "prompt", ".", "lstrip", "(", ")", "self", ".", "chain", ".", "connection", ".", "log", "(", "\"({}): Prompt: '{}'\"", ".", "format", "(", "self", ".", "driver", ".", "platform"...
Update driver based on new prompt.
[ "Update", "driver", "based", "on", "new", "prompt", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L409-L418
train
kstaniek/condoor
condoor/device.py
Device.prepare_terminal_session
def prepare_terminal_session(self): """Send commands to prepare terminal session configuration.""" for cmd in self.driver.prepare_terminal_session: try: self.send(cmd) except CommandSyntaxError: self.chain.connection.log("Command not supported or n...
python
def prepare_terminal_session(self): """Send commands to prepare terminal session configuration.""" for cmd in self.driver.prepare_terminal_session: try: self.send(cmd) except CommandSyntaxError: self.chain.connection.log("Command not supported or n...
[ "def", "prepare_terminal_session", "(", "self", ")", ":", "for", "cmd", "in", "self", ".", "driver", ".", "prepare_terminal_session", ":", "try", ":", "self", ".", "send", "(", "cmd", ")", "except", "CommandSyntaxError", ":", "self", ".", "chain", ".", "co...
Send commands to prepare terminal session configuration.
[ "Send", "commands", "to", "prepare", "terminal", "session", "configuration", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L420-L427
train
kstaniek/condoor
condoor/device.py
Device.update_os_type
def update_os_type(self): """Update os_type attribute.""" self.chain.connection.log("Detecting os type") os_type = self.driver.get_os_type(self.version_text) if os_type: self.chain.connection.log("SW Type: {}".format(os_type)) self.os_type = os_type
python
def update_os_type(self): """Update os_type attribute.""" self.chain.connection.log("Detecting os type") os_type = self.driver.get_os_type(self.version_text) if os_type: self.chain.connection.log("SW Type: {}".format(os_type)) self.os_type = os_type
[ "def", "update_os_type", "(", "self", ")", ":", "self", ".", "chain", ".", "connection", ".", "log", "(", "\"Detecting os type\"", ")", "os_type", "=", "self", ".", "driver", ".", "get_os_type", "(", "self", ".", "version_text", ")", "if", "os_type", ":", ...
Update os_type attribute.
[ "Update", "os_type", "attribute", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L429-L435
train
kstaniek/condoor
condoor/device.py
Device.update_os_version
def update_os_version(self): """Update os_version attribute.""" self.chain.connection.log("Detecting os version") os_version = self.driver.get_os_version(self.version_text) if os_version: self.chain.connection.log("SW Version: {}".format(os_version)) self.os_versi...
python
def update_os_version(self): """Update os_version attribute.""" self.chain.connection.log("Detecting os version") os_version = self.driver.get_os_version(self.version_text) if os_version: self.chain.connection.log("SW Version: {}".format(os_version)) self.os_versi...
[ "def", "update_os_version", "(", "self", ")", ":", "self", ".", "chain", ".", "connection", ".", "log", "(", "\"Detecting os version\"", ")", "os_version", "=", "self", ".", "driver", ".", "get_os_version", "(", "self", ".", "version_text", ")", "if", "os_ve...
Update os_version attribute.
[ "Update", "os_version", "attribute", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L437-L443
train
kstaniek/condoor
condoor/device.py
Device.update_family
def update_family(self): """Update family attribute.""" self.chain.connection.log("Detecting hw family") family = self.driver.get_hw_family(self.version_text) if family: self.chain.connection.log("HW Family: {}".format(family)) self.family = family
python
def update_family(self): """Update family attribute.""" self.chain.connection.log("Detecting hw family") family = self.driver.get_hw_family(self.version_text) if family: self.chain.connection.log("HW Family: {}".format(family)) self.family = family
[ "def", "update_family", "(", "self", ")", ":", "self", ".", "chain", ".", "connection", ".", "log", "(", "\"Detecting hw family\"", ")", "family", "=", "self", ".", "driver", ".", "get_hw_family", "(", "self", ".", "version_text", ")", "if", "family", ":",...
Update family attribute.
[ "Update", "family", "attribute", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L445-L451
train
kstaniek/condoor
condoor/device.py
Device.update_platform
def update_platform(self): """Update platform attribute.""" self.chain.connection.log("Detecting hw platform") platform = self.driver.get_hw_platform(self.udi) if platform: self.chain.connection.log("HW Platform: {}".format(platform)) self.platform = platform
python
def update_platform(self): """Update platform attribute.""" self.chain.connection.log("Detecting hw platform") platform = self.driver.get_hw_platform(self.udi) if platform: self.chain.connection.log("HW Platform: {}".format(platform)) self.platform = platform
[ "def", "update_platform", "(", "self", ")", ":", "self", ".", "chain", ".", "connection", ".", "log", "(", "\"Detecting hw platform\"", ")", "platform", "=", "self", ".", "driver", ".", "get_hw_platform", "(", "self", ".", "udi", ")", "if", "platform", ":"...
Update platform attribute.
[ "Update", "platform", "attribute", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L453-L459
train
kstaniek/condoor
condoor/device.py
Device.update_console
def update_console(self): """Update is_console whether connected via console.""" self.chain.connection.log("Detecting console connection") is_console = self.driver.is_console(self.users_text) if is_console is not None: self.is_console = is_console
python
def update_console(self): """Update is_console whether connected via console.""" self.chain.connection.log("Detecting console connection") is_console = self.driver.is_console(self.users_text) if is_console is not None: self.is_console = is_console
[ "def", "update_console", "(", "self", ")", ":", "self", ".", "chain", ".", "connection", ".", "log", "(", "\"Detecting console connection\"", ")", "is_console", "=", "self", ".", "driver", ".", "is_console", "(", "self", ".", "users_text", ")", "if", "is_con...
Update is_console whether connected via console.
[ "Update", "is_console", "whether", "connected", "via", "console", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L461-L466
train
kstaniek/condoor
condoor/device.py
Device.reload
def reload(self, reload_timeout, save_config, no_reload_cmd): """Reload device.""" if not no_reload_cmd: self.ctrl.send_command(self.driver.reload_cmd) return self.driver.reload(reload_timeout, save_config)
python
def reload(self, reload_timeout, save_config, no_reload_cmd): """Reload device.""" if not no_reload_cmd: self.ctrl.send_command(self.driver.reload_cmd) return self.driver.reload(reload_timeout, save_config)
[ "def", "reload", "(", "self", ",", "reload_timeout", ",", "save_config", ",", "no_reload_cmd", ")", ":", "if", "not", "no_reload_cmd", ":", "self", ".", "ctrl", ".", "send_command", "(", "self", ".", "driver", ".", "reload_cmd", ")", "return", "self", ".",...
Reload device.
[ "Reload", "device", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L476-L480
train
kstaniek/condoor
condoor/device.py
Device.run_fsm
def run_fsm(self, name, command, events, transitions, timeout, max_transitions=20): """Wrap the FSM code.""" self.ctrl.send_command(command) return FSM(name, self, events, transitions, timeout=timeout, max_transitions=max_transitions).run()
python
def run_fsm(self, name, command, events, transitions, timeout, max_transitions=20): """Wrap the FSM code.""" self.ctrl.send_command(command) return FSM(name, self, events, transitions, timeout=timeout, max_transitions=max_transitions).run()
[ "def", "run_fsm", "(", "self", ",", "name", ",", "command", ",", "events", ",", "transitions", ",", "timeout", ",", "max_transitions", "=", "20", ")", ":", "self", ".", "ctrl", ".", "send_command", "(", "command", ")", "return", "FSM", "(", "name", ","...
Wrap the FSM code.
[ "Wrap", "the", "FSM", "code", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L482-L485
train
kstaniek/condoor
condoor/device.py
Device.config
def config(self, configlet, plane, **attributes): """Apply config to the device.""" try: config_text = configlet.format(**attributes) except KeyError as exp: raise CommandSyntaxError("Configuration template error: {}".format(str(exp))) return self.driver.config(c...
python
def config(self, configlet, plane, **attributes): """Apply config to the device.""" try: config_text = configlet.format(**attributes) except KeyError as exp: raise CommandSyntaxError("Configuration template error: {}".format(str(exp))) return self.driver.config(c...
[ "def", "config", "(", "self", ",", "configlet", ",", "plane", ",", "**", "attributes", ")", ":", "try", ":", "config_text", "=", "configlet", ".", "format", "(", "**", "attributes", ")", "except", "KeyError", "as", "exp", ":", "raise", "CommandSyntaxError"...
Apply config to the device.
[ "Apply", "config", "to", "the", "device", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/device.py#L487-L494
train
kstaniek/condoor
condoor/chain.py
device_gen
def device_gen(chain, urls): """Device object generator.""" itr = iter(urls) last = next(itr) for url in itr: yield Device(chain, make_hop_info_from_url(last), driver_name='jumphost', is_target=False) last = url yield Device(chain, make_hop_info_from_url(last), driver_name='generic',...
python
def device_gen(chain, urls): """Device object generator.""" itr = iter(urls) last = next(itr) for url in itr: yield Device(chain, make_hop_info_from_url(last), driver_name='jumphost', is_target=False) last = url yield Device(chain, make_hop_info_from_url(last), driver_name='generic',...
[ "def", "device_gen", "(", "chain", ",", "urls", ")", ":", "itr", "=", "iter", "(", "urls", ")", "last", "=", "next", "(", "itr", ")", "for", "url", "in", "itr", ":", "yield", "Device", "(", "chain", ",", "make_hop_info_from_url", "(", "last", ")", ...
Device object generator.
[ "Device", "object", "generator", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/chain.py#L12-L19
train
kstaniek/condoor
condoor/chain.py
Chain.connect
def connect(self): """Connect to the target device using the intermediate jumphosts.""" device = None # logger.debug("Connecting to: {}".format(str(self))) for device in self.devices: if not device.connected: self.connection.emit_message("Connecting {}".format...
python
def connect(self): """Connect to the target device using the intermediate jumphosts.""" device = None # logger.debug("Connecting to: {}".format(str(self))) for device in self.devices: if not device.connected: self.connection.emit_message("Connecting {}".format...
[ "def", "connect", "(", "self", ")", ":", "device", "=", "None", "for", "device", "in", "self", ".", "devices", ":", "if", "not", "device", ".", "connected", ":", "self", ".", "connection", ".", "emit_message", "(", "\"Connecting {}\"", ".", "format", "("...
Connect to the target device using the intermediate jumphosts.
[ "Connect", "to", "the", "target", "device", "using", "the", "intermediate", "jumphosts", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/chain.py#L40-L87
train
kstaniek/condoor
condoor/chain.py
Chain.disconnect
def disconnect(self): """Disconnect from the device.""" self.target_device.disconnect() self.ctrl.disconnect() self.tail_disconnect(-1)
python
def disconnect(self): """Disconnect from the device.""" self.target_device.disconnect() self.ctrl.disconnect() self.tail_disconnect(-1)
[ "def", "disconnect", "(", "self", ")", ":", "self", ".", "target_device", ".", "disconnect", "(", ")", "self", ".", "ctrl", ".", "disconnect", "(", ")", "self", ".", "tail_disconnect", "(", "-", "1", ")" ]
Disconnect from the device.
[ "Disconnect", "from", "the", "device", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/chain.py#L89-L93
train
kstaniek/condoor
condoor/chain.py
Chain.is_discovered
def is_discovered(self): """Return if target device is discovered.""" if self.target_device is None: return False if None in (self.target_device.version_text, self.target_device.os_type, self.target_device.os_version, self.target_device.inventory_text, self.targe...
python
def is_discovered(self): """Return if target device is discovered.""" if self.target_device is None: return False if None in (self.target_device.version_text, self.target_device.os_type, self.target_device.os_version, self.target_device.inventory_text, self.targe...
[ "def", "is_discovered", "(", "self", ")", ":", "if", "self", ".", "target_device", "is", "None", ":", "return", "False", "if", "None", "in", "(", "self", ".", "target_device", ".", "version_text", ",", "self", ".", "target_device", ".", "os_type", ",", "...
Return if target device is discovered.
[ "Return", "if", "target", "device", "is", "discovered", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/chain.py#L113-L121
train
kstaniek/condoor
condoor/chain.py
Chain.get_previous_prompts
def get_previous_prompts(self, device): """Return the list of intermediate prompts. All except target.""" device_index = self.devices.index(device) prompts = [re.compile("(?!x)x")] + \ [dev.prompt_re for dev in self.devices[:device_index] if dev.prompt_re is not None] r...
python
def get_previous_prompts(self, device): """Return the list of intermediate prompts. All except target.""" device_index = self.devices.index(device) prompts = [re.compile("(?!x)x")] + \ [dev.prompt_re for dev in self.devices[:device_index] if dev.prompt_re is not None] r...
[ "def", "get_previous_prompts", "(", "self", ",", "device", ")", ":", "device_index", "=", "self", ".", "devices", ".", "index", "(", "device", ")", "prompts", "=", "[", "re", ".", "compile", "(", "\"(?!x)x\"", ")", "]", "+", "[", "dev", ".", "prompt_re...
Return the list of intermediate prompts. All except target.
[ "Return", "the", "list", "of", "intermediate", "prompts", ".", "All", "except", "target", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/chain.py#L131-L136
train
kstaniek/condoor
condoor/chain.py
Chain.get_device_index_based_on_prompt
def get_device_index_based_on_prompt(self, prompt): """Return the device index in the chain based on prompt.""" conn_info = "" for device in self.devices: conn_info += str(device) + "->" if device.prompt == prompt: self.connection.log("Connected: {}".forma...
python
def get_device_index_based_on_prompt(self, prompt): """Return the device index in the chain based on prompt.""" conn_info = "" for device in self.devices: conn_info += str(device) + "->" if device.prompt == prompt: self.connection.log("Connected: {}".forma...
[ "def", "get_device_index_based_on_prompt", "(", "self", ",", "prompt", ")", ":", "conn_info", "=", "\"\"", "for", "device", "in", "self", ".", "devices", ":", "conn_info", "+=", "str", "(", "device", ")", "+", "\"->\"", "if", "device", ".", "prompt", "==",...
Return the device index in the chain based on prompt.
[ "Return", "the", "device", "index", "in", "the", "chain", "based", "on", "prompt", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/chain.py#L138-L147
train
kstaniek/condoor
condoor/chain.py
Chain.tail_disconnect
def tail_disconnect(self, index): """Mark all devices disconnected except target in the chain.""" try: for device in self.devices[index + 1:]: device.connected = False except IndexError: pass
python
def tail_disconnect(self, index): """Mark all devices disconnected except target in the chain.""" try: for device in self.devices[index + 1:]: device.connected = False except IndexError: pass
[ "def", "tail_disconnect", "(", "self", ",", "index", ")", ":", "try", ":", "for", "device", "in", "self", ".", "devices", "[", "index", "+", "1", ":", "]", ":", "device", ".", "connected", "=", "False", "except", "IndexError", ":", "pass" ]
Mark all devices disconnected except target in the chain.
[ "Mark", "all", "devices", "disconnected", "except", "target", "in", "the", "chain", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/chain.py#L149-L155
train
kstaniek/condoor
condoor/chain.py
Chain.send
def send(self, cmd, timeout, wait_for_string, password): """Send command to the target device.""" return self.target_device.send(cmd, timeout=timeout, wait_for_string=wait_for_string, password=password)
python
def send(self, cmd, timeout, wait_for_string, password): """Send command to the target device.""" return self.target_device.send(cmd, timeout=timeout, wait_for_string=wait_for_string, password=password)
[ "def", "send", "(", "self", ",", "cmd", ",", "timeout", ",", "wait_for_string", ",", "password", ")", ":", "return", "self", ".", "target_device", ".", "send", "(", "cmd", ",", "timeout", "=", "timeout", ",", "wait_for_string", "=", "wait_for_string", ",",...
Send command to the target device.
[ "Send", "command", "to", "the", "target", "device", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/chain.py#L157-L159
train
kstaniek/condoor
condoor/chain.py
Chain.update
def update(self, data): """Update the chain object with the predefined data.""" if data is None: for device in self.devices: device.clear_info() else: for device, device_info in zip(self.devices, data): device.device_info = device_info ...
python
def update(self, data): """Update the chain object with the predefined data.""" if data is None: for device in self.devices: device.clear_info() else: for device, device_info in zip(self.devices, data): device.device_info = device_info ...
[ "def", "update", "(", "self", ",", "data", ")", ":", "if", "data", "is", "None", ":", "for", "device", "in", "self", ".", "devices", ":", "device", ".", "clear_info", "(", ")", "else", ":", "for", "device", ",", "device_info", "in", "zip", "(", "se...
Update the chain object with the predefined data.
[ "Update", "the", "chain", "object", "with", "the", "predefined", "data", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/chain.py#L161-L169
train
kstaniek/condoor
condoor/fsm.py
action
def action(func): """Wrap the FSM action function providing extended logging information based on doc string.""" @wraps(func) def call_action(*args, **kwargs): """Wrap the function with logger debug.""" try: ctx = kwargs['ctx'] except KeyError: ctx = None ...
python
def action(func): """Wrap the FSM action function providing extended logging information based on doc string.""" @wraps(func) def call_action(*args, **kwargs): """Wrap the function with logger debug.""" try: ctx = kwargs['ctx'] except KeyError: ctx = None ...
[ "def", "action", "(", "func", ")", ":", "@", "wraps", "(", "func", ")", "def", "call_action", "(", "*", "args", ",", "**", "kwargs", ")", ":", "try", ":", "ctx", "=", "kwargs", "[", "'ctx'", "]", "except", "KeyError", ":", "ctx", "=", "None", "if...
Wrap the FSM action function providing extended logging information based on doc string.
[ "Wrap", "the", "FSM", "action", "function", "providing", "extended", "logging", "information", "based", "on", "doc", "string", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/fsm.py#L12-L33
train
kstaniek/condoor
condoor/fsm.py
FSM.run
def run(self): """Start the FSM. Returns: boolean: True if FSM reaches the last state or false if the exception or error message was raised """ ctx = FSM.Context(self.name, self.device) transition_counter = 0 timeout = self.timeout self.log("{} Start...
python
def run(self): """Start the FSM. Returns: boolean: True if FSM reaches the last state or false if the exception or error message was raised """ ctx = FSM.Context(self.name, self.device) transition_counter = 0 timeout = self.timeout self.log("{} Start...
[ "def", "run", "(", "self", ")", ":", "ctx", "=", "FSM", ".", "Context", "(", "self", ".", "name", ",", "self", ".", "device", ")", "transition_counter", "=", "0", "timeout", "=", "self", ".", "timeout", "self", ".", "log", "(", "\"{} Start\"", ".", ...
Start the FSM. Returns: boolean: True if FSM reaches the last state or false if the exception or error message was raised
[ "Start", "the", "FSM", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/fsm.py#L152-L218
train
thomasjiangcy/django-rest-mock
rest_mock_server/builder.py
build
def build(port=8000, fixtures=None): """ Builds a server file. 1. Extract mock response details from all valid docstrings in existing views 2. Parse and generate mock values 3. Create a store of all endpoints and data 4. Construct server file """ extractor = Extractor() parser = Par...
python
def build(port=8000, fixtures=None): """ Builds a server file. 1. Extract mock response details from all valid docstrings in existing views 2. Parse and generate mock values 3. Create a store of all endpoints and data 4. Construct server file """ extractor = Extractor() parser = Par...
[ "def", "build", "(", "port", "=", "8000", ",", "fixtures", "=", "None", ")", ":", "extractor", "=", "Extractor", "(", ")", "parser", "=", "Parser", "(", "extractor", ".", "url_details", ",", "fixtures", ")", "parser", ".", "parse", "(", ")", "url_detai...
Builds a server file. 1. Extract mock response details from all valid docstrings in existing views 2. Parse and generate mock values 3. Create a store of all endpoints and data 4. Construct server file
[ "Builds", "a", "server", "file", "." ]
09e91de20d1a5efd5c47c6e3d7fe979443012e2c
https://github.com/thomasjiangcy/django-rest-mock/blob/09e91de20d1a5efd5c47c6e3d7fe979443012e2c/rest_mock_server/builder.py#L177-L245
train
OnroerendErfgoed/language-tags
language_tags/Subtag.py
Subtag.preferred
def preferred(self): """ Get the preferred subtag. :return: preferred :class:`language_tags.Subtag.Subtag` if exists, otherwise None. """ if 'Preferred-Value' in self.data['record']: preferred = self.data['record']['Preferred-Value'] type = self.data['typ...
python
def preferred(self): """ Get the preferred subtag. :return: preferred :class:`language_tags.Subtag.Subtag` if exists, otherwise None. """ if 'Preferred-Value' in self.data['record']: preferred = self.data['record']['Preferred-Value'] type = self.data['typ...
[ "def", "preferred", "(", "self", ")", ":", "if", "'Preferred-Value'", "in", "self", ".", "data", "[", "'record'", "]", ":", "preferred", "=", "self", ".", "data", "[", "'record'", "]", "[", "'Preferred-Value'", "]", "type", "=", "self", ".", "data", "[...
Get the preferred subtag. :return: preferred :class:`language_tags.Subtag.Subtag` if exists, otherwise None.
[ "Get", "the", "preferred", "subtag", "." ]
acb91e5458d22617f344e2eefaba9a9865373fdd
https://github.com/OnroerendErfgoed/language-tags/blob/acb91e5458d22617f344e2eefaba9a9865373fdd/language_tags/Subtag.py#L86-L98
train
OnroerendErfgoed/language-tags
language_tags/Subtag.py
Subtag.format
def format(self): """ Get the subtag code conventional format according to RFC 5646 section 2.1.1. :return: string -- subtag code conventional format. """ subtag = self.data['subtag'] if self.data['type'] == 'region': return subtag.upper() if self.dat...
python
def format(self): """ Get the subtag code conventional format according to RFC 5646 section 2.1.1. :return: string -- subtag code conventional format. """ subtag = self.data['subtag'] if self.data['type'] == 'region': return subtag.upper() if self.dat...
[ "def", "format", "(", "self", ")", ":", "subtag", "=", "self", ".", "data", "[", "'subtag'", "]", "if", "self", ".", "data", "[", "'type'", "]", "==", "'region'", ":", "return", "subtag", ".", "upper", "(", ")", "if", "self", ".", "data", "[", "'...
Get the subtag code conventional format according to RFC 5646 section 2.1.1. :return: string -- subtag code conventional format.
[ "Get", "the", "subtag", "code", "conventional", "format", "according", "to", "RFC", "5646", "section", "2", ".", "1", ".", "1", "." ]
acb91e5458d22617f344e2eefaba9a9865373fdd
https://github.com/OnroerendErfgoed/language-tags/blob/acb91e5458d22617f344e2eefaba9a9865373fdd/language_tags/Subtag.py#L101-L112
train
freshbooks/refreshbooks
refreshbooks/api.py
AuthorizingClient
def AuthorizingClient( domain, auth, request_encoder, response_decoder, user_agent=None ): """Creates a Freshbooks client for a freshbooks domain, using an auth object. """ http_transport = transport.HttpTransport( api_url(domain), build_headers(auth, user_agent)...
python
def AuthorizingClient( domain, auth, request_encoder, response_decoder, user_agent=None ): """Creates a Freshbooks client for a freshbooks domain, using an auth object. """ http_transport = transport.HttpTransport( api_url(domain), build_headers(auth, user_agent)...
[ "def", "AuthorizingClient", "(", "domain", ",", "auth", ",", "request_encoder", ",", "response_decoder", ",", "user_agent", "=", "None", ")", ":", "http_transport", "=", "transport", ".", "HttpTransport", "(", "api_url", "(", "domain", ")", ",", "build_headers",...
Creates a Freshbooks client for a freshbooks domain, using an auth object.
[ "Creates", "a", "Freshbooks", "client", "for", "a", "freshbooks", "domain", "using", "an", "auth", "object", "." ]
cfd65ecd38cb6be3b61dbf6a01f93800603f34b1
https://github.com/freshbooks/refreshbooks/blob/cfd65ecd38cb6be3b61dbf6a01f93800603f34b1/refreshbooks/api.py#L72-L92
train
freshbooks/refreshbooks
refreshbooks/api.py
TokenClient
def TokenClient( domain, token, user_agent=None, request_encoder=default_request_encoder, response_decoder=default_response_decoder, ): """Creates a Freshbooks client for a freshbooks domain, using token-based auth. The optional request_encoder and response_decoder parameters can be...
python
def TokenClient( domain, token, user_agent=None, request_encoder=default_request_encoder, response_decoder=default_response_decoder, ): """Creates a Freshbooks client for a freshbooks domain, using token-based auth. The optional request_encoder and response_decoder parameters can be...
[ "def", "TokenClient", "(", "domain", ",", "token", ",", "user_agent", "=", "None", ",", "request_encoder", "=", "default_request_encoder", ",", "response_decoder", "=", "default_response_decoder", ",", ")", ":", "return", "AuthorizingClient", "(", "domain", ",", "...
Creates a Freshbooks client for a freshbooks domain, using token-based auth. The optional request_encoder and response_decoder parameters can be passed the logging_request_encoder and logging_response_decoder objects from this module, or custom encoders, to aid debugging or change the behaviour...
[ "Creates", "a", "Freshbooks", "client", "for", "a", "freshbooks", "domain", "using", "token", "-", "based", "auth", ".", "The", "optional", "request_encoder", "and", "response_decoder", "parameters", "can", "be", "passed", "the", "logging_request_encoder", "and", ...
cfd65ecd38cb6be3b61dbf6a01f93800603f34b1
https://github.com/freshbooks/refreshbooks/blob/cfd65ecd38cb6be3b61dbf6a01f93800603f34b1/refreshbooks/api.py#L94-L120
train
freshbooks/refreshbooks
refreshbooks/api.py
OAuthClient
def OAuthClient( domain, consumer_key, consumer_secret, token, token_secret, user_agent=None, request_encoder=default_request_encoder, response_decoder=default_response_decoder ): """Creates a Freshbooks client for a freshbooks domain, using OAuth. Token management is assumed to ...
python
def OAuthClient( domain, consumer_key, consumer_secret, token, token_secret, user_agent=None, request_encoder=default_request_encoder, response_decoder=default_response_decoder ): """Creates a Freshbooks client for a freshbooks domain, using OAuth. Token management is assumed to ...
[ "def", "OAuthClient", "(", "domain", ",", "consumer_key", ",", "consumer_secret", ",", "token", ",", "token_secret", ",", "user_agent", "=", "None", ",", "request_encoder", "=", "default_request_encoder", ",", "response_decoder", "=", "default_response_decoder", ")", ...
Creates a Freshbooks client for a freshbooks domain, using OAuth. Token management is assumed to have been handled out of band. The optional request_encoder and response_decoder parameters can be passed the logging_request_encoder and logging_response_decoder objects from this module, or custom enc...
[ "Creates", "a", "Freshbooks", "client", "for", "a", "freshbooks", "domain", "using", "OAuth", ".", "Token", "management", "is", "assumed", "to", "have", "been", "handled", "out", "of", "band", ".", "The", "optional", "request_encoder", "and", "response_decoder",...
cfd65ecd38cb6be3b61dbf6a01f93800603f34b1
https://github.com/freshbooks/refreshbooks/blob/cfd65ecd38cb6be3b61dbf6a01f93800603f34b1/refreshbooks/api.py#L122-L154
train
theherk/figgypy
figgypy/decrypt.py
gpg_decrypt
def gpg_decrypt(cfg, gpg_config=None): """Decrypt GPG objects in configuration. Args: cfg (dict): configuration dictionary gpg_config (dict): gpg configuration dict of arguments for gpg including: homedir, binary, and keyring (require all if any) example:...
python
def gpg_decrypt(cfg, gpg_config=None): """Decrypt GPG objects in configuration. Args: cfg (dict): configuration dictionary gpg_config (dict): gpg configuration dict of arguments for gpg including: homedir, binary, and keyring (require all if any) example:...
[ "def", "gpg_decrypt", "(", "cfg", ",", "gpg_config", "=", "None", ")", ":", "def", "decrypt", "(", "obj", ")", ":", "if", "isinstance", "(", "obj", ",", "list", ")", ":", "res_v", "=", "[", "]", "for", "item", "in", "obj", ":", "res_v", ".", "app...
Decrypt GPG objects in configuration. Args: cfg (dict): configuration dictionary gpg_config (dict): gpg configuration dict of arguments for gpg including: homedir, binary, and keyring (require all if any) example: gpg_config = {'homedir': '~/....
[ "Decrypt", "GPG", "objects", "in", "configuration", "." ]
324d1b281a8df20a26b92f42bf7fda0cca892116
https://github.com/theherk/figgypy/blob/324d1b281a8df20a26b92f42bf7fda0cca892116/figgypy/decrypt.py#L26-L119
train
theherk/figgypy
figgypy/decrypt.py
kms_decrypt
def kms_decrypt(cfg, aws_config=None): """Decrypt KMS objects in configuration. Args: cfg (dict): configuration dictionary aws_config (dict): aws credentials dict of arguments passed into boto3 session example: aws_creds = {'aws_access_key_id': aws_access...
python
def kms_decrypt(cfg, aws_config=None): """Decrypt KMS objects in configuration. Args: cfg (dict): configuration dictionary aws_config (dict): aws credentials dict of arguments passed into boto3 session example: aws_creds = {'aws_access_key_id': aws_access...
[ "def", "kms_decrypt", "(", "cfg", ",", "aws_config", "=", "None", ")", ":", "def", "decrypt", "(", "obj", ")", ":", "if", "isinstance", "(", "obj", ",", "list", ")", ":", "res_v", "=", "[", "]", "for", "item", "in", "obj", ":", "res_v", ".", "app...
Decrypt KMS objects in configuration. Args: cfg (dict): configuration dictionary aws_config (dict): aws credentials dict of arguments passed into boto3 session example: aws_creds = {'aws_access_key_id': aws_access_key_id, 'aws_sec...
[ "Decrypt", "KMS", "objects", "in", "configuration", "." ]
324d1b281a8df20a26b92f42bf7fda0cca892116
https://github.com/theherk/figgypy/blob/324d1b281a8df20a26b92f42bf7fda0cca892116/figgypy/decrypt.py#L122-L191
train
kstaniek/condoor
condoor/drivers/generic.py
Driver.get_version_text
def get_version_text(self): """Return the version information from the device.""" show_version_brief_not_supported = False version_text = None try: version_text = self.device.send("show version brief", timeout=120) except CommandError: show_version_brief_n...
python
def get_version_text(self): """Return the version information from the device.""" show_version_brief_not_supported = False version_text = None try: version_text = self.device.send("show version brief", timeout=120) except CommandError: show_version_brief_n...
[ "def", "get_version_text", "(", "self", ")", ":", "show_version_brief_not_supported", "=", "False", "version_text", "=", "None", "try", ":", "version_text", "=", "self", ".", "device", ".", "send", "(", "\"show version brief\"", ",", "timeout", "=", "120", ")", ...
Return the version information from the device.
[ "Return", "the", "version", "information", "from", "the", "device", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/drivers/generic.py#L63-L80
train
kstaniek/condoor
condoor/drivers/generic.py
Driver.get_inventory_text
def get_inventory_text(self): """Return the inventory information from the device.""" inventory_text = None if self.inventory_cmd: try: inventory_text = self.device.send(self.inventory_cmd, timeout=120) self.log('Inventory collected') excep...
python
def get_inventory_text(self): """Return the inventory information from the device.""" inventory_text = None if self.inventory_cmd: try: inventory_text = self.device.send(self.inventory_cmd, timeout=120) self.log('Inventory collected') excep...
[ "def", "get_inventory_text", "(", "self", ")", ":", "inventory_text", "=", "None", "if", "self", ".", "inventory_cmd", ":", "try", ":", "inventory_text", "=", "self", ".", "device", ".", "send", "(", "self", ".", "inventory_cmd", ",", "timeout", "=", "120"...
Return the inventory information from the device.
[ "Return", "the", "inventory", "information", "from", "the", "device", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/drivers/generic.py#L82-L93
train
kstaniek/condoor
condoor/drivers/generic.py
Driver.get_users_text
def get_users_text(self): """Return the users logged in information from the device.""" users_text = None if self.users_cmd: try: users_text = self.device.send(self.users_cmd, timeout=60) except CommandError: self.log('Unable to collect con...
python
def get_users_text(self): """Return the users logged in information from the device.""" users_text = None if self.users_cmd: try: users_text = self.device.send(self.users_cmd, timeout=60) except CommandError: self.log('Unable to collect con...
[ "def", "get_users_text", "(", "self", ")", ":", "users_text", "=", "None", "if", "self", ".", "users_cmd", ":", "try", ":", "users_text", "=", "self", ".", "device", ".", "send", "(", "self", ".", "users_cmd", ",", "timeout", "=", "60", ")", "except", ...
Return the users logged in information from the device.
[ "Return", "the", "users", "logged", "in", "information", "from", "the", "device", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/drivers/generic.py#L99-L109
train
kstaniek/condoor
condoor/drivers/generic.py
Driver.get_os_type
def get_os_type(self, version_text): # pylint: disable=no-self-use """Return the OS type information from the device.""" os_type = None if version_text is None: return os_type match = re.search("(XR|XE|NX-OS)", version_text) if match: os_type = match.gro...
python
def get_os_type(self, version_text): # pylint: disable=no-self-use """Return the OS type information from the device.""" os_type = None if version_text is None: return os_type match = re.search("(XR|XE|NX-OS)", version_text) if match: os_type = match.gro...
[ "def", "get_os_type", "(", "self", ",", "version_text", ")", ":", "os_type", "=", "None", "if", "version_text", "is", "None", ":", "return", "os_type", "match", "=", "re", ".", "search", "(", "\"(XR|XE|NX-OS)\"", ",", "version_text", ")", "if", "match", ":...
Return the OS type information from the device.
[ "Return", "the", "OS", "type", "information", "from", "the", "device", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/drivers/generic.py#L111-L130
train
kstaniek/condoor
condoor/drivers/generic.py
Driver.get_os_version
def get_os_version(self, version_text): """Return the OS version information from the device.""" os_version = None if version_text is None: return os_version match = re.search(self.version_re, version_text, re.MULTILINE) if match: os_version = match.group(...
python
def get_os_version(self, version_text): """Return the OS version information from the device.""" os_version = None if version_text is None: return os_version match = re.search(self.version_re, version_text, re.MULTILINE) if match: os_version = match.group(...
[ "def", "get_os_version", "(", "self", ",", "version_text", ")", ":", "os_version", "=", "None", "if", "version_text", "is", "None", ":", "return", "os_version", "match", "=", "re", ".", "search", "(", "self", ".", "version_re", ",", "version_text", ",", "r...
Return the OS version information from the device.
[ "Return", "the", "OS", "version", "information", "from", "the", "device", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/drivers/generic.py#L132-L141
train
kstaniek/condoor
condoor/drivers/generic.py
Driver.get_hw_family
def get_hw_family(self, version_text): """Return the HW family information from the device.""" family = None if version_text is None: return family match = re.search(self.platform_re, version_text, re.MULTILINE) if match: self.platform_string = match.grou...
python
def get_hw_family(self, version_text): """Return the HW family information from the device.""" family = None if version_text is None: return family match = re.search(self.platform_re, version_text, re.MULTILINE) if match: self.platform_string = match.grou...
[ "def", "get_hw_family", "(", "self", ",", "version_text", ")", ":", "family", "=", "None", "if", "version_text", "is", "None", ":", "return", "family", "match", "=", "re", ".", "search", "(", "self", ".", "platform_re", ",", "version_text", ",", "re", "....
Return the HW family information from the device.
[ "Return", "the", "HW", "family", "information", "from", "the", "device", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/drivers/generic.py#L143-L163
train
kstaniek/condoor
condoor/drivers/generic.py
Driver.get_hw_platform
def get_hw_platform(self, udi): """Return th HW platform information from the device.""" platform = None try: pid = udi['pid'] if pid == '': self.log("Empty PID. Use the hw family from the platform string.") return self.raw_family ...
python
def get_hw_platform(self, udi): """Return th HW platform information from the device.""" platform = None try: pid = udi['pid'] if pid == '': self.log("Empty PID. Use the hw family from the platform string.") return self.raw_family ...
[ "def", "get_hw_platform", "(", "self", ",", "udi", ")", ":", "platform", "=", "None", "try", ":", "pid", "=", "udi", "[", "'pid'", "]", "if", "pid", "==", "''", ":", "self", ".", "log", "(", "\"Empty PID. Use the hw family from the platform string.\"", ")", ...
Return th HW platform information from the device.
[ "Return", "th", "HW", "platform", "information", "from", "the", "device", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/drivers/generic.py#L165-L178
train
kstaniek/condoor
condoor/drivers/generic.py
Driver.is_console
def is_console(self, users_text): """Return if device is connected over console.""" if users_text is None: self.log("Console information not collected") return None for line in users_text.split('\n'): if '*' in line: match = re.search(self.vty...
python
def is_console(self, users_text): """Return if device is connected over console.""" if users_text is None: self.log("Console information not collected") return None for line in users_text.split('\n'): if '*' in line: match = re.search(self.vty...
[ "def", "is_console", "(", "self", ",", "users_text", ")", ":", "if", "users_text", "is", "None", ":", "self", ".", "log", "(", "\"Console information not collected\"", ")", "return", "None", "for", "line", "in", "users_text", ".", "split", "(", "'\\n'", ")",...
Return if device is connected over console.
[ "Return", "if", "device", "is", "connected", "over", "console", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/drivers/generic.py#L180-L199
train
kstaniek/condoor
condoor/drivers/generic.py
Driver.wait_for_string
def wait_for_string(self, expected_string, timeout=60): """Wait for string FSM.""" # 0 1 2 3 events = [self.syntax_error_re, self.connection_closed_re, expected_string, self.press_return_re, ...
python
def wait_for_string(self, expected_string, timeout=60): """Wait for string FSM.""" # 0 1 2 3 events = [self.syntax_error_re, self.connection_closed_re, expected_string, self.press_return_re, ...
[ "def", "wait_for_string", "(", "self", ",", "expected_string", ",", "timeout", "=", "60", ")", ":", "events", "=", "[", "self", ".", "syntax_error_re", ",", "self", ".", "connection_closed_re", ",", "expected_string", ",", "self", ".", "press_return_re", ",", ...
Wait for string FSM.
[ "Wait", "for", "string", "FSM", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/drivers/generic.py#L206-L234
train
kstaniek/condoor
condoor/drivers/generic.py
Driver.reload
def reload(self, reload_timeout=300, save_config=True): """Reload the device and waits for device to boot up. It posts the informational message to the log if not implemented by device driver. """ self.log("Reload not implemented on {} platform".format(self.platform))
python
def reload(self, reload_timeout=300, save_config=True): """Reload the device and waits for device to boot up. It posts the informational message to the log if not implemented by device driver. """ self.log("Reload not implemented on {} platform".format(self.platform))
[ "def", "reload", "(", "self", ",", "reload_timeout", "=", "300", ",", "save_config", "=", "True", ")", ":", "self", ".", "log", "(", "\"Reload not implemented on {} platform\"", ".", "format", "(", "self", ".", "platform", ")", ")" ]
Reload the device and waits for device to boot up. It posts the informational message to the log if not implemented by device driver.
[ "Reload", "the", "device", "and", "waits", "for", "device", "to", "boot", "up", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/drivers/generic.py#L282-L287
train
kstaniek/condoor
condoor/drivers/generic.py
Driver.base_prompt
def base_prompt(self, prompt): """Extract the base prompt pattern.""" if prompt is None: return None if not self.device.is_target: return prompt pattern = pattern_manager.pattern(self.platform, "prompt_dynamic", compiled=False) pattern = pattern.format(pro...
python
def base_prompt(self, prompt): """Extract the base prompt pattern.""" if prompt is None: return None if not self.device.is_target: return prompt pattern = pattern_manager.pattern(self.platform, "prompt_dynamic", compiled=False) pattern = pattern.format(pro...
[ "def", "base_prompt", "(", "self", ",", "prompt", ")", ":", "if", "prompt", "is", "None", ":", "return", "None", "if", "not", "self", ".", "device", ".", "is_target", ":", "return", "prompt", "pattern", "=", "pattern_manager", ".", "pattern", "(", "self"...
Extract the base prompt pattern.
[ "Extract", "the", "base", "prompt", "pattern", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/drivers/generic.py#L293-L308
train
kstaniek/condoor
condoor/drivers/generic.py
Driver.update_config_mode
def update_config_mode(self, prompt): # pylint: disable=no-self-use """Update config mode based on the prompt analysis.""" mode = 'global' if prompt: if 'config' in prompt: mode = 'config' elif 'admin' in prompt: mode = 'admin' se...
python
def update_config_mode(self, prompt): # pylint: disable=no-self-use """Update config mode based on the prompt analysis.""" mode = 'global' if prompt: if 'config' in prompt: mode = 'config' elif 'admin' in prompt: mode = 'admin' se...
[ "def", "update_config_mode", "(", "self", ",", "prompt", ")", ":", "mode", "=", "'global'", "if", "prompt", ":", "if", "'config'", "in", "prompt", ":", "mode", "=", "'config'", "elif", "'admin'", "in", "prompt", ":", "mode", "=", "'admin'", "self", ".", ...
Update config mode based on the prompt analysis.
[ "Update", "config", "mode", "based", "on", "the", "prompt", "analysis", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/drivers/generic.py#L327-L337
train
kstaniek/condoor
condoor/drivers/generic.py
Driver.update_hostname
def update_hostname(self, prompt): """Update the hostname based on the prompt analysis.""" result = re.search(self.prompt_re, prompt) if result: hostname = result.group('hostname') self.log("Hostname detected: {}".format(hostname)) else: hostname = sel...
python
def update_hostname(self, prompt): """Update the hostname based on the prompt analysis.""" result = re.search(self.prompt_re, prompt) if result: hostname = result.group('hostname') self.log("Hostname detected: {}".format(hostname)) else: hostname = sel...
[ "def", "update_hostname", "(", "self", ",", "prompt", ")", ":", "result", "=", "re", ".", "search", "(", "self", ".", "prompt_re", ",", "prompt", ")", "if", "result", ":", "hostname", "=", "result", ".", "group", "(", "'hostname'", ")", "self", ".", ...
Update the hostname based on the prompt analysis.
[ "Update", "the", "hostname", "based", "on", "the", "prompt", "analysis", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/drivers/generic.py#L339-L348
train
kstaniek/condoor
condoor/drivers/generic.py
Driver.enter_plane
def enter_plane(self, plane): """Enter the device plane. Enter the device plane a.k.a. mode, i.e. admin, qnx, calvados """ try: cmd = CONF['driver'][self.platform]['planes'][plane] self.plane = plane except KeyError: cmd = None if cmd...
python
def enter_plane(self, plane): """Enter the device plane. Enter the device plane a.k.a. mode, i.e. admin, qnx, calvados """ try: cmd = CONF['driver'][self.platform]['planes'][plane] self.plane = plane except KeyError: cmd = None if cmd...
[ "def", "enter_plane", "(", "self", ",", "plane", ")", ":", "try", ":", "cmd", "=", "CONF", "[", "'driver'", "]", "[", "self", ".", "platform", "]", "[", "'planes'", "]", "[", "plane", "]", "self", ".", "plane", "=", "plane", "except", "KeyError", "...
Enter the device plane. Enter the device plane a.k.a. mode, i.e. admin, qnx, calvados
[ "Enter", "the", "device", "plane", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/drivers/generic.py#L360-L373
train
thomasjiangcy/django-rest-mock
rest_mock_server/core/factory.py
FixtureFactory.handle_other_factory_method
def handle_other_factory_method(attr, minimum, maximum): """ This is a temporary static method, when there are more factory methods, we can move this to another class or find a way to maintain it in a scalable manner """ if attr == 'percentage': if minimum: ...
python
def handle_other_factory_method(attr, minimum, maximum): """ This is a temporary static method, when there are more factory methods, we can move this to another class or find a way to maintain it in a scalable manner """ if attr == 'percentage': if minimum: ...
[ "def", "handle_other_factory_method", "(", "attr", ",", "minimum", ",", "maximum", ")", ":", "if", "attr", "==", "'percentage'", ":", "if", "minimum", ":", "minimum", "=", "ast", ".", "literal_eval", "(", "minimum", ")", "else", ":", "minimum", "=", "0", ...
This is a temporary static method, when there are more factory methods, we can move this to another class or find a way to maintain it in a scalable manner
[ "This", "is", "a", "temporary", "static", "method", "when", "there", "are", "more", "factory", "methods", "we", "can", "move", "this", "to", "another", "class", "or", "find", "a", "way", "to", "maintain", "it", "in", "a", "scalable", "manner" ]
09e91de20d1a5efd5c47c6e3d7fe979443012e2c
https://github.com/thomasjiangcy/django-rest-mock/blob/09e91de20d1a5efd5c47c6e3d7fe979443012e2c/rest_mock_server/core/factory.py#L82-L101
train
thomasjiangcy/django-rest-mock
rest_mock_server/core/factory.py
FixtureFactory._parse_syntax
def _parse_syntax(self, raw): """ Retrieves the syntax from the response and goes through each one to generate and replace it with mock values """ raw = str(raw) # treat the value as a string regardless of its actual data type has_syntax = re.findall(r'<(\^)?(fk__)?(\w+)...
python
def _parse_syntax(self, raw): """ Retrieves the syntax from the response and goes through each one to generate and replace it with mock values """ raw = str(raw) # treat the value as a string regardless of its actual data type has_syntax = re.findall(r'<(\^)?(fk__)?(\w+)...
[ "def", "_parse_syntax", "(", "self", ",", "raw", ")", ":", "raw", "=", "str", "(", "raw", ")", "has_syntax", "=", "re", ".", "findall", "(", "r'<(\\^)?(fk__)?(\\w+)?([0-9]*[.]?[0-9]+?)?(\\:)?([0-9]*[.]?[0-9]+?)?(\\:)?([0-9]*[.]?[0-9]+?)?>'", ",", "raw", ",", "flags", ...
Retrieves the syntax from the response and goes through each one to generate and replace it with mock values
[ "Retrieves", "the", "syntax", "from", "the", "response", "and", "goes", "through", "each", "one", "to", "generate", "and", "replace", "it", "with", "mock", "values" ]
09e91de20d1a5efd5c47c6e3d7fe979443012e2c
https://github.com/thomasjiangcy/django-rest-mock/blob/09e91de20d1a5efd5c47c6e3d7fe979443012e2c/rest_mock_server/core/factory.py#L234-L256
train
thomasjiangcy/django-rest-mock
rest_mock_server/core/factory.py
FixtureFactory.count
def count(self, source, target): """ The 'count' relationship is used for listing endpoints where a specific attribute might hold the value to the number of instances of another attribute. """ try: source_value = self._response_holder[source] except KeyError: ...
python
def count(self, source, target): """ The 'count' relationship is used for listing endpoints where a specific attribute might hold the value to the number of instances of another attribute. """ try: source_value = self._response_holder[source] except KeyError: ...
[ "def", "count", "(", "self", ",", "source", ",", "target", ")", ":", "try", ":", "source_value", "=", "self", ".", "_response_holder", "[", "source", "]", "except", "KeyError", ":", "raw", "=", "self", ".", "fake_response", "[", "source", "]", "source_va...
The 'count' relationship is used for listing endpoints where a specific attribute might hold the value to the number of instances of another attribute.
[ "The", "count", "relationship", "is", "used", "for", "listing", "endpoints", "where", "a", "specific", "attribute", "might", "hold", "the", "value", "to", "the", "number", "of", "instances", "of", "another", "attribute", "." ]
09e91de20d1a5efd5c47c6e3d7fe979443012e2c
https://github.com/thomasjiangcy/django-rest-mock/blob/09e91de20d1a5efd5c47c6e3d7fe979443012e2c/rest_mock_server/core/factory.py#L262-L294
train
kstaniek/condoor
condoor/protocols/ssh.py
SSH.get_command
def get_command(self, version=2): """Return the SSH protocol specific command to connect.""" try: options = _C['options'] options_str = " -o ".join(options) if options_str: options_str = "-o " + options_str + " " except KeyError: op...
python
def get_command(self, version=2): """Return the SSH protocol specific command to connect.""" try: options = _C['options'] options_str = " -o ".join(options) if options_str: options_str = "-o " + options_str + " " except KeyError: op...
[ "def", "get_command", "(", "self", ",", "version", "=", "2", ")", ":", "try", ":", "options", "=", "_C", "[", "'options'", "]", "options_str", "=", "\" -o \"", ".", "join", "(", "options", ")", "if", "options_str", ":", "options_str", "=", "\"-o \"", "...
Return the SSH protocol specific command to connect.
[ "Return", "the", "SSH", "protocol", "specific", "command", "to", "connect", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/protocols/ssh.py#L32-L52
train
kstaniek/condoor
condoor/protocols/ssh.py
SSH.connect
def connect(self, driver): """Connect using the SSH protocol specific FSM.""" # 0 1 2 events = [driver.password_re, self.device.prompt_re, driver.unable_to_connect_re, # 3 4 5 6 ...
python
def connect(self, driver): """Connect using the SSH protocol specific FSM.""" # 0 1 2 events = [driver.password_re, self.device.prompt_re, driver.unable_to_connect_re, # 3 4 5 6 ...
[ "def", "connect", "(", "self", ",", "driver", ")", ":", "events", "=", "[", "driver", ".", "password_re", ",", "self", ".", "device", ".", "prompt_re", ",", "driver", ".", "unable_to_connect_re", ",", "NEWSSHKEY", ",", "KNOWN_HOSTS", ",", "HOST_KEY_FAILED", ...
Connect using the SSH protocol specific FSM.
[ "Connect", "using", "the", "SSH", "protocol", "specific", "FSM", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/protocols/ssh.py#L54-L83
train
kstaniek/condoor
condoor/protocols/ssh.py
SSH.authenticate
def authenticate(self, driver): """Authenticate using the SSH protocol specific FSM.""" # 0 1 2 3 events = [driver.press_return_re, driver.password_re, self.device.prompt_re, pexpect.TIMEOUT] transitions = [ ...
python
def authenticate(self, driver): """Authenticate using the SSH protocol specific FSM.""" # 0 1 2 3 events = [driver.press_return_re, driver.password_re, self.device.prompt_re, pexpect.TIMEOUT] transitions = [ ...
[ "def", "authenticate", "(", "self", ",", "driver", ")", ":", "events", "=", "[", "driver", ".", "press_return_re", ",", "driver", ".", "password_re", ",", "self", ".", "device", ".", "prompt_re", ",", "pexpect", ".", "TIMEOUT", "]", "transitions", "=", "...
Authenticate using the SSH protocol specific FSM.
[ "Authenticate", "using", "the", "SSH", "protocol", "specific", "FSM", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/protocols/ssh.py#L85-L102
train
kstaniek/condoor
condoor/protocols/ssh.py
SSH.disconnect
def disconnect(self, driver): """Disconnect using the protocol specific method.""" self.log("SSH disconnect") try: self.device.ctrl.sendline('\x03') self.device.ctrl.sendline('\x04') except OSError: self.log("Protocol already disconnected")
python
def disconnect(self, driver): """Disconnect using the protocol specific method.""" self.log("SSH disconnect") try: self.device.ctrl.sendline('\x03') self.device.ctrl.sendline('\x04') except OSError: self.log("Protocol already disconnected")
[ "def", "disconnect", "(", "self", ",", "driver", ")", ":", "self", ".", "log", "(", "\"SSH disconnect\"", ")", "try", ":", "self", ".", "device", ".", "ctrl", ".", "sendline", "(", "'\\x03'", ")", "self", ".", "device", ".", "ctrl", ".", "sendline", ...
Disconnect using the protocol specific method.
[ "Disconnect", "using", "the", "protocol", "specific", "method", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/protocols/ssh.py#L104-L111
train
kstaniek/condoor
condoor/protocols/ssh.py
SSH.fallback_to_sshv1
def fallback_to_sshv1(self, ctx): """Fallback to SSHv1.""" command = self.get_command(version=1) ctx.spawn_session(command) return True
python
def fallback_to_sshv1(self, ctx): """Fallback to SSHv1.""" command = self.get_command(version=1) ctx.spawn_session(command) return True
[ "def", "fallback_to_sshv1", "(", "self", ",", "ctx", ")", ":", "command", "=", "self", ".", "get_command", "(", "version", "=", "1", ")", "ctx", ".", "spawn_session", "(", "command", ")", "return", "True" ]
Fallback to SSHv1.
[ "Fallback", "to", "SSHv1", "." ]
77c054b29d4e286c1d7aca2c74dff86b805e1fae
https://github.com/kstaniek/condoor/blob/77c054b29d4e286c1d7aca2c74dff86b805e1fae/condoor/protocols/ssh.py#L115-L119
train
rs/domcheck
domcheck/strategies.py
search_meta_tag
def search_meta_tag(html_doc, prefix, code): """ Checks whether the html_doc contains a meta matching the prefix & code """ regex = '<meta\s+(?:name=([\'\"]){0}\\1\s+content=([\'\"]){1}\\2|content=([\'\"]){1}\\3\s+name=([\'\"]){0}\\4)\s*/?>'.format(prefix, code) meta = re.compile(regex, flags=re.MUL...
python
def search_meta_tag(html_doc, prefix, code): """ Checks whether the html_doc contains a meta matching the prefix & code """ regex = '<meta\s+(?:name=([\'\"]){0}\\1\s+content=([\'\"]){1}\\2|content=([\'\"]){1}\\3\s+name=([\'\"]){0}\\4)\s*/?>'.format(prefix, code) meta = re.compile(regex, flags=re.MUL...
[ "def", "search_meta_tag", "(", "html_doc", ",", "prefix", ",", "code", ")", ":", "regex", "=", "'<meta\\s+(?:name=([\\'\\\"]){0}\\\\1\\s+content=([\\'\\\"]){1}\\\\2|content=([\\'\\\"]){1}\\\\3\\s+name=([\\'\\\"]){0}\\\\4)\\s*/?>'", ".", "format", "(", "prefix", ",", "code", ")"...
Checks whether the html_doc contains a meta matching the prefix & code
[ "Checks", "whether", "the", "html_doc", "contains", "a", "meta", "matching", "the", "prefix", "&", "code" ]
43e10c345320564a1236778e8577e2b8ef825925
https://github.com/rs/domcheck/blob/43e10c345320564a1236778e8577e2b8ef825925/domcheck/strategies.py#L51-L62
train
happyleavesaoc/aoc-mgz
mgz/summary.py
find_postgame
def find_postgame(data, size): """Find postgame struct. We can find postgame location by scanning the last few thousand bytes of the rec and looking for a pattern as follows: [action op] [action length] [action type] 01 00 00 00 30 08 00 00 ff The last occurance of this pa...
python
def find_postgame(data, size): """Find postgame struct. We can find postgame location by scanning the last few thousand bytes of the rec and looking for a pattern as follows: [action op] [action length] [action type] 01 00 00 00 30 08 00 00 ff The last occurance of this pa...
[ "def", "find_postgame", "(", "data", ",", "size", ")", ":", "pos", "=", "None", "for", "i", "in", "range", "(", "size", "-", "SEARCH_MAX_BYTES", ",", "size", "-", "LOOKAHEAD", ")", ":", "op_type", ",", "length", ",", "action_type", "=", "struct", ".", ...
Find postgame struct. We can find postgame location by scanning the last few thousand bytes of the rec and looking for a pattern as follows: [action op] [action length] [action type] 01 00 00 00 30 08 00 00 ff The last occurance of this pattern signals the start of the pos...
[ "Find", "postgame", "struct", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/summary.py#L54-L73
train
happyleavesaoc/aoc-mgz
mgz/summary.py
parse_postgame
def parse_postgame(handle, size): """Parse postgame structure.""" data = handle.read() postgame = find_postgame(data, size) if postgame: pos, length = postgame try: return mgz.body.actions.postgame.parse(data[pos:pos + length]) except construct.core.ConstructError: ...
python
def parse_postgame(handle, size): """Parse postgame structure.""" data = handle.read() postgame = find_postgame(data, size) if postgame: pos, length = postgame try: return mgz.body.actions.postgame.parse(data[pos:pos + length]) except construct.core.ConstructError: ...
[ "def", "parse_postgame", "(", "handle", ",", "size", ")", ":", "data", "=", "handle", ".", "read", "(", ")", "postgame", "=", "find_postgame", "(", "data", ",", "size", ")", "if", "postgame", ":", "pos", ",", "length", "=", "postgame", "try", ":", "r...
Parse postgame structure.
[ "Parse", "postgame", "structure", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/summary.py#L76-L86
train
happyleavesaoc/aoc-mgz
mgz/summary.py
ach
def ach(structure, fields): """Get field from achievements structure.""" field = fields.pop(0) if structure: if hasattr(structure, field): structure = getattr(structure, field) if not fields: return structure return ach(structure, fields) retur...
python
def ach(structure, fields): """Get field from achievements structure.""" field = fields.pop(0) if structure: if hasattr(structure, field): structure = getattr(structure, field) if not fields: return structure return ach(structure, fields) retur...
[ "def", "ach", "(", "structure", ",", "fields", ")", ":", "field", "=", "fields", ".", "pop", "(", "0", ")", "if", "structure", ":", "if", "hasattr", "(", "structure", ",", "field", ")", ":", "structure", "=", "getattr", "(", "structure", ",", "field"...
Get field from achievements structure.
[ "Get", "field", "from", "achievements", "structure", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/summary.py#L89-L98
train
happyleavesaoc/aoc-mgz
mgz/summary.py
Summary.get_postgame
def get_postgame(self): """Get postgame structure.""" if self._cache['postgame'] is not None: return self._cache['postgame'] self._handle.seek(0) try: self._cache['postgame'] = parse_postgame(self._handle, self.size) return self._cache['postgame'] ...
python
def get_postgame(self): """Get postgame structure.""" if self._cache['postgame'] is not None: return self._cache['postgame'] self._handle.seek(0) try: self._cache['postgame'] = parse_postgame(self._handle, self.size) return self._cache['postgame'] ...
[ "def", "get_postgame", "(", "self", ")", ":", "if", "self", ".", "_cache", "[", "'postgame'", "]", "is", "not", "None", ":", "return", "self", ".", "_cache", "[", "'postgame'", "]", "self", ".", "_handle", ".", "seek", "(", "0", ")", "try", ":", "s...
Get postgame structure.
[ "Get", "postgame", "structure", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/summary.py#L138-L150
train
happyleavesaoc/aoc-mgz
mgz/summary.py
Summary.get_duration
def get_duration(self): """Get game duration.""" postgame = self.get_postgame() if postgame: return postgame.duration_int * 1000 duration = self._header.initial.restore_time try: while self._handle.tell() < self.size: operation = mgz.body.o...
python
def get_duration(self): """Get game duration.""" postgame = self.get_postgame() if postgame: return postgame.duration_int * 1000 duration = self._header.initial.restore_time try: while self._handle.tell() < self.size: operation = mgz.body.o...
[ "def", "get_duration", "(", "self", ")", ":", "postgame", "=", "self", ".", "get_postgame", "(", ")", "if", "postgame", ":", "return", "postgame", ".", "duration_int", "*", "1000", "duration", "=", "self", ".", "_header", ".", "initial", ".", "restore_time...
Get game duration.
[ "Get", "game", "duration", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/summary.py#L152-L169
train
happyleavesaoc/aoc-mgz
mgz/summary.py
Summary.get_restored
def get_restored(self): """Check for restored game.""" return self._header.initial.restore_time > 0, self._header.initial.restore_time
python
def get_restored(self): """Check for restored game.""" return self._header.initial.restore_time > 0, self._header.initial.restore_time
[ "def", "get_restored", "(", "self", ")", ":", "return", "self", ".", "_header", ".", "initial", ".", "restore_time", ">", "0", ",", "self", ".", "_header", ".", "initial", ".", "restore_time" ]
Check for restored game.
[ "Check", "for", "restored", "game", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/summary.py#L171-L173
train
happyleavesaoc/aoc-mgz
mgz/summary.py
Summary.get_version
def get_version(self): """Get game version.""" return mgz.const.VERSIONS[self._header.version], str(self._header.sub_version)[:5]
python
def get_version(self): """Get game version.""" return mgz.const.VERSIONS[self._header.version], str(self._header.sub_version)[:5]
[ "def", "get_version", "(", "self", ")", ":", "return", "mgz", ".", "const", ".", "VERSIONS", "[", "self", ".", "_header", ".", "version", "]", ",", "str", "(", "self", ".", "_header", ".", "sub_version", ")", "[", ":", "5", "]" ]
Get game version.
[ "Get", "game", "version", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/summary.py#L175-L177
train
happyleavesaoc/aoc-mgz
mgz/summary.py
Summary.get_dataset
def get_dataset(self): """Get dataset.""" sample = self._header.initial.players[0].attributes.player_stats if 'mod' in sample and sample.mod['id'] > 0: return sample.mod elif 'trickle_food' in sample and sample.trickle_food: return { 'id': 1, ...
python
def get_dataset(self): """Get dataset.""" sample = self._header.initial.players[0].attributes.player_stats if 'mod' in sample and sample.mod['id'] > 0: return sample.mod elif 'trickle_food' in sample and sample.trickle_food: return { 'id': 1, ...
[ "def", "get_dataset", "(", "self", ")", ":", "sample", "=", "self", ".", "_header", ".", "initial", ".", "players", "[", "0", "]", ".", "attributes", ".", "player_stats", "if", "'mod'", "in", "sample", "and", "sample", ".", "mod", "[", "'id'", "]", "...
Get dataset.
[ "Get", "dataset", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/summary.py#L179-L194
train
happyleavesaoc/aoc-mgz
mgz/summary.py
Summary.get_teams
def get_teams(self): """Get teams.""" if self._cache['teams']: return self._cache['teams'] teams = [] for j, player in enumerate(self._header.initial.players): added = False for i in range(0, len(self._header.initial.players)): if playe...
python
def get_teams(self): """Get teams.""" if self._cache['teams']: return self._cache['teams'] teams = [] for j, player in enumerate(self._header.initial.players): added = False for i in range(0, len(self._header.initial.players)): if playe...
[ "def", "get_teams", "(", "self", ")", ":", "if", "self", ".", "_cache", "[", "'teams'", "]", ":", "return", "self", ".", "_cache", "[", "'teams'", "]", "teams", "=", "[", "]", "for", "j", ",", "player", "in", "enumerate", "(", "self", ".", "_header...
Get teams.
[ "Get", "teams", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/summary.py#L200-L231
train
happyleavesaoc/aoc-mgz
mgz/summary.py
Summary.get_achievements
def get_achievements(self, name): """Get achievements for a player. Must match on name, not index, since order is not always the same. """ postgame = self.get_postgame() if not postgame: return None for achievements in postgame.achievements: # ach...
python
def get_achievements(self, name): """Get achievements for a player. Must match on name, not index, since order is not always the same. """ postgame = self.get_postgame() if not postgame: return None for achievements in postgame.achievements: # ach...
[ "def", "get_achievements", "(", "self", ",", "name", ")", ":", "postgame", "=", "self", ".", "get_postgame", "(", ")", "if", "not", "postgame", ":", "return", "None", "for", "achievements", "in", "postgame", ".", "achievements", ":", "if", "name", ".", "...
Get achievements for a player. Must match on name, not index, since order is not always the same.
[ "Get", "achievements", "for", "a", "player", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/summary.py#L265-L277
train
happyleavesaoc/aoc-mgz
mgz/summary.py
Summary._process_body
def _process_body(self): """Get Voobly ladder. This is expensive if the rec is not from Voobly, since it will search the whole file. Returns tuple, (from_voobly, ladder_name, rated, ratings). """ start_time = time.time() ratings = {} encoding = self.get_e...
python
def _process_body(self): """Get Voobly ladder. This is expensive if the rec is not from Voobly, since it will search the whole file. Returns tuple, (from_voobly, ladder_name, rated, ratings). """ start_time = time.time() ratings = {} encoding = self.get_e...
[ "def", "_process_body", "(", "self", ")", ":", "start_time", "=", "time", ".", "time", "(", ")", "ratings", "=", "{", "}", "encoding", "=", "self", ".", "get_encoding", "(", ")", "checksums", "=", "[", "]", "ladder", "=", "None", "voobly", "=", "Fals...
Get Voobly ladder. This is expensive if the rec is not from Voobly, since it will search the whole file. Returns tuple, (from_voobly, ladder_name, rated, ratings).
[ "Get", "Voobly", "ladder", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/summary.py#L353-L403
train
happyleavesaoc/aoc-mgz
mgz/summary.py
Summary.get_settings
def get_settings(self): """Get settings.""" postgame = self.get_postgame() return { 'type': ( self._header.lobby.game_type_id, self._header.lobby.game_type ), 'difficulty': ( self._header.scenario.game_settings.d...
python
def get_settings(self): """Get settings.""" postgame = self.get_postgame() return { 'type': ( self._header.lobby.game_type_id, self._header.lobby.game_type ), 'difficulty': ( self._header.scenario.game_settings.d...
[ "def", "get_settings", "(", "self", ")", ":", "postgame", "=", "self", ".", "get_postgame", "(", ")", "return", "{", "'type'", ":", "(", "self", ".", "_header", ".", "lobby", ".", "game_type_id", ",", "self", ".", "_header", ".", "lobby", ".", "game_ty...
Get settings.
[ "Get", "settings", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/summary.py#L405-L444
train
happyleavesaoc/aoc-mgz
mgz/summary.py
Summary.get_map
def get_map(self): """Get the map metadata.""" if self._cache['map']: return self._cache['map'] map_id = self._header.scenario.game_settings.map_id instructions = self._header.scenario.messages.instructions size = mgz.const.MAP_SIZES.get(self._header.map_info.size_x) ...
python
def get_map(self): """Get the map metadata.""" if self._cache['map']: return self._cache['map'] map_id = self._header.scenario.game_settings.map_id instructions = self._header.scenario.messages.instructions size = mgz.const.MAP_SIZES.get(self._header.map_info.size_x) ...
[ "def", "get_map", "(", "self", ")", ":", "if", "self", ".", "_cache", "[", "'map'", "]", ":", "return", "self", ".", "_cache", "[", "'map'", "]", "map_id", "=", "self", ".", "_header", ".", "scenario", ".", "game_settings", ".", "map_id", "instructions...
Get the map metadata.
[ "Get", "the", "map", "metadata", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/summary.py#L461-L533
train
happyleavesaoc/aoc-mgz
mgz/summary.py
Summary.get_completed
def get_completed(self): """Determine if the game was completed. If there's a postgame, it will indicate completion. If there is no postgame, guess based on resignation. """ postgame = self.get_postgame() if postgame: return postgame.complete else: ...
python
def get_completed(self): """Determine if the game was completed. If there's a postgame, it will indicate completion. If there is no postgame, guess based on resignation. """ postgame = self.get_postgame() if postgame: return postgame.complete else: ...
[ "def", "get_completed", "(", "self", ")", ":", "postgame", "=", "self", ".", "get_postgame", "(", ")", "if", "postgame", ":", "return", "postgame", ".", "complete", "else", ":", "return", "True", "if", "self", ".", "_cache", "[", "'resigned'", "]", "else...
Determine if the game was completed. If there's a postgame, it will indicate completion. If there is no postgame, guess based on resignation.
[ "Determine", "if", "the", "game", "was", "completed", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/summary.py#L535-L545
train
happyleavesaoc/aoc-mgz
mgz/summary.py
Summary.get_mirror
def get_mirror(self): """Determine mirror match.""" mirror = False if self.get_diplomacy()['1v1']: civs = set() for data in self.get_players(): civs.add(data['civilization']) mirror = (len(civs) == 1) return mirror
python
def get_mirror(self): """Determine mirror match.""" mirror = False if self.get_diplomacy()['1v1']: civs = set() for data in self.get_players(): civs.add(data['civilization']) mirror = (len(civs) == 1) return mirror
[ "def", "get_mirror", "(", "self", ")", ":", "mirror", "=", "False", "if", "self", ".", "get_diplomacy", "(", ")", "[", "'1v1'", "]", ":", "civs", "=", "set", "(", ")", "for", "data", "in", "self", ".", "get_players", "(", ")", ":", "civs", ".", "...
Determine mirror match.
[ "Determine", "mirror", "match", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/summary.py#L547-L555
train
happyleavesaoc/aoc-mgz
mgz/summary.py
Summary.guess_winner
def guess_winner(self, i): """Guess if a player won. Find what team the player was on. If anyone on their team resigned, assume the player lost. """ for team in self.get_teams(): if i not in team: continue for p in team: if...
python
def guess_winner(self, i): """Guess if a player won. Find what team the player was on. If anyone on their team resigned, assume the player lost. """ for team in self.get_teams(): if i not in team: continue for p in team: if...
[ "def", "guess_winner", "(", "self", ",", "i", ")", ":", "for", "team", "in", "self", ".", "get_teams", "(", ")", ":", "if", "i", "not", "in", "team", ":", "continue", "for", "p", "in", "team", ":", "if", "p", "in", "self", ".", "_cache", "[", "...
Guess if a player won. Find what team the player was on. If anyone on their team resigned, assume the player lost.
[ "Guess", "if", "a", "player", "won", "." ]
13fc379cc062d7640bfa028eed9c0d45d37a7b2b
https://github.com/happyleavesaoc/aoc-mgz/blob/13fc379cc062d7640bfa028eed9c0d45d37a7b2b/mgz/summary.py#L557-L569
train
fernandojunior/python-pattern-observer
observer.py
Event.trigger
def trigger(self, *args, **kwargs): """Execute the handlers with a message, if any.""" for h in self.handlers: h(*args, **kwargs)
python
def trigger(self, *args, **kwargs): """Execute the handlers with a message, if any.""" for h in self.handlers: h(*args, **kwargs)
[ "def", "trigger", "(", "self", ",", "*", "args", ",", "**", "kwargs", ")", ":", "for", "h", "in", "self", ".", "handlers", ":", "h", "(", "*", "args", ",", "**", "kwargs", ")" ]
Execute the handlers with a message, if any.
[ "Execute", "the", "handlers", "with", "a", "message", "if", "any", "." ]
9acb029dd6c9276830ea2d7655bbb80eed8e95fa
https://github.com/fernandojunior/python-pattern-observer/blob/9acb029dd6c9276830ea2d7655bbb80eed8e95fa/observer.py#L43-L46
train
fernandojunior/python-pattern-observer
observer.py
Observable.on
def on(self, event, handler=None): """Create, add or update an event with a handler or more attached.""" if isinstance(event, str) and ' ' in event: # event is list str-based self.on(event.split(' '), handler) elif isinstance(event, list): # many events contains same handler ...
python
def on(self, event, handler=None): """Create, add or update an event with a handler or more attached.""" if isinstance(event, str) and ' ' in event: # event is list str-based self.on(event.split(' '), handler) elif isinstance(event, list): # many events contains same handler ...
[ "def", "on", "(", "self", ",", "event", ",", "handler", "=", "None", ")", ":", "if", "isinstance", "(", "event", ",", "str", ")", "and", "' '", "in", "event", ":", "self", ".", "on", "(", "event", ".", "split", "(", "' '", ")", ",", "handler", ...
Create, add or update an event with a handler or more attached.
[ "Create", "add", "or", "update", "an", "event", "with", "a", "handler", "or", "more", "attached", "." ]
9acb029dd6c9276830ea2d7655bbb80eed8e95fa
https://github.com/fernandojunior/python-pattern-observer/blob/9acb029dd6c9276830ea2d7655bbb80eed8e95fa/observer.py#L59-L78
train
fernandojunior/python-pattern-observer
observer.py
Observable.off
def off(self, event, handler=None): """Remove an event or a handler from it.""" if handler: self.events[event].off(handler) else: del self.events[event] delattr(self, event)
python
def off(self, event, handler=None): """Remove an event or a handler from it.""" if handler: self.events[event].off(handler) else: del self.events[event] delattr(self, event)
[ "def", "off", "(", "self", ",", "event", ",", "handler", "=", "None", ")", ":", "if", "handler", ":", "self", ".", "events", "[", "event", "]", ".", "off", "(", "handler", ")", "else", ":", "del", "self", ".", "events", "[", "event", "]", "delatt...
Remove an event or a handler from it.
[ "Remove", "an", "event", "or", "a", "handler", "from", "it", "." ]
9acb029dd6c9276830ea2d7655bbb80eed8e95fa
https://github.com/fernandojunior/python-pattern-observer/blob/9acb029dd6c9276830ea2d7655bbb80eed8e95fa/observer.py#L80-L86
train
fernandojunior/python-pattern-observer
observer.py
Observable.trigger
def trigger(self, *args, **kargs): """ Execute all event handlers with optional arguments for the observable. """ event = args[0] if isinstance(event, str) and ' ' in event: event = event.split(' ') # split event names ... if isinstance(event, list): # eve...
python
def trigger(self, *args, **kargs): """ Execute all event handlers with optional arguments for the observable. """ event = args[0] if isinstance(event, str) and ' ' in event: event = event.split(' ') # split event names ... if isinstance(event, list): # eve...
[ "def", "trigger", "(", "self", ",", "*", "args", ",", "**", "kargs", ")", ":", "event", "=", "args", "[", "0", "]", "if", "isinstance", "(", "event", ",", "str", ")", "and", "' '", "in", "event", ":", "event", "=", "event", ".", "split", "(", "...
Execute all event handlers with optional arguments for the observable.
[ "Execute", "all", "event", "handlers", "with", "optional", "arguments", "for", "the", "observable", "." ]
9acb029dd6c9276830ea2d7655bbb80eed8e95fa
https://github.com/fernandojunior/python-pattern-observer/blob/9acb029dd6c9276830ea2d7655bbb80eed8e95fa/observer.py#L88-L101
train
bfarr/kombine
kombine/interruptible_pool.py
_initializer_wrapper
def _initializer_wrapper(initializer, *args): """ Ignore SIGINT. During typical keyboard interrupts, the parent does the killing. """ signal.signal(signal.SIGINT, signal.SIG_IGN) if initializer is not None: initializer(*args)
python
def _initializer_wrapper(initializer, *args): """ Ignore SIGINT. During typical keyboard interrupts, the parent does the killing. """ signal.signal(signal.SIGINT, signal.SIG_IGN) if initializer is not None: initializer(*args)
[ "def", "_initializer_wrapper", "(", "initializer", ",", "*", "args", ")", ":", "signal", ".", "signal", "(", "signal", ".", "SIGINT", ",", "signal", ".", "SIG_IGN", ")", "if", "initializer", "is", "not", "None", ":", "initializer", "(", "*", "args", ")" ...
Ignore SIGINT. During typical keyboard interrupts, the parent does the killing.
[ "Ignore", "SIGINT", ".", "During", "typical", "keyboard", "interrupts", "the", "parent", "does", "the", "killing", "." ]
50c946dee5da33e7baab71d9bd6c265ff02ffb13
https://github.com/bfarr/kombine/blob/50c946dee5da33e7baab71d9bd6c265ff02ffb13/kombine/interruptible_pool.py#L20-L27
train
networks-lab/tidyextractors
tidyextractors/base_extractor.py
BaseExtractor._col_type_set
def _col_type_set(self, col, df): """ Determines the set of types present in a DataFrame column. :param str col: A column name. :param pandas.DataFrame df: The dataset. Usually ``self._data``. :return: A set of Types. """ type_set = set() if df[col].dtype...
python
def _col_type_set(self, col, df): """ Determines the set of types present in a DataFrame column. :param str col: A column name. :param pandas.DataFrame df: The dataset. Usually ``self._data``. :return: A set of Types. """ type_set = set() if df[col].dtype...
[ "def", "_col_type_set", "(", "self", ",", "col", ",", "df", ")", ":", "type_set", "=", "set", "(", ")", "if", "df", "[", "col", "]", ".", "dtype", "==", "np", ".", "dtype", "(", "object", ")", ":", "unindexed_col", "=", "list", "(", "df", "[", ...
Determines the set of types present in a DataFrame column. :param str col: A column name. :param pandas.DataFrame df: The dataset. Usually ``self._data``. :return: A set of Types.
[ "Determines", "the", "set", "of", "types", "present", "in", "a", "DataFrame", "column", "." ]
658448ed533beecf32adcc188fc64d1068d15ca6
https://github.com/networks-lab/tidyextractors/blob/658448ed533beecf32adcc188fc64d1068d15ca6/tidyextractors/base_extractor.py#L84-L103
train
networks-lab/tidyextractors
tidyextractors/base_extractor.py
BaseExtractor.raw
def raw(self, drop_collections = False): """ Produces the extractor object's data as it is stored internally. :param bool drop_collections: Defaults to False. Indicates whether columns with lists/dicts/sets will be dropped. :return: pandas.DataFrame """ base_df = self._...
python
def raw(self, drop_collections = False): """ Produces the extractor object's data as it is stored internally. :param bool drop_collections: Defaults to False. Indicates whether columns with lists/dicts/sets will be dropped. :return: pandas.DataFrame """ base_df = self._...
[ "def", "raw", "(", "self", ",", "drop_collections", "=", "False", ")", ":", "base_df", "=", "self", ".", "_data", "if", "drop_collections", "is", "True", ":", "out_df", "=", "self", ".", "_drop_collections", "(", "base_df", ")", "else", ":", "out_df", "=...
Produces the extractor object's data as it is stored internally. :param bool drop_collections: Defaults to False. Indicates whether columns with lists/dicts/sets will be dropped. :return: pandas.DataFrame
[ "Produces", "the", "extractor", "object", "s", "data", "as", "it", "is", "stored", "internally", "." ]
658448ed533beecf32adcc188fc64d1068d15ca6
https://github.com/networks-lab/tidyextractors/blob/658448ed533beecf32adcc188fc64d1068d15ca6/tidyextractors/base_extractor.py#L121-L134
train
TkTech/Jawa
jawa/classloader.py
_walk
def _walk(path, follow_links=False, maximum_depth=None): """A modified os.walk with support for maximum traversal depth.""" root_level = path.rstrip(os.path.sep).count(os.path.sep) for root, dirs, files in os.walk(path, followlinks=follow_links): yield root, dirs, files if maximum_depth is N...
python
def _walk(path, follow_links=False, maximum_depth=None): """A modified os.walk with support for maximum traversal depth.""" root_level = path.rstrip(os.path.sep).count(os.path.sep) for root, dirs, files in os.walk(path, followlinks=follow_links): yield root, dirs, files if maximum_depth is N...
[ "def", "_walk", "(", "path", ",", "follow_links", "=", "False", ",", "maximum_depth", "=", "None", ")", ":", "root_level", "=", "path", ".", "rstrip", "(", "os", ".", "path", ".", "sep", ")", ".", "count", "(", "os", ".", "path", ".", "sep", ")", ...
A modified os.walk with support for maximum traversal depth.
[ "A", "modified", "os", ".", "walk", "with", "support", "for", "maximum", "traversal", "depth", "." ]
94c8424e699029ac33fbc0e866fff0ecb2742289
https://github.com/TkTech/Jawa/blob/94c8424e699029ac33fbc0e866fff0ecb2742289/jawa/classloader.py#L14-L23
train
TkTech/Jawa
jawa/classloader.py
ClassLoader.update
def update(self, *sources, follow_symlinks: bool=False, maximum_depth: int=20): """Add one or more ClassFile sources to the class loader. If a given source is a directory path, it is traversed up to the maximum set depth and all files under it are added to the class loader ...
python
def update(self, *sources, follow_symlinks: bool=False, maximum_depth: int=20): """Add one or more ClassFile sources to the class loader. If a given source is a directory path, it is traversed up to the maximum set depth and all files under it are added to the class loader ...
[ "def", "update", "(", "self", ",", "*", "sources", ",", "follow_symlinks", ":", "bool", "=", "False", ",", "maximum_depth", ":", "int", "=", "20", ")", ":", "for", "source", "in", "sources", ":", "if", "isinstance", "(", "source", ",", "self", ".", "...
Add one or more ClassFile sources to the class loader. If a given source is a directory path, it is traversed up to the maximum set depth and all files under it are added to the class loader lookup table. If a given source is a .jar or .zip file it will be opened and the file i...
[ "Add", "one", "or", "more", "ClassFile", "sources", "to", "the", "class", "loader", "." ]
94c8424e699029ac33fbc0e866fff0ecb2742289
https://github.com/TkTech/Jawa/blob/94c8424e699029ac33fbc0e866fff0ecb2742289/jawa/classloader.py#L62-L105
train
TkTech/Jawa
jawa/classloader.py
ClassLoader.open
def open(self, path: str, mode: str='r') -> IO: """Open an IO-like object for `path`. .. note:: Mode *must* be either 'r' or 'w', as the underlying objects do not understand the full range of modes. :param path: The path to open. :param mode: The mode of the fi...
python
def open(self, path: str, mode: str='r') -> IO: """Open an IO-like object for `path`. .. note:: Mode *must* be either 'r' or 'w', as the underlying objects do not understand the full range of modes. :param path: The path to open. :param mode: The mode of the fi...
[ "def", "open", "(", "self", ",", "path", ":", "str", ",", "mode", ":", "str", "=", "'r'", ")", "->", "IO", ":", "entry", "=", "self", ".", "path_map", ".", "get", "(", "path", ")", "if", "entry", "is", "None", ":", "raise", "FileNotFoundError", "...
Open an IO-like object for `path`. .. note:: Mode *must* be either 'r' or 'w', as the underlying objects do not understand the full range of modes. :param path: The path to open. :param mode: The mode of the file being opened, either 'r' or 'w'.
[ "Open", "an", "IO", "-", "like", "object", "for", "path", "." ]
94c8424e699029ac33fbc0e866fff0ecb2742289
https://github.com/TkTech/Jawa/blob/94c8424e699029ac33fbc0e866fff0ecb2742289/jawa/classloader.py#L108-L129
train
TkTech/Jawa
jawa/classloader.py
ClassLoader.load
def load(self, path: str) -> ClassFile: """Load the class at `path` and return it. Load will attempt to load the file at `path` and `path` + .class before failing. :param path: Fully-qualified path to a ClassFile. """ # Try to refresh the class from the cache, loading i...
python
def load(self, path: str) -> ClassFile: """Load the class at `path` and return it. Load will attempt to load the file at `path` and `path` + .class before failing. :param path: Fully-qualified path to a ClassFile. """ # Try to refresh the class from the cache, loading i...
[ "def", "load", "(", "self", ",", "path", ":", "str", ")", "->", "ClassFile", ":", "try", ":", "r", "=", "self", ".", "class_cache", ".", "pop", "(", "path", ")", "except", "KeyError", ":", "with", "self", ".", "open", "(", "f'{path}.class'", ")", "...
Load the class at `path` and return it. Load will attempt to load the file at `path` and `path` + .class before failing. :param path: Fully-qualified path to a ClassFile.
[ "Load", "the", "class", "at", "path", "and", "return", "it", "." ]
94c8424e699029ac33fbc0e866fff0ecb2742289
https://github.com/TkTech/Jawa/blob/94c8424e699029ac33fbc0e866fff0ecb2742289/jawa/classloader.py#L131-L159
train
TkTech/Jawa
jawa/classloader.py
ClassLoader.dependencies
def dependencies(self, path: str) -> Set[str]: """Returns a set of all classes referenced by the ClassFile at `path` without reading the entire ClassFile. This is an optimization method that does not load a complete ClassFile, nor does it add the results to the ClassLoader cache. ...
python
def dependencies(self, path: str) -> Set[str]: """Returns a set of all classes referenced by the ClassFile at `path` without reading the entire ClassFile. This is an optimization method that does not load a complete ClassFile, nor does it add the results to the ClassLoader cache. ...
[ "def", "dependencies", "(", "self", ",", "path", ":", "str", ")", "->", "Set", "[", "str", "]", ":", "return", "set", "(", "c", ".", "name", ".", "value", "for", "c", "in", "self", ".", "search_constant_pool", "(", "path", "=", "path", ",", "type_"...
Returns a set of all classes referenced by the ClassFile at `path` without reading the entire ClassFile. This is an optimization method that does not load a complete ClassFile, nor does it add the results to the ClassLoader cache. :param path: Fully-qualified path to a ClassFile.
[ "Returns", "a", "set", "of", "all", "classes", "referenced", "by", "the", "ClassFile", "at", "path", "without", "reading", "the", "entire", "ClassFile", "." ]
94c8424e699029ac33fbc0e866fff0ecb2742289
https://github.com/TkTech/Jawa/blob/94c8424e699029ac33fbc0e866fff0ecb2742289/jawa/classloader.py#L166-L178
train
TkTech/Jawa
jawa/classloader.py
ClassLoader.search_constant_pool
def search_constant_pool(self, *, path: str, **options): """Partially load the class at `path`, yield all matching constants from the ConstantPool. This is an optimization method that does not load a complete ClassFile, nor does it add the results to the ClassLoader cache. :par...
python
def search_constant_pool(self, *, path: str, **options): """Partially load the class at `path`, yield all matching constants from the ConstantPool. This is an optimization method that does not load a complete ClassFile, nor does it add the results to the ClassLoader cache. :par...
[ "def", "search_constant_pool", "(", "self", ",", "*", ",", "path", ":", "str", ",", "**", "options", ")", ":", "with", "self", ".", "open", "(", "f'{path}.class'", ")", "as", "source", ":", "source", ".", "read", "(", "8", ")", "pool", "=", "Constant...
Partially load the class at `path`, yield all matching constants from the ConstantPool. This is an optimization method that does not load a complete ClassFile, nor does it add the results to the ClassLoader cache. :param path: Fully-qualified path to a ClassFile. :param options...
[ "Partially", "load", "the", "class", "at", "path", "yield", "all", "matching", "constants", "from", "the", "ConstantPool", "." ]
94c8424e699029ac33fbc0e866fff0ecb2742289
https://github.com/TkTech/Jawa/blob/94c8424e699029ac33fbc0e866fff0ecb2742289/jawa/classloader.py#L180-L195
train
TkTech/Jawa
jawa/classloader.py
ClassLoader.classes
def classes(self) -> Iterator[str]: """Yield the name of all classes discovered in the path map.""" yield from ( c[:-6] for c in self.path_map.keys() if c.endswith('.class') )
python
def classes(self) -> Iterator[str]: """Yield the name of all classes discovered in the path map.""" yield from ( c[:-6] for c in self.path_map.keys() if c.endswith('.class') )
[ "def", "classes", "(", "self", ")", "->", "Iterator", "[", "str", "]", ":", "yield", "from", "(", "c", "[", ":", "-", "6", "]", "for", "c", "in", "self", ".", "path_map", ".", "keys", "(", ")", "if", "c", ".", "endswith", "(", "'.class'", ")", ...
Yield the name of all classes discovered in the path map.
[ "Yield", "the", "name", "of", "all", "classes", "discovered", "in", "the", "path", "map", "." ]
94c8424e699029ac33fbc0e866fff0ecb2742289
https://github.com/TkTech/Jawa/blob/94c8424e699029ac33fbc0e866fff0ecb2742289/jawa/classloader.py#L198-L203
train
networks-lab/tidyextractors
tidyextractors/tidytwitter/twitter_extractor.py
TwitterExtractor._make_object_dict
def _make_object_dict(self, obj): """ Processes an object, exporting its data as a nested dictionary. :param obj: An object :return: A nested dictionary of object data """ data = {} for attr in dir(obj): if attr[0] is not '_' and attr is not 'status':...
python
def _make_object_dict(self, obj): """ Processes an object, exporting its data as a nested dictionary. :param obj: An object :return: A nested dictionary of object data """ data = {} for attr in dir(obj): if attr[0] is not '_' and attr is not 'status':...
[ "def", "_make_object_dict", "(", "self", ",", "obj", ")", ":", "data", "=", "{", "}", "for", "attr", "in", "dir", "(", "obj", ")", ":", "if", "attr", "[", "0", "]", "is", "not", "'_'", "and", "attr", "is", "not", "'status'", ":", "datum", "=", ...
Processes an object, exporting its data as a nested dictionary. :param obj: An object :return: A nested dictionary of object data
[ "Processes", "an", "object", "exporting", "its", "data", "as", "a", "nested", "dictionary", "." ]
658448ed533beecf32adcc188fc64d1068d15ca6
https://github.com/networks-lab/tidyextractors/blob/658448ed533beecf32adcc188fc64d1068d15ca6/tidyextractors/tidytwitter/twitter_extractor.py#L165-L178
train
TkTech/Jawa
jawa/fields.py
Field.unpack
def unpack(self, source: IO): """ Read the Field from the file-like object `fio`. .. note:: Advanced usage only. You will typically never need to call this method as it will be called for you when loading a ClassFile. :param source: Any file-like object providi...
python
def unpack(self, source: IO): """ Read the Field from the file-like object `fio`. .. note:: Advanced usage only. You will typically never need to call this method as it will be called for you when loading a ClassFile. :param source: Any file-like object providi...
[ "def", "unpack", "(", "self", ",", "source", ":", "IO", ")", ":", "self", ".", "access_flags", ".", "unpack", "(", "source", ".", "read", "(", "2", ")", ")", "self", ".", "_name_index", ",", "self", ".", "_descriptor_index", "=", "unpack", "(", "'>HH...
Read the Field from the file-like object `fio`. .. note:: Advanced usage only. You will typically never need to call this method as it will be called for you when loading a ClassFile. :param source: Any file-like object providing `read()`
[ "Read", "the", "Field", "from", "the", "file", "-", "like", "object", "fio", "." ]
94c8424e699029ac33fbc0e866fff0ecb2742289
https://github.com/TkTech/Jawa/blob/94c8424e699029ac33fbc0e866fff0ecb2742289/jawa/fields.py#L59-L72
train