partition
stringclasses
3 values
func_name
stringlengths
1
134
docstring
stringlengths
1
46.9k
path
stringlengths
4
223
original_string
stringlengths
75
104k
code
stringlengths
75
104k
docstring_tokens
listlengths
1
1.97k
repo
stringlengths
7
55
language
stringclasses
1 value
url
stringlengths
87
315
code_tokens
listlengths
19
28.4k
sha
stringlengths
40
40
valid
pack_into_dict
Same as :func:`~bitstruct.pack_into()`, but data is read from a dictionary. See :func:`~bitstruct.pack_dict()` for details on `names`.
bitstruct.py
def pack_into_dict(fmt, names, buf, offset, data, **kwargs): """Same as :func:`~bitstruct.pack_into()`, but data is read from a dictionary. See :func:`~bitstruct.pack_dict()` for details on `names`. """ return CompiledFormatDict(fmt, names).pack_into(buf, ...
def pack_into_dict(fmt, names, buf, offset, data, **kwargs): """Same as :func:`~bitstruct.pack_into()`, but data is read from a dictionary. See :func:`~bitstruct.pack_dict()` for details on `names`. """ return CompiledFormatDict(fmt, names).pack_into(buf, ...
[ "Same", "as", ":", "func", ":", "~bitstruct", ".", "pack_into", "()", "but", "data", "is", "read", "from", "a", "dictionary", "." ]
eerimoq/bitstruct
python
https://github.com/eerimoq/bitstruct/blob/8e887c10241aa51c2a77c10e9923bb3978b15bcb/bitstruct.py#L575-L586
[ "def", "pack_into_dict", "(", "fmt", ",", "names", ",", "buf", ",", "offset", ",", "data", ",", "*", "*", "kwargs", ")", ":", "return", "CompiledFormatDict", "(", "fmt", ",", "names", ")", ".", "pack_into", "(", "buf", ",", "offset", ",", "data", ","...
8e887c10241aa51c2a77c10e9923bb3978b15bcb
valid
unpack_from_dict
Same as :func:`~bitstruct.unpack_from_dict()`, but returns a dictionary. See :func:`~bitstruct.pack_dict()` for details on `names`.
bitstruct.py
def unpack_from_dict(fmt, names, data, offset=0): """Same as :func:`~bitstruct.unpack_from_dict()`, but returns a dictionary. See :func:`~bitstruct.pack_dict()` for details on `names`. """ return CompiledFormatDict(fmt, names).unpack_from(data, offset)
def unpack_from_dict(fmt, names, data, offset=0): """Same as :func:`~bitstruct.unpack_from_dict()`, but returns a dictionary. See :func:`~bitstruct.pack_dict()` for details on `names`. """ return CompiledFormatDict(fmt, names).unpack_from(data, offset)
[ "Same", "as", ":", "func", ":", "~bitstruct", ".", "unpack_from_dict", "()", "but", "returns", "a", "dictionary", "." ]
eerimoq/bitstruct
python
https://github.com/eerimoq/bitstruct/blob/8e887c10241aa51c2a77c10e9923bb3978b15bcb/bitstruct.py#L589-L597
[ "def", "unpack_from_dict", "(", "fmt", ",", "names", ",", "data", ",", "offset", "=", "0", ")", ":", "return", "CompiledFormatDict", "(", "fmt", ",", "names", ")", ".", "unpack_from", "(", "data", ",", "offset", ")" ]
8e887c10241aa51c2a77c10e9923bb3978b15bcb
valid
byteswap
Swap bytes in `data` according to `fmt`, starting at byte `offset` and return the result. `fmt` must be an iterable, iterating over number of bytes to swap. For example, the format string ``'24'`` applied to the bytes ``b'\\x00\\x11\\x22\\x33\\x44\\x55'`` will produce the result ``b'\\x11\\x00\\x55\\x44...
bitstruct.py
def byteswap(fmt, data, offset=0): """Swap bytes in `data` according to `fmt`, starting at byte `offset` and return the result. `fmt` must be an iterable, iterating over number of bytes to swap. For example, the format string ``'24'`` applied to the bytes ``b'\\x00\\x11\\x22\\x33\\x44\\x55'`` will p...
def byteswap(fmt, data, offset=0): """Swap bytes in `data` according to `fmt`, starting at byte `offset` and return the result. `fmt` must be an iterable, iterating over number of bytes to swap. For example, the format string ``'24'`` applied to the bytes ``b'\\x00\\x11\\x22\\x33\\x44\\x55'`` will p...
[ "Swap", "bytes", "in", "data", "according", "to", "fmt", "starting", "at", "byte", "offset", "and", "return", "the", "result", ".", "fmt", "must", "be", "an", "iterable", "iterating", "over", "number", "of", "bytes", "to", "swap", ".", "For", "example", ...
eerimoq/bitstruct
python
https://github.com/eerimoq/bitstruct/blob/8e887c10241aa51c2a77c10e9923bb3978b15bcb/bitstruct.py#L611-L628
[ "def", "byteswap", "(", "fmt", ",", "data", ",", "offset", "=", "0", ")", ":", "data", "=", "BytesIO", "(", "data", ")", "data", ".", "seek", "(", "offset", ")", "data_swapped", "=", "BytesIO", "(", ")", "for", "f", "in", "fmt", ":", "swapped", "...
8e887c10241aa51c2a77c10e9923bb3978b15bcb
valid
CompiledFormat.pack
See :func:`~bitstruct.pack()`.
bitstruct.py
def pack(self, *args): """See :func:`~bitstruct.pack()`. """ # Sanity check of the number of arguments. if len(args) < self._number_of_arguments: raise Error( "pack expected {} item(s) for packing (got {})".format( self._number_of_argumen...
def pack(self, *args): """See :func:`~bitstruct.pack()`. """ # Sanity check of the number of arguments. if len(args) < self._number_of_arguments: raise Error( "pack expected {} item(s) for packing (got {})".format( self._number_of_argumen...
[ "See", ":", "func", ":", "~bitstruct", ".", "pack", "()", "." ]
eerimoq/bitstruct
python
https://github.com/eerimoq/bitstruct/blob/8e887c10241aa51c2a77c10e9923bb3978b15bcb/bitstruct.py#L379-L391
[ "def", "pack", "(", "self", ",", "*", "args", ")", ":", "# Sanity check of the number of arguments.", "if", "len", "(", "args", ")", "<", "self", ".", "_number_of_arguments", ":", "raise", "Error", "(", "\"pack expected {} item(s) for packing (got {})\"", ".", "form...
8e887c10241aa51c2a77c10e9923bb3978b15bcb
valid
CompiledFormat.pack_into
See :func:`~bitstruct.pack_into()`.
bitstruct.py
def pack_into(self, buf, offset, *args, **kwargs): """See :func:`~bitstruct.pack_into()`. """ # Sanity check of the number of arguments. if len(args) < self._number_of_arguments: raise Error( "pack expected {} item(s) for packing (got {})".format( ...
def pack_into(self, buf, offset, *args, **kwargs): """See :func:`~bitstruct.pack_into()`. """ # Sanity check of the number of arguments. if len(args) < self._number_of_arguments: raise Error( "pack expected {} item(s) for packing (got {})".format( ...
[ "See", ":", "func", ":", "~bitstruct", ".", "pack_into", "()", "." ]
eerimoq/bitstruct
python
https://github.com/eerimoq/bitstruct/blob/8e887c10241aa51c2a77c10e9923bb3978b15bcb/bitstruct.py#L400-L412
[ "def", "pack_into", "(", "self", ",", "buf", ",", "offset", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "# Sanity check of the number of arguments.", "if", "len", "(", "args", ")", "<", "self", ".", "_number_of_arguments", ":", "raise", "Error", "...
8e887c10241aa51c2a77c10e9923bb3978b15bcb
valid
CompiledFormat.unpack_from
See :func:`~bitstruct.unpack_from()`.
bitstruct.py
def unpack_from(self, data, offset=0): """See :func:`~bitstruct.unpack_from()`. """ return tuple([v[1] for v in self.unpack_from_any(data, offset)])
def unpack_from(self, data, offset=0): """See :func:`~bitstruct.unpack_from()`. """ return tuple([v[1] for v in self.unpack_from_any(data, offset)])
[ "See", ":", "func", ":", "~bitstruct", ".", "unpack_from", "()", "." ]
eerimoq/bitstruct
python
https://github.com/eerimoq/bitstruct/blob/8e887c10241aa51c2a77c10e9923bb3978b15bcb/bitstruct.py#L414-L419
[ "def", "unpack_from", "(", "self", ",", "data", ",", "offset", "=", "0", ")", ":", "return", "tuple", "(", "[", "v", "[", "1", "]", "for", "v", "in", "self", ".", "unpack_from_any", "(", "data", ",", "offset", ")", "]", ")" ]
8e887c10241aa51c2a77c10e9923bb3978b15bcb
valid
CompiledFormatDict.pack
See :func:`~bitstruct.pack_dict()`.
bitstruct.py
def pack(self, data): """See :func:`~bitstruct.pack_dict()`. """ try: return self.pack_any(data) except KeyError as e: raise Error('{} not found in data dictionary'.format(str(e)))
def pack(self, data): """See :func:`~bitstruct.pack_dict()`. """ try: return self.pack_any(data) except KeyError as e: raise Error('{} not found in data dictionary'.format(str(e)))
[ "See", ":", "func", ":", "~bitstruct", ".", "pack_dict", "()", "." ]
eerimoq/bitstruct
python
https://github.com/eerimoq/bitstruct/blob/8e887c10241aa51c2a77c10e9923bb3978b15bcb/bitstruct.py#L427-L435
[ "def", "pack", "(", "self", ",", "data", ")", ":", "try", ":", "return", "self", ".", "pack_any", "(", "data", ")", "except", "KeyError", "as", "e", ":", "raise", "Error", "(", "'{} not found in data dictionary'", ".", "format", "(", "str", "(", "e", "...
8e887c10241aa51c2a77c10e9923bb3978b15bcb
valid
CompiledFormatDict.pack_into
See :func:`~bitstruct.pack_into_dict()`.
bitstruct.py
def pack_into(self, buf, offset, data, **kwargs): """See :func:`~bitstruct.pack_into_dict()`. """ try: self.pack_into_any(buf, offset, data, **kwargs) except KeyError as e: raise Error('{} not found in data dictionary'.format(str(e)))
def pack_into(self, buf, offset, data, **kwargs): """See :func:`~bitstruct.pack_into_dict()`. """ try: self.pack_into_any(buf, offset, data, **kwargs) except KeyError as e: raise Error('{} not found in data dictionary'.format(str(e)))
[ "See", ":", "func", ":", "~bitstruct", ".", "pack_into_dict", "()", "." ]
eerimoq/bitstruct
python
https://github.com/eerimoq/bitstruct/blob/8e887c10241aa51c2a77c10e9923bb3978b15bcb/bitstruct.py#L444-L452
[ "def", "pack_into", "(", "self", ",", "buf", ",", "offset", ",", "data", ",", "*", "*", "kwargs", ")", ":", "try", ":", "self", ".", "pack_into_any", "(", "buf", ",", "offset", ",", "data", ",", "*", "*", "kwargs", ")", "except", "KeyError", "as", ...
8e887c10241aa51c2a77c10e9923bb3978b15bcb
valid
CompiledFormatDict.unpack_from
See :func:`~bitstruct.unpack_from_dict()`.
bitstruct.py
def unpack_from(self, data, offset=0): """See :func:`~bitstruct.unpack_from_dict()`. """ return {info.name: v for info, v in self.unpack_from_any(data, offset)}
def unpack_from(self, data, offset=0): """See :func:`~bitstruct.unpack_from_dict()`. """ return {info.name: v for info, v in self.unpack_from_any(data, offset)}
[ "See", ":", "func", ":", "~bitstruct", ".", "unpack_from_dict", "()", "." ]
eerimoq/bitstruct
python
https://github.com/eerimoq/bitstruct/blob/8e887c10241aa51c2a77c10e9923bb3978b15bcb/bitstruct.py#L454-L459
[ "def", "unpack_from", "(", "self", ",", "data", ",", "offset", "=", "0", ")", ":", "return", "{", "info", ".", "name", ":", "v", "for", "info", ",", "v", "in", "self", ".", "unpack_from_any", "(", "data", ",", "offset", ")", "}" ]
8e887c10241aa51c2a77c10e9923bb3978b15bcb
valid
cli
Bottery
bottery/cli.py
def cli(ctx, version): """Bottery""" # If no subcommand was given and the version flag is true, shows # Bottery version if not ctx.invoked_subcommand and version: click.echo(bottery.__version__) ctx.exit() # If no subcommand but neither the version flag, shows help message elif...
def cli(ctx, version): """Bottery""" # If no subcommand was given and the version flag is true, shows # Bottery version if not ctx.invoked_subcommand and version: click.echo(bottery.__version__) ctx.exit() # If no subcommand but neither the version flag, shows help message elif...
[ "Bottery" ]
rougeth/bottery
python
https://github.com/rougeth/bottery/blob/1c724b867fa16708d59a3dbba5dd2c3de85147a9/bottery/cli.py#L20-L32
[ "def", "cli", "(", "ctx", ",", "version", ")", ":", "# If no subcommand was given and the version flag is true, shows", "# Bottery version", "if", "not", "ctx", ".", "invoked_subcommand", "and", "version", ":", "click", ".", "echo", "(", "bottery", ".", "__version__",...
1c724b867fa16708d59a3dbba5dd2c3de85147a9
valid
TelegramEngine.build_message
Return a Message instance according to the data received from Telegram API. https://core.telegram.org/bots/api#update
bottery/telegram/engine.py
def build_message(self, data): ''' Return a Message instance according to the data received from Telegram API. https://core.telegram.org/bots/api#update ''' message_data = data.get('message') or data.get('edited_message') if not message_data: return N...
def build_message(self, data): ''' Return a Message instance according to the data received from Telegram API. https://core.telegram.org/bots/api#update ''' message_data = data.get('message') or data.get('edited_message') if not message_data: return N...
[ "Return", "a", "Message", "instance", "according", "to", "the", "data", "received", "from", "Telegram", "API", ".", "https", ":", "//", "core", ".", "telegram", ".", "org", "/", "bots", "/", "api#update" ]
rougeth/bottery
python
https://github.com/rougeth/bottery/blob/1c724b867fa16708d59a3dbba5dd2c3de85147a9/bottery/telegram/engine.py#L124-L145
[ "def", "build_message", "(", "self", ",", "data", ")", ":", "message_data", "=", "data", ".", "get", "(", "'message'", ")", "or", "data", ".", "get", "(", "'edited_message'", ")", "if", "not", "message_data", ":", "return", "None", "edited", "=", "'edite...
1c724b867fa16708d59a3dbba5dd2c3de85147a9
valid
TelegramEngine.get_chat_id
Telegram chat type can be either "private", "group", "supergroup" or "channel". Return user ID if it is of type "private", chat ID otherwise.
bottery/telegram/engine.py
def get_chat_id(self, message): ''' Telegram chat type can be either "private", "group", "supergroup" or "channel". Return user ID if it is of type "private", chat ID otherwise. ''' if message.chat.type == 'private': return message.user.id return mess...
def get_chat_id(self, message): ''' Telegram chat type can be either "private", "group", "supergroup" or "channel". Return user ID if it is of type "private", chat ID otherwise. ''' if message.chat.type == 'private': return message.user.id return mess...
[ "Telegram", "chat", "type", "can", "be", "either", "private", "group", "supergroup", "or", "channel", ".", "Return", "user", "ID", "if", "it", "is", "of", "type", "private", "chat", "ID", "otherwise", "." ]
rougeth/bottery
python
https://github.com/rougeth/bottery/blob/1c724b867fa16708d59a3dbba5dd2c3de85147a9/bottery/telegram/engine.py#L147-L156
[ "def", "get_chat_id", "(", "self", ",", "message", ")", ":", "if", "message", ".", "chat", ".", "type", "==", "'private'", ":", "return", "message", ".", "user", ".", "id", "return", "message", ".", "chat", ".", "id" ]
1c724b867fa16708d59a3dbba5dd2c3de85147a9
valid
MessengerEngine.build_message
Return a Message instance according to the data received from Facebook Messenger API.
bottery/messenger/engine.py
def build_message(self, data): ''' Return a Message instance according to the data received from Facebook Messenger API. ''' if not data: return None return Message( id=data['message']['mid'], platform=self.platform, text=d...
def build_message(self, data): ''' Return a Message instance according to the data received from Facebook Messenger API. ''' if not data: return None return Message( id=data['message']['mid'], platform=self.platform, text=d...
[ "Return", "a", "Message", "instance", "according", "to", "the", "data", "received", "from", "Facebook", "Messenger", "API", "." ]
rougeth/bottery
python
https://github.com/rougeth/bottery/blob/1c724b867fa16708d59a3dbba5dd2c3de85147a9/bottery/messenger/engine.py#L51-L67
[ "def", "build_message", "(", "self", ",", "data", ")", ":", "if", "not", "data", ":", "return", "None", "return", "Message", "(", "id", "=", "data", "[", "'message'", "]", "[", "'mid'", "]", ",", "platform", "=", "self", ".", "platform", ",", "text",...
1c724b867fa16708d59a3dbba5dd2c3de85147a9
valid
BaseEngine._get_response
Get response running the view with await syntax if it is a coroutine function, otherwise just run it the normal way.
bottery/platforms.py
async def _get_response(self, message): """ Get response running the view with await syntax if it is a coroutine function, otherwise just run it the normal way. """ view = self.discovery_view(message) if not view: return if inspect.iscoroutinefunctio...
async def _get_response(self, message): """ Get response running the view with await syntax if it is a coroutine function, otherwise just run it the normal way. """ view = self.discovery_view(message) if not view: return if inspect.iscoroutinefunctio...
[ "Get", "response", "running", "the", "view", "with", "await", "syntax", "if", "it", "is", "a", "coroutine", "function", "otherwise", "just", "run", "it", "the", "normal", "way", "." ]
rougeth/bottery
python
https://github.com/rougeth/bottery/blob/1c724b867fa16708d59a3dbba5dd2c3de85147a9/bottery/platforms.py#L38-L53
[ "async", "def", "_get_response", "(", "self", ",", "message", ")", ":", "view", "=", "self", ".", "discovery_view", "(", "message", ")", "if", "not", "view", ":", "return", "if", "inspect", ".", "iscoroutinefunction", "(", "view", ")", ":", "response", "...
1c724b867fa16708d59a3dbba5dd2c3de85147a9
valid
BaseEngine.discovery_view
Use the new message to search for a registered view according to its pattern.
bottery/platforms.py
def discovery_view(self, message): """ Use the new message to search for a registered view according to its pattern. """ for handler in self.registered_handlers: if handler.check(message): return handler.view return None
def discovery_view(self, message): """ Use the new message to search for a registered view according to its pattern. """ for handler in self.registered_handlers: if handler.check(message): return handler.view return None
[ "Use", "the", "new", "message", "to", "search", "for", "a", "registered", "view", "according", "to", "its", "pattern", "." ]
rougeth/bottery
python
https://github.com/rougeth/bottery/blob/1c724b867fa16708d59a3dbba5dd2c3de85147a9/bottery/platforms.py#L81-L90
[ "def", "discovery_view", "(", "self", ",", "message", ")", ":", "for", "handler", "in", "self", ".", "registered_handlers", ":", "if", "handler", ".", "check", "(", "message", ")", ":", "return", "handler", ".", "view", "return", "None" ]
1c724b867fa16708d59a3dbba5dd2c3de85147a9
valid
BaseEngine.message_handler
For each new message, build its platform specific message object and get a response.
bottery/platforms.py
async def message_handler(self, data): """ For each new message, build its platform specific message object and get a response. """ message = self.build_message(data) if not message: logger.error( '[%s] Unable to build Message with data, data=...
async def message_handler(self, data): """ For each new message, build its platform specific message object and get a response. """ message = self.build_message(data) if not message: logger.error( '[%s] Unable to build Message with data, data=...
[ "For", "each", "new", "message", "build", "its", "platform", "specific", "message", "object", "and", "get", "a", "response", "." ]
rougeth/bottery
python
https://github.com/rougeth/bottery/blob/1c724b867fa16708d59a3dbba5dd2c3de85147a9/bottery/platforms.py#L92-L112
[ "async", "def", "message_handler", "(", "self", ",", "data", ")", ":", "message", "=", "self", ".", "build_message", "(", "data", ")", "if", "not", "message", ":", "logger", ".", "error", "(", "'[%s] Unable to build Message with data, data=%s, error'", ",", "sel...
1c724b867fa16708d59a3dbba5dd2c3de85147a9
valid
diff
Diff elements of a sequence: s -> s0 - s1, s1 - s2, s2 - s3, ...
mat4py/loadmat.py
def diff(iterable): """Diff elements of a sequence: s -> s0 - s1, s1 - s2, s2 - s3, ... """ a, b = tee(iterable) next(b, None) return (i - j for i, j in izip(a, b))
def diff(iterable): """Diff elements of a sequence: s -> s0 - s1, s1 - s2, s2 - s3, ... """ a, b = tee(iterable) next(b, None) return (i - j for i, j in izip(a, b))
[ "Diff", "elements", "of", "a", "sequence", ":", "s", "-", ">", "s0", "-", "s1", "s1", "-", "s2", "s2", "-", "s3", "..." ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/loadmat.py#L94-L100
[ "def", "diff", "(", "iterable", ")", ":", "a", ",", "b", "=", "tee", "(", "iterable", ")", "next", "(", "b", ",", "None", ")", "return", "(", "i", "-", "j", "for", "i", ",", "j", "in", "izip", "(", "a", ",", "b", ")", ")" ]
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
unpack
Unpack a byte string to the given format. If the byte string contains more bytes than required for the given format, the function returns a tuple of values.
mat4py/loadmat.py
def unpack(endian, fmt, data): """Unpack a byte string to the given format. If the byte string contains more bytes than required for the given format, the function returns a tuple of values. """ if fmt == 's': # read data as an array of chars val = struct.unpack(''.join([endian, str(...
def unpack(endian, fmt, data): """Unpack a byte string to the given format. If the byte string contains more bytes than required for the given format, the function returns a tuple of values. """ if fmt == 's': # read data as an array of chars val = struct.unpack(''.join([endian, str(...
[ "Unpack", "a", "byte", "string", "to", "the", "given", "format", ".", "If", "the", "byte", "string", "contains", "more", "bytes", "than", "required", "for", "the", "given", "format", "the", "function", "returns", "a", "tuple", "of", "values", "." ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/loadmat.py#L107-L122
[ "def", "unpack", "(", "endian", ",", "fmt", ",", "data", ")", ":", "if", "fmt", "==", "'s'", ":", "# read data as an array of chars", "val", "=", "struct", ".", "unpack", "(", "''", ".", "join", "(", "[", "endian", ",", "str", "(", "len", "(", "data"...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
read_file_header
Read mat 5 file header of the file fd. Returns a dict with header values.
mat4py/loadmat.py
def read_file_header(fd, endian): """Read mat 5 file header of the file fd. Returns a dict with header values. """ fields = [ ('description', 's', 116), ('subsystem_offset', 's', 8), ('version', 'H', 2), ('endian_test', 's', 2) ] hdict = {} for name, fmt, num_...
def read_file_header(fd, endian): """Read mat 5 file header of the file fd. Returns a dict with header values. """ fields = [ ('description', 's', 116), ('subsystem_offset', 's', 8), ('version', 'H', 2), ('endian_test', 's', 2) ] hdict = {} for name, fmt, num_...
[ "Read", "mat", "5", "file", "header", "of", "the", "file", "fd", ".", "Returns", "a", "dict", "with", "header", "values", "." ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/loadmat.py#L125-L143
[ "def", "read_file_header", "(", "fd", ",", "endian", ")", ":", "fields", "=", "[", "(", "'description'", ",", "'s'", ",", "116", ")", ",", "(", "'subsystem_offset'", ",", "'s'", ",", "8", ")", ",", "(", "'version'", ",", "'H'", ",", "2", ")", ",", ...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
read_element_tag
Read data element tag: type and number of bytes. If tag is of the Small Data Element (SDE) type the element data is also returned.
mat4py/loadmat.py
def read_element_tag(fd, endian): """Read data element tag: type and number of bytes. If tag is of the Small Data Element (SDE) type the element data is also returned. """ data = fd.read(8) mtpn = unpack(endian, 'I', data[:4]) # The most significant two bytes of mtpn will always be 0, # ...
def read_element_tag(fd, endian): """Read data element tag: type and number of bytes. If tag is of the Small Data Element (SDE) type the element data is also returned. """ data = fd.read(8) mtpn = unpack(endian, 'I', data[:4]) # The most significant two bytes of mtpn will always be 0, # ...
[ "Read", "data", "element", "tag", ":", "type", "and", "number", "of", "bytes", ".", "If", "tag", "is", "of", "the", "Small", "Data", "Element", "(", "SDE", ")", "type", "the", "element", "data", "is", "also", "returned", "." ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/loadmat.py#L146-L167
[ "def", "read_element_tag", "(", "fd", ",", "endian", ")", ":", "data", "=", "fd", ".", "read", "(", "8", ")", "mtpn", "=", "unpack", "(", "endian", ",", "'I'", ",", "data", "[", ":", "4", "]", ")", "# The most significant two bytes of mtpn will always be 0...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
read_elements
Read elements from the file. If list of possible matrix data types mtps is provided, the data type of the elements are verified.
mat4py/loadmat.py
def read_elements(fd, endian, mtps, is_name=False): """Read elements from the file. If list of possible matrix data types mtps is provided, the data type of the elements are verified. """ mtpn, num_bytes, data = read_element_tag(fd, endian) if mtps and mtpn not in [etypes[mtp]['n'] for mtp in m...
def read_elements(fd, endian, mtps, is_name=False): """Read elements from the file. If list of possible matrix data types mtps is provided, the data type of the elements are verified. """ mtpn, num_bytes, data = read_element_tag(fd, endian) if mtps and mtpn not in [etypes[mtp]['n'] for mtp in m...
[ "Read", "elements", "from", "the", "file", "." ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/loadmat.py#L170-L204
[ "def", "read_elements", "(", "fd", ",", "endian", ",", "mtps", ",", "is_name", "=", "False", ")", ":", "mtpn", ",", "num_bytes", ",", "data", "=", "read_element_tag", "(", "fd", ",", "endian", ")", "if", "mtps", "and", "mtpn", "not", "in", "[", "etyp...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
read_header
Read and return the matrix header.
mat4py/loadmat.py
def read_header(fd, endian): """Read and return the matrix header.""" flag_class, nzmax = read_elements(fd, endian, ['miUINT32']) header = { 'mclass': flag_class & 0x0FF, 'is_logical': (flag_class >> 9 & 1) == 1, 'is_global': (flag_class >> 10 & 1) == 1, 'is_complex': (flag_c...
def read_header(fd, endian): """Read and return the matrix header.""" flag_class, nzmax = read_elements(fd, endian, ['miUINT32']) header = { 'mclass': flag_class & 0x0FF, 'is_logical': (flag_class >> 9 & 1) == 1, 'is_global': (flag_class >> 10 & 1) == 1, 'is_complex': (flag_c...
[ "Read", "and", "return", "the", "matrix", "header", "." ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/loadmat.py#L207-L222
[ "def", "read_header", "(", "fd", ",", "endian", ")", ":", "flag_class", ",", "nzmax", "=", "read_elements", "(", "fd", ",", "endian", ",", "[", "'miUINT32'", "]", ")", "header", "=", "{", "'mclass'", ":", "flag_class", "&", "0x0FF", ",", "'is_logical'", ...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
read_var_header
Read full header tag. Return a dict with the parsed header, the file position of next tag, a file like object for reading the uncompressed element data.
mat4py/loadmat.py
def read_var_header(fd, endian): """Read full header tag. Return a dict with the parsed header, the file position of next tag, a file like object for reading the uncompressed element data. """ mtpn, num_bytes = unpack(endian, 'II', fd.read(8)) next_pos = fd.tell() + num_bytes if mtpn == et...
def read_var_header(fd, endian): """Read full header tag. Return a dict with the parsed header, the file position of next tag, a file like object for reading the uncompressed element data. """ mtpn, num_bytes = unpack(endian, 'II', fd.read(8)) next_pos = fd.tell() + num_bytes if mtpn == et...
[ "Read", "full", "header", "tag", "." ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/loadmat.py#L225-L253
[ "def", "read_var_header", "(", "fd", ",", "endian", ")", ":", "mtpn", ",", "num_bytes", "=", "unpack", "(", "endian", ",", "'II'", ",", "fd", ".", "read", "(", "8", ")", ")", "next_pos", "=", "fd", ".", "tell", "(", ")", "+", "num_bytes", "if", "...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
read_numeric_array
Read a numeric matrix. Returns an array with rows of the numeric matrix.
mat4py/loadmat.py
def read_numeric_array(fd, endian, header, data_etypes): """Read a numeric matrix. Returns an array with rows of the numeric matrix. """ if header['is_complex']: raise ParseError('Complex arrays are not supported') # read array data (stored as column-major) data = read_elements(fd, endia...
def read_numeric_array(fd, endian, header, data_etypes): """Read a numeric matrix. Returns an array with rows of the numeric matrix. """ if header['is_complex']: raise ParseError('Complex arrays are not supported') # read array data (stored as column-major) data = read_elements(fd, endia...
[ "Read", "a", "numeric", "matrix", ".", "Returns", "an", "array", "with", "rows", "of", "the", "numeric", "matrix", "." ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/loadmat.py#L265-L283
[ "def", "read_numeric_array", "(", "fd", ",", "endian", ",", "header", ",", "data_etypes", ")", ":", "if", "header", "[", "'is_complex'", "]", ":", "raise", "ParseError", "(", "'Complex arrays are not supported'", ")", "# read array data (stored as column-major)", "dat...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
read_cell_array
Read a cell array. Returns an array with rows of the cell array.
mat4py/loadmat.py
def read_cell_array(fd, endian, header): """Read a cell array. Returns an array with rows of the cell array. """ array = [list() for i in range(header['dims'][0])] for row in range(header['dims'][0]): for col in range(header['dims'][1]): # read the matrix header and array ...
def read_cell_array(fd, endian, header): """Read a cell array. Returns an array with rows of the cell array. """ array = [list() for i in range(header['dims'][0])] for row in range(header['dims'][0]): for col in range(header['dims'][1]): # read the matrix header and array ...
[ "Read", "a", "cell", "array", ".", "Returns", "an", "array", "with", "rows", "of", "the", "cell", "array", "." ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/loadmat.py#L286-L302
[ "def", "read_cell_array", "(", "fd", ",", "endian", ",", "header", ")", ":", "array", "=", "[", "list", "(", ")", "for", "i", "in", "range", "(", "header", "[", "'dims'", "]", "[", "0", "]", ")", "]", "for", "row", "in", "range", "(", "header", ...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
read_struct_array
Read a struct array. Returns a dict with fields of the struct array.
mat4py/loadmat.py
def read_struct_array(fd, endian, header): """Read a struct array. Returns a dict with fields of the struct array. """ # read field name length (unused, as strings are null terminated) field_name_length = read_elements(fd, endian, ['miINT32']) if field_name_length > 32: raise ParseError(...
def read_struct_array(fd, endian, header): """Read a struct array. Returns a dict with fields of the struct array. """ # read field name length (unused, as strings are null terminated) field_name_length = read_elements(fd, endian, ['miINT32']) if field_name_length > 32: raise ParseError(...
[ "Read", "a", "struct", "array", ".", "Returns", "a", "dict", "with", "fields", "of", "the", "struct", "array", "." ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/loadmat.py#L305-L340
[ "def", "read_struct_array", "(", "fd", ",", "endian", ",", "header", ")", ":", "# read field name length (unused, as strings are null terminated)", "field_name_length", "=", "read_elements", "(", "fd", ",", "endian", ",", "[", "'miINT32'", "]", ")", "if", "field_name_...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
read_var_array
Read variable array (of any supported type).
mat4py/loadmat.py
def read_var_array(fd, endian, header): """Read variable array (of any supported type).""" mc = inv_mclasses[header['mclass']] if mc in numeric_class_etypes: return read_numeric_array( fd, endian, header, set(compressed_numeric).union([numeric_class_etypes[mc]]) ) ...
def read_var_array(fd, endian, header): """Read variable array (of any supported type).""" mc = inv_mclasses[header['mclass']] if mc in numeric_class_etypes: return read_numeric_array( fd, endian, header, set(compressed_numeric).union([numeric_class_etypes[mc]]) ) ...
[ "Read", "variable", "array", "(", "of", "any", "supported", "type", ")", "." ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/loadmat.py#L354-L376
[ "def", "read_var_array", "(", "fd", ",", "endian", ",", "header", ")", ":", "mc", "=", "inv_mclasses", "[", "header", "[", "'mclass'", "]", "]", "if", "mc", "in", "numeric_class_etypes", ":", "return", "read_numeric_array", "(", "fd", ",", "endian", ",", ...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
eof
Determine if end-of-file is reached for file fd.
mat4py/loadmat.py
def eof(fd): """Determine if end-of-file is reached for file fd.""" b = fd.read(1) end = len(b) == 0 if not end: curpos = fd.tell() fd.seek(curpos - 1) return end
def eof(fd): """Determine if end-of-file is reached for file fd.""" b = fd.read(1) end = len(b) == 0 if not end: curpos = fd.tell() fd.seek(curpos - 1) return end
[ "Determine", "if", "end", "-", "of", "-", "file", "is", "reached", "for", "file", "fd", "." ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/loadmat.py#L379-L386
[ "def", "eof", "(", "fd", ")", ":", "b", "=", "fd", ".", "read", "(", "1", ")", "end", "=", "len", "(", "b", ")", "==", "0", "if", "not", "end", ":", "curpos", "=", "fd", ".", "tell", "(", ")", "fd", ".", "seek", "(", "curpos", "-", "1", ...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
loadmat
Load data from MAT-file: data = loadmat(filename, meta=False) The filename argument is either a string with the filename, or a file like object. The returned parameter ``data`` is a dict with the variables found in the MAT file. Call ``loadmat`` with parameter meta=True to include meta data,...
mat4py/loadmat.py
def loadmat(filename, meta=False): """Load data from MAT-file: data = loadmat(filename, meta=False) The filename argument is either a string with the filename, or a file like object. The returned parameter ``data`` is a dict with the variables found in the MAT file. Call ``loadmat`` with...
def loadmat(filename, meta=False): """Load data from MAT-file: data = loadmat(filename, meta=False) The filename argument is either a string with the filename, or a file like object. The returned parameter ``data`` is a dict with the variables found in the MAT file. Call ``loadmat`` with...
[ "Load", "data", "from", "MAT", "-", "file", ":" ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/loadmat.py#L398-L471
[ "def", "loadmat", "(", "filename", ",", "meta", "=", "False", ")", ":", "if", "isinstance", "(", "filename", ",", "basestring", ")", ":", "fd", "=", "open", "(", "filename", ",", "'rb'", ")", "else", ":", "fd", "=", "filename", "# Check mat file format i...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
write_elements
Write data element tag and data. The tag contains the array type and the number of bytes the array data will occupy when written to file. If data occupies 4 bytes or less, it is written immediately as a Small Data Element (SDE).
mat4py/savemat.py
def write_elements(fd, mtp, data, is_name=False): """Write data element tag and data. The tag contains the array type and the number of bytes the array data will occupy when written to file. If data occupies 4 bytes or less, it is written immediately as a Small Data Element (SDE). """ fmt ...
def write_elements(fd, mtp, data, is_name=False): """Write data element tag and data. The tag contains the array type and the number of bytes the array data will occupy when written to file. If data occupies 4 bytes or less, it is written immediately as a Small Data Element (SDE). """ fmt ...
[ "Write", "data", "element", "tag", "and", "data", "." ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/savemat.py#L121-L168
[ "def", "write_elements", "(", "fd", ",", "mtp", ",", "data", ",", "is_name", "=", "False", ")", ":", "fmt", "=", "etypes", "[", "mtp", "]", "[", "'fmt'", "]", "if", "isinstance", "(", "data", ",", "Sequence", ")", ":", "if", "fmt", "==", "'s'", "...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
write_var_header
Write variable header
mat4py/savemat.py
def write_var_header(fd, header): """Write variable header""" # write tag bytes, # and array flags + class and nzmax (null bytes) fd.write(struct.pack('b3xI', etypes['miUINT32']['n'], 8)) fd.write(struct.pack('b3x4x', mclasses[header['mclass']])) # write dimensions array write_elements(fd,...
def write_var_header(fd, header): """Write variable header""" # write tag bytes, # and array flags + class and nzmax (null bytes) fd.write(struct.pack('b3xI', etypes['miUINT32']['n'], 8)) fd.write(struct.pack('b3x4x', mclasses[header['mclass']])) # write dimensions array write_elements(fd,...
[ "Write", "variable", "header" ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/savemat.py#L170-L182
[ "def", "write_var_header", "(", "fd", ",", "header", ")", ":", "# write tag bytes,", "# and array flags + class and nzmax (null bytes)", "fd", ".", "write", "(", "struct", ".", "pack", "(", "'b3xI'", ",", "etypes", "[", "'miUINT32'", "]", "[", "'n'", "]", ",", ...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
write_var_data
Write variable data to file
mat4py/savemat.py
def write_var_data(fd, data): """Write variable data to file""" # write array data elements (size info) fd.write(struct.pack('b3xI', etypes['miMATRIX']['n'], len(data))) # write the data fd.write(data)
def write_var_data(fd, data): """Write variable data to file""" # write array data elements (size info) fd.write(struct.pack('b3xI', etypes['miMATRIX']['n'], len(data))) # write the data fd.write(data)
[ "Write", "variable", "data", "to", "file" ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/savemat.py#L184-L190
[ "def", "write_var_data", "(", "fd", ",", "data", ")", ":", "# write array data elements (size info)", "fd", ".", "write", "(", "struct", ".", "pack", "(", "'b3xI'", ",", "etypes", "[", "'miMATRIX'", "]", "[", "'n'", "]", ",", "len", "(", "data", ")", ")"...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
write_compressed_var_array
Write compressed variable data to file
mat4py/savemat.py
def write_compressed_var_array(fd, array, name): """Write compressed variable data to file""" bd = BytesIO() write_var_array(bd, array, name) data = zlib.compress(bd.getvalue()) bd.close() # write array data elements (size info) fd.write(struct.pack('b3xI', etypes['miCOMPRESSED']['n'], le...
def write_compressed_var_array(fd, array, name): """Write compressed variable data to file""" bd = BytesIO() write_var_array(bd, array, name) data = zlib.compress(bd.getvalue()) bd.close() # write array data elements (size info) fd.write(struct.pack('b3xI', etypes['miCOMPRESSED']['n'], le...
[ "Write", "compressed", "variable", "data", "to", "file" ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/savemat.py#L192-L205
[ "def", "write_compressed_var_array", "(", "fd", ",", "array", ",", "name", ")", ":", "bd", "=", "BytesIO", "(", ")", "write_var_array", "(", "bd", ",", "array", ",", "name", ")", "data", "=", "zlib", ".", "compress", "(", "bd", ".", "getvalue", "(", ...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
write_numeric_array
Write the numeric array
mat4py/savemat.py
def write_numeric_array(fd, header, array): """Write the numeric array""" # make a memory file for writing array data bd = BytesIO() # write matrix header to memory file write_var_header(bd, header) if not isinstance(array, basestring) and header['dims'][0] > 1: # list array data in co...
def write_numeric_array(fd, header, array): """Write the numeric array""" # make a memory file for writing array data bd = BytesIO() # write matrix header to memory file write_var_header(bd, header) if not isinstance(array, basestring) and header['dims'][0] > 1: # list array data in co...
[ "Write", "the", "numeric", "array" ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/savemat.py#L207-L225
[ "def", "write_numeric_array", "(", "fd", ",", "header", ",", "array", ")", ":", "# make a memory file for writing array data", "bd", "=", "BytesIO", "(", ")", "# write matrix header to memory file", "write_var_header", "(", "bd", ",", "header", ")", "if", "not", "is...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
write_var_array
Write variable array (of any supported type)
mat4py/savemat.py
def write_var_array(fd, array, name=''): """Write variable array (of any supported type)""" header, array = guess_header(array, name) mc = header['mclass'] if mc in numeric_class_etypes: return write_numeric_array(fd, header, array) elif mc == 'mxCHAR_CLASS': return write_char_array(...
def write_var_array(fd, array, name=''): """Write variable array (of any supported type)""" header, array = guess_header(array, name) mc = header['mclass'] if mc in numeric_class_etypes: return write_numeric_array(fd, header, array) elif mc == 'mxCHAR_CLASS': return write_char_array(...
[ "Write", "variable", "array", "(", "of", "any", "supported", "type", ")" ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/savemat.py#L299-L312
[ "def", "write_var_array", "(", "fd", ",", "array", ",", "name", "=", "''", ")", ":", "header", ",", "array", "=", "guess_header", "(", "array", ",", "name", ")", "mc", "=", "header", "[", "'mclass'", "]", "if", "mc", "in", "numeric_class_etypes", ":", ...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
isarray
Returns True if test is True for all array elements. Otherwise, returns False.
mat4py/savemat.py
def isarray(array, test, dim=2): """Returns True if test is True for all array elements. Otherwise, returns False. """ if dim > 1: return all(isarray(array[i], test, dim - 1) for i in range(len(array))) return all(test(i) for i in array)
def isarray(array, test, dim=2): """Returns True if test is True for all array elements. Otherwise, returns False. """ if dim > 1: return all(isarray(array[i], test, dim - 1) for i in range(len(array))) return all(test(i) for i in array)
[ "Returns", "True", "if", "test", "is", "True", "for", "all", "array", "elements", ".", "Otherwise", "returns", "False", "." ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/savemat.py#L314-L321
[ "def", "isarray", "(", "array", ",", "test", ",", "dim", "=", "2", ")", ":", "if", "dim", ">", "1", ":", "return", "all", "(", "isarray", "(", "array", "[", "i", "]", ",", "test", ",", "dim", "-", "1", ")", "for", "i", "in", "range", "(", "...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
guess_header
Guess the array header information. Returns a header dict, with class, data type, and size information.
mat4py/savemat.py
def guess_header(array, name=''): """Guess the array header information. Returns a header dict, with class, data type, and size information. """ header = {} if isinstance(array, Sequence) and len(array) == 1: # sequence with only one element, squeeze the array array = array[0] ...
def guess_header(array, name=''): """Guess the array header information. Returns a header dict, with class, data type, and size information. """ header = {} if isinstance(array, Sequence) and len(array) == 1: # sequence with only one element, squeeze the array array = array[0] ...
[ "Guess", "the", "array", "header", "information", ".", "Returns", "a", "header", "dict", "with", "class", "data", "type", "and", "size", "information", "." ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/savemat.py#L323-L435
[ "def", "guess_header", "(", "array", ",", "name", "=", "''", ")", ":", "header", "=", "{", "}", "if", "isinstance", "(", "array", ",", "Sequence", ")", "and", "len", "(", "array", ")", "==", "1", ":", "# sequence with only one element, squeeze the array", ...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
savemat
Save data to MAT-file: savemat(filename, data) The filename argument is either a string with the filename, or a file like object. The parameter ``data`` shall be a dict with the variables. A ``ValueError`` exception is raised if data has invalid format, or if the data structure cannot be map...
mat4py/savemat.py
def savemat(filename, data): """Save data to MAT-file: savemat(filename, data) The filename argument is either a string with the filename, or a file like object. The parameter ``data`` shall be a dict with the variables. A ``ValueError`` exception is raised if data has invalid format, or if ...
def savemat(filename, data): """Save data to MAT-file: savemat(filename, data) The filename argument is either a string with the filename, or a file like object. The parameter ``data`` shall be a dict with the variables. A ``ValueError`` exception is raised if data has invalid format, or if ...
[ "Save", "data", "to", "MAT", "-", "file", ":" ]
nephics/mat4py
python
https://github.com/nephics/mat4py/blob/6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1/mat4py/savemat.py#L443-L471
[ "def", "savemat", "(", "filename", ",", "data", ")", ":", "if", "not", "isinstance", "(", "data", ",", "Mapping", ")", ":", "raise", "ValueError", "(", "'Data should be a dict of variable arrays'", ")", "if", "isinstance", "(", "filename", ",", "basestring", "...
6c1a2ad903937437cc5f24f3c3f5aa2c5a77a1c1
valid
WebDriver._execute
Private method to execute command. Args: command(Command): The defined command. data(dict): The uri variable and body. uppack(bool): If unpack value from result. Returns: The unwrapped value field in the json response.
macaca/webdriver.py
def _execute(self, command, data=None, unpack=True): """ Private method to execute command. Args: command(Command): The defined command. data(dict): The uri variable and body. uppack(bool): If unpack value from result. Returns: The unwrapped valu...
def _execute(self, command, data=None, unpack=True): """ Private method to execute command. Args: command(Command): The defined command. data(dict): The uri variable and body. uppack(bool): If unpack value from result. Returns: The unwrapped valu...
[ "Private", "method", "to", "execute", "command", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L50-L72
[ "def", "_execute", "(", "self", ",", "command", ",", "data", "=", "None", ",", "unpack", "=", "True", ")", ":", "if", "not", "data", ":", "data", "=", "{", "}", "if", "self", ".", "session_id", "is", "not", "None", ":", "data", ".", "setdefault", ...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver._unwrap_el
Convert {'Element': 1234} to WebElement Object Args: value(str|list|dict): The value field in the json response. Returns: The unwrapped value.
macaca/webdriver.py
def _unwrap_el(self, value): """Convert {'Element': 1234} to WebElement Object Args: value(str|list|dict): The value field in the json response. Returns: The unwrapped value. """ if isinstance(value, dict) and 'ELEMENT' in value: element_id =...
def _unwrap_el(self, value): """Convert {'Element': 1234} to WebElement Object Args: value(str|list|dict): The value field in the json response. Returns: The unwrapped value. """ if isinstance(value, dict) and 'ELEMENT' in value: element_id =...
[ "Convert", "{", "Element", ":", "1234", "}", "to", "WebElement", "Object" ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L74-L89
[ "def", "_unwrap_el", "(", "self", ",", "value", ")", ":", "if", "isinstance", "(", "value", ",", "dict", ")", "and", "'ELEMENT'", "in", "value", ":", "element_id", "=", "value", ".", "get", "(", "'ELEMENT'", ")", "return", "WebElement", "(", "element_id"...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver._wrap_el
Convert WebElement Object to {'Element': 1234} Args: value(str|list|dict): The local value. Returns: The wrapped value.
macaca/webdriver.py
def _wrap_el(self, value): """Convert WebElement Object to {'Element': 1234} Args: value(str|list|dict): The local value. Returns: The wrapped value. """ if isinstance(value, dict): return {k: self._wrap_el(v) for k, v in value.items()} ...
def _wrap_el(self, value): """Convert WebElement Object to {'Element': 1234} Args: value(str|list|dict): The local value. Returns: The wrapped value. """ if isinstance(value, dict): return {k: self._wrap_el(v) for k, v in value.items()} ...
[ "Convert", "WebElement", "Object", "to", "{", "Element", ":", "1234", "}" ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L91-L107
[ "def", "_wrap_el", "(", "self", ",", "value", ")", ":", "if", "isinstance", "(", "value", ",", "dict", ")", ":", "return", "{", "k", ":", "self", ".", "_wrap_el", "(", "v", ")", "for", "k", ",", "v", "in", "value", ".", "items", "(", ")", "}", ...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver.init
Create Session by desiredCapabilities Support: Android iOS Web(WebView) Returns: WebDriver Object.
macaca/webdriver.py
def init(self): """Create Session by desiredCapabilities Support: Android iOS Web(WebView) Returns: WebDriver Object. """ resp = self._execute(Command.NEW_SESSION, { 'desiredCapabilities': self.desired_capabilities }, False) r...
def init(self): """Create Session by desiredCapabilities Support: Android iOS Web(WebView) Returns: WebDriver Object. """ resp = self._execute(Command.NEW_SESSION, { 'desiredCapabilities': self.desired_capabilities }, False) r...
[ "Create", "Session", "by", "desiredCapabilities" ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L137-L151
[ "def", "init", "(", "self", ")", ":", "resp", "=", "self", ".", "_execute", "(", "Command", ".", "NEW_SESSION", ",", "{", "'desiredCapabilities'", ":", "self", ".", "desired_capabilities", "}", ",", "False", ")", "resp", ".", "raise_for_status", "(", ")", ...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver.switch_to_window
Switch to the given window. Support: Web(WebView) Args: window_name(str): The window to change focus to. Returns: WebDriver Object.
macaca/webdriver.py
def switch_to_window(self, window_name): """Switch to the given window. Support: Web(WebView) Args: window_name(str): The window to change focus to. Returns: WebDriver Object. """ data = { 'name': window_name } ...
def switch_to_window(self, window_name): """Switch to the given window. Support: Web(WebView) Args: window_name(str): The window to change focus to. Returns: WebDriver Object. """ data = { 'name': window_name } ...
[ "Switch", "to", "the", "given", "window", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L262-L277
[ "def", "switch_to_window", "(", "self", ",", "window_name", ")", ":", "data", "=", "{", "'name'", ":", "window_name", "}", "self", ".", "_execute", "(", "Command", ".", "SWITCH_TO_WINDOW", ",", "data", ")" ]
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver.set_window_size
Sets the width and height of the current window. Support: Web(WebView) Args: width(int): the width in pixels. height(int): the height in pixels. window_handle(str): Identifier of window_handle, default to 'current'. Returns: ...
macaca/webdriver.py
def set_window_size(self, width, height, window_handle='current'): """Sets the width and height of the current window. Support: Web(WebView) Args: width(int): the width in pixels. height(int): the height in pixels. window_handle(str): Identifier ...
def set_window_size(self, width, height, window_handle='current'): """Sets the width and height of the current window. Support: Web(WebView) Args: width(int): the width in pixels. height(int): the height in pixels. window_handle(str): Identifier ...
[ "Sets", "the", "width", "and", "height", "of", "the", "current", "window", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L302-L320
[ "def", "set_window_size", "(", "self", ",", "width", ",", "height", ",", "window_handle", "=", "'current'", ")", ":", "self", ".", "_execute", "(", "Command", ".", "SET_WINDOW_SIZE", ",", "{", "'width'", ":", "int", "(", "width", ")", ",", "'height'", ":...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver.set_window_position
Sets the x,y position of the current window. Support: Web(WebView) Args: x(int): the x-coordinate in pixels. y(int): the y-coordinate in pixels. window_handle(str): Identifier of window_handle, default to 'current'. Returns: ...
macaca/webdriver.py
def set_window_position(self, x, y, window_handle='current'): """Sets the x,y position of the current window. Support: Web(WebView) Args: x(int): the x-coordinate in pixels. y(int): the y-coordinate in pixels. window_handle(str): Identifier of wi...
def set_window_position(self, x, y, window_handle='current'): """Sets the x,y position of the current window. Support: Web(WebView) Args: x(int): the x-coordinate in pixels. y(int): the y-coordinate in pixels. window_handle(str): Identifier of wi...
[ "Sets", "the", "x", "y", "position", "of", "the", "current", "window", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L339-L357
[ "def", "set_window_position", "(", "self", ",", "x", ",", "y", ",", "window_handle", "=", "'current'", ")", ":", "self", ".", "_execute", "(", "Command", ".", "SET_WINDOW_POSITION", ",", "{", "'x'", ":", "int", "(", "x", ")", ",", "'y'", ":", "int", ...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver.move_to
Deprecated use element.touch('drag', { toX, toY, duration(s) }) instead. Move the mouse by an offset of the specificed element. Support: Android Args: element(WebElement): WebElement Object. x(float): X offset to move to, relative to the ...
macaca/webdriver.py
def move_to(self, element, x=0, y=0): """Deprecated use element.touch('drag', { toX, toY, duration(s) }) instead. Move the mouse by an offset of the specificed element. Support: Android Args: element(WebElement): WebElement Object. x(float): X of...
def move_to(self, element, x=0, y=0): """Deprecated use element.touch('drag', { toX, toY, duration(s) }) instead. Move the mouse by an offset of the specificed element. Support: Android Args: element(WebElement): WebElement Object. x(float): X of...
[ "Deprecated", "use", "element", ".", "touch", "(", "drag", "{", "toX", "toY", "duration", "(", "s", ")", "}", ")", "instead", ".", "Move", "the", "mouse", "by", "an", "offset", "of", "the", "specificed", "element", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L403-L424
[ "def", "move_to", "(", "self", ",", "element", ",", "x", "=", "0", ",", "y", "=", "0", ")", ":", "self", ".", "_execute", "(", "Command", ".", "MOVE_TO", ",", "{", "'element'", ":", "element", ".", "element_id", ",", "'x'", ":", "x", ",", "'y'", ...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver.flick
Deprecated use touch('drag', { fromX, fromY, toX, toY, duration(s) }) instead. Flick on the touch screen using finger motion events. This flickcommand starts at a particulat screen location. Support: iOS Args: element(WebElement): WebElement Object wher...
macaca/webdriver.py
def flick(self, element, x, y, speed): """Deprecated use touch('drag', { fromX, fromY, toX, toY, duration(s) }) instead. Flick on the touch screen using finger motion events. This flickcommand starts at a particulat screen location. Support: iOS Args: ...
def flick(self, element, x, y, speed): """Deprecated use touch('drag', { fromX, fromY, toX, toY, duration(s) }) instead. Flick on the touch screen using finger motion events. This flickcommand starts at a particulat screen location. Support: iOS Args: ...
[ "Deprecated", "use", "touch", "(", "drag", "{", "fromX", "fromY", "toX", "toY", "duration", "(", "s", ")", "}", ")", "instead", ".", "Flick", "on", "the", "touch", "screen", "using", "finger", "motion", "events", ".", "This", "flickcommand", "starts", "a...
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L427-L450
[ "def", "flick", "(", "self", ",", "element", ",", "x", ",", "y", ",", "speed", ")", ":", "self", ".", "_execute", "(", "Command", ".", "FLICK", ",", "{", "'element'", ":", "element", ".", "element_id", ",", "'x'", ":", "x", ",", "'y'", ":", "y", ...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver.switch_to_frame
Switches focus to the specified frame, by index, name, or webelement. Support: Web(WebView) Args: frame_reference(None|int|WebElement): The identifier of the frame to switch to. None means to set to the default context. An integer...
macaca/webdriver.py
def switch_to_frame(self, frame_reference=None): """Switches focus to the specified frame, by index, name, or webelement. Support: Web(WebView) Args: frame_reference(None|int|WebElement): The identifier of the frame to switch to. None mea...
def switch_to_frame(self, frame_reference=None): """Switches focus to the specified frame, by index, name, or webelement. Support: Web(WebView) Args: frame_reference(None|int|WebElement): The identifier of the frame to switch to. None mea...
[ "Switches", "focus", "to", "the", "specified", "frame", "by", "index", "name", "or", "webelement", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L501-L521
[ "def", "switch_to_frame", "(", "self", ",", "frame_reference", "=", "None", ")", ":", "if", "frame_reference", "is", "not", "None", "and", "type", "(", "frame_reference", ")", "not", "in", "[", "int", ",", "WebElement", "]", ":", "raise", "TypeError", "(",...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver.execute_script
Execute JavaScript Synchronously in current context. Support: Web(WebView) Args: script: The JavaScript to execute. *args: Arguments for your JavaScript. Returns: Returns the return value of the function.
macaca/webdriver.py
def execute_script(self, script, *args): """Execute JavaScript Synchronously in current context. Support: Web(WebView) Args: script: The JavaScript to execute. *args: Arguments for your JavaScript. Returns: Returns the return value of th...
def execute_script(self, script, *args): """Execute JavaScript Synchronously in current context. Support: Web(WebView) Args: script: The JavaScript to execute. *args: Arguments for your JavaScript. Returns: Returns the return value of th...
[ "Execute", "JavaScript", "Synchronously", "in", "current", "context", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L554-L569
[ "def", "execute_script", "(", "self", ",", "script", ",", "*", "args", ")", ":", "return", "self", ".", "_execute", "(", "Command", ".", "EXECUTE_SCRIPT", ",", "{", "'script'", ":", "script", ",", "'args'", ":", "list", "(", "args", ")", "}", ")" ]
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver.execute_async_script
Execute JavaScript Asynchronously in current context. Support: Web(WebView) Args: script: The JavaScript to execute. *args: Arguments for your JavaScript. Returns: Returns the return value of the function.
macaca/webdriver.py
def execute_async_script(self, script, *args): """Execute JavaScript Asynchronously in current context. Support: Web(WebView) Args: script: The JavaScript to execute. *args: Arguments for your JavaScript. Returns: Returns the return valu...
def execute_async_script(self, script, *args): """Execute JavaScript Asynchronously in current context. Support: Web(WebView) Args: script: The JavaScript to execute. *args: Arguments for your JavaScript. Returns: Returns the return valu...
[ "Execute", "JavaScript", "Asynchronously", "in", "current", "context", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L572-L587
[ "def", "execute_async_script", "(", "self", ",", "script", ",", "*", "args", ")", ":", "return", "self", ".", "_execute", "(", "Command", ".", "EXECUTE_ASYNC_SCRIPT", ",", "{", "'script'", ":", "script", ",", "'args'", ":", "list", "(", "args", ")", "}",...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver.add_cookie
Set a cookie. Support: Web(WebView) Args: cookie_dict: A dictionary contain keys: "name", "value", ["path"], ["domain"], ["secure"], ["httpOnly"], ["expiry"]. Returns: WebElement Object.
macaca/webdriver.py
def add_cookie(self, cookie_dict): """Set a cookie. Support: Web(WebView) Args: cookie_dict: A dictionary contain keys: "name", "value", ["path"], ["domain"], ["secure"], ["httpOnly"], ["expiry"]. Returns: WebElement Object. ...
def add_cookie(self, cookie_dict): """Set a cookie. Support: Web(WebView) Args: cookie_dict: A dictionary contain keys: "name", "value", ["path"], ["domain"], ["secure"], ["httpOnly"], ["expiry"]. Returns: WebElement Object. ...
[ "Set", "a", "cookie", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L634-L654
[ "def", "add_cookie", "(", "self", ",", "cookie_dict", ")", ":", "if", "not", "isinstance", "(", "cookie_dict", ",", "dict", ")", ":", "raise", "TypeError", "(", "'Type of the cookie must be a dict.'", ")", "if", "not", "cookie_dict", ".", "get", "(", "'name'",...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver.save_screenshot
Save the screenshot to local. Support: Android iOS Web(WebView) Args: filename(str): The path to save the image. quietly(bool): If True, omit the IOError when failed to save the image. Returns: WebElement Object. Raises:...
macaca/webdriver.py
def save_screenshot(self, filename, quietly = False): """Save the screenshot to local. Support: Android iOS Web(WebView) Args: filename(str): The path to save the image. quietly(bool): If True, omit the IOError when failed to save the image. ...
def save_screenshot(self, filename, quietly = False): """Save the screenshot to local. Support: Android iOS Web(WebView) Args: filename(str): The path to save the image. quietly(bool): If True, omit the IOError when failed to save the image. ...
[ "Save", "the", "screenshot", "to", "local", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L763-L787
[ "def", "save_screenshot", "(", "self", ",", "filename", ",", "quietly", "=", "False", ")", ":", "imgData", "=", "self", ".", "take_screenshot", "(", ")", "try", ":", "with", "open", "(", "filename", ",", "\"wb\"", ")", "as", "f", ":", "f", ".", "writ...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver.element
Find an element in the current context. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: WebElement Object. Raises: WebDriverExceptio...
macaca/webdriver.py
def element(self, using, value): """Find an element in the current context. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: WebElement Object. ...
def element(self, using, value): """Find an element in the current context. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: WebElement Object. ...
[ "Find", "an", "element", "in", "the", "current", "context", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L789-L808
[ "def", "element", "(", "self", ",", "using", ",", "value", ")", ":", "return", "self", ".", "_execute", "(", "Command", ".", "FIND_ELEMENT", ",", "{", "'using'", ":", "using", ",", "'value'", ":", "value", "}", ")" ]
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver.element_if_exists
Check if an element in the current context. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: Return True if the element does exists and return False other...
macaca/webdriver.py
def element_if_exists(self, using, value): """Check if an element in the current context. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: Return ...
def element_if_exists(self, using, value): """Check if an element in the current context. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: Return ...
[ "Check", "if", "an", "element", "in", "the", "current", "context", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L810-L833
[ "def", "element_if_exists", "(", "self", ",", "using", ",", "value", ")", ":", "try", ":", "self", ".", "_execute", "(", "Command", ".", "FIND_ELEMENT", ",", "{", "'using'", ":", "using", ",", "'value'", ":", "value", "}", ")", "return", "True", "excep...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver.element_or_none
Check if an element in the current context. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: Return Element if the element does exists and return None oth...
macaca/webdriver.py
def element_or_none(self, using, value): """Check if an element in the current context. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: Return El...
def element_or_none(self, using, value): """Check if an element in the current context. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: Return El...
[ "Check", "if", "an", "element", "in", "the", "current", "context", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L835-L857
[ "def", "element_or_none", "(", "self", ",", "using", ",", "value", ")", ":", "try", ":", "return", "self", ".", "_execute", "(", "Command", ".", "FIND_ELEMENT", ",", "{", "'using'", ":", "using", ",", "'value'", ":", "value", "}", ")", "except", ":", ...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver.elements
Find elements in the current context. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: Return a List<Element | None>, if no element matched, the list is e...
macaca/webdriver.py
def elements(self, using, value): """Find elements in the current context. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: Return a List<Element ...
def elements(self, using, value): """Find elements in the current context. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: Return a List<Element ...
[ "Find", "elements", "in", "the", "current", "context", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L859-L878
[ "def", "elements", "(", "self", ",", "using", ",", "value", ")", ":", "return", "self", ".", "_execute", "(", "Command", ".", "FIND_ELEMENTS", ",", "{", "'using'", ":", "using", ",", "'value'", ":", "value", "}", ")" ]
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver.wait_for
Wait for driver till satisfy the given condition Support: Android iOS Web(WebView) Args: timeout(int): How long we should be retrying stuff. interval(int): How long between retries. asserter(callable): The asserter func to determine the result. ...
macaca/webdriver.py
def wait_for( self, timeout=10000, interval=1000, asserter=lambda x: x): """Wait for driver till satisfy the given condition Support: Android iOS Web(WebView) Args: timeout(int): How long we should be retrying stuff. interval(int): How long b...
def wait_for( self, timeout=10000, interval=1000, asserter=lambda x: x): """Wait for driver till satisfy the given condition Support: Android iOS Web(WebView) Args: timeout(int): How long we should be retrying stuff. interval(int): How long b...
[ "Wait", "for", "driver", "till", "satisfy", "the", "given", "condition" ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L880-L910
[ "def", "wait_for", "(", "self", ",", "timeout", "=", "10000", ",", "interval", "=", "1000", ",", "asserter", "=", "lambda", "x", ":", "x", ")", ":", "if", "not", "callable", "(", "asserter", ")", ":", "raise", "TypeError", "(", "'Asserter must be callabl...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver.wait_for_element
Wait for element till satisfy the given condition Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. timeout(int): How long we should be retrying stuff. interval(...
macaca/webdriver.py
def wait_for_element( self, using, value, timeout=10000, interval=1000, asserter=is_displayed): """Wait for element till satisfy the given condition Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str)...
def wait_for_element( self, using, value, timeout=10000, interval=1000, asserter=is_displayed): """Wait for element till satisfy the given condition Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str)...
[ "Wait", "for", "element", "till", "satisfy", "the", "given", "condition" ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L912-L945
[ "def", "wait_for_element", "(", "self", ",", "using", ",", "value", ",", "timeout", "=", "10000", ",", "interval", "=", "1000", ",", "asserter", "=", "is_displayed", ")", ":", "if", "not", "callable", "(", "asserter", ")", ":", "raise", "TypeError", "(",...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriver.wait_for_elements
Wait for elements till satisfy the given condition Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. timeout(int): How long we should be retrying stuff. interval...
macaca/webdriver.py
def wait_for_elements( self, using, value, timeout=10000, interval=1000, asserter=is_displayed): """Wait for elements till satisfy the given condition Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(st...
def wait_for_elements( self, using, value, timeout=10000, interval=1000, asserter=is_displayed): """Wait for elements till satisfy the given condition Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(st...
[ "Wait", "for", "elements", "till", "satisfy", "the", "given", "condition" ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriver.py#L947-L984
[ "def", "wait_for_elements", "(", "self", ",", "using", ",", "value", ",", "timeout", "=", "10000", ",", "interval", "=", "1000", ",", "asserter", "=", "is_displayed", ")", ":", "if", "not", "callable", "(", "asserter", ")", ":", "raise", "TypeError", "("...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriverResult.from_object
The factory method to create WebDriverResult from JSON Object. Args: obj(dict): The JSON Object returned by server.
macaca/webdriverresult.py
def from_object(cls, obj): """The factory method to create WebDriverResult from JSON Object. Args: obj(dict): The JSON Object returned by server. """ return cls( obj.get('sessionId', None), obj.get('status', 0), obj.get('value', None) ...
def from_object(cls, obj): """The factory method to create WebDriverResult from JSON Object. Args: obj(dict): The JSON Object returned by server. """ return cls( obj.get('sessionId', None), obj.get('status', 0), obj.get('value', None) ...
[ "The", "factory", "method", "to", "create", "WebDriverResult", "from", "JSON", "Object", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriverresult.py#L25-L35
[ "def", "from_object", "(", "cls", ",", "obj", ")", ":", "return", "cls", "(", "obj", ".", "get", "(", "'sessionId'", ",", "None", ")", ",", "obj", ".", "get", "(", "'status'", ",", "0", ")", ",", "obj", ".", "get", "(", "'value'", ",", "None", ...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebDriverResult.raise_for_status
Raise WebDriverException if returned status is not zero.
macaca/webdriverresult.py
def raise_for_status(self): """Raise WebDriverException if returned status is not zero.""" if not self.status: return error = find_exception_by_code(self.status) message = None screen = None stacktrace = None if isinstance(self.value, str): ...
def raise_for_status(self): """Raise WebDriverException if returned status is not zero.""" if not self.status: return error = find_exception_by_code(self.status) message = None screen = None stacktrace = None if isinstance(self.value, str): ...
[ "Raise", "WebDriverException", "if", "returned", "status", "is", "not", "zero", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriverresult.py#L37-L54
[ "def", "raise_for_status", "(", "self", ")", ":", "if", "not", "self", ".", "status", ":", "return", "error", "=", "find_exception_by_code", "(", "self", ".", "status", ")", "message", "=", "None", "screen", "=", "None", "stacktrace", "=", "None", "if", ...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
add_element_extension_method
Add element_by alias and extension' methods(if_exists/or_none).
macaca/util.py
def add_element_extension_method(Klass): """Add element_by alias and extension' methods(if_exists/or_none).""" def add_element_method(Klass, using): locator = using.name.lower() find_element_name = "element_by_" + locator find_element_if_exists_name = "element_by_" + locator + "_if_exist...
def add_element_extension_method(Klass): """Add element_by alias and extension' methods(if_exists/or_none).""" def add_element_method(Klass, using): locator = using.name.lower() find_element_name = "element_by_" + locator find_element_if_exists_name = "element_by_" + locator + "_if_exist...
[ "Add", "element_by", "alias", "and", "extension", "methods", "(", "if_exists", "/", "or_none", ")", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/util.py#L64-L138
[ "def", "add_element_extension_method", "(", "Klass", ")", ":", "def", "add_element_method", "(", "Klass", ",", "using", ")", ":", "locator", "=", "using", ".", "name", ".", "lower", "(", ")", "find_element_name", "=", "\"element_by_\"", "+", "locator", "find_e...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
fluent
Fluent interface decorator to return self if method return None.
macaca/util.py
def fluent(func): """Fluent interface decorator to return self if method return None.""" @wraps(func) def fluent_interface(instance, *args, **kwargs): ret = func(instance, *args, **kwargs) if ret is not None: return ret return instance return fluent_interface
def fluent(func): """Fluent interface decorator to return self if method return None.""" @wraps(func) def fluent_interface(instance, *args, **kwargs): ret = func(instance, *args, **kwargs) if ret is not None: return ret return instance return fluent_interface
[ "Fluent", "interface", "decorator", "to", "return", "self", "if", "method", "return", "None", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/util.py#L141-L149
[ "def", "fluent", "(", "func", ")", ":", "@", "wraps", "(", "func", ")", "def", "fluent_interface", "(", "instance", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "ret", "=", "func", "(", "instance", ",", "*", "args", ",", "*", "*", "kwargs...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
value_to_key_strokes
Convert value to a list of key strokes >>> value_to_key_strokes(123) ['123'] >>> value_to_key_strokes('123') ['123'] >>> value_to_key_strokes([1, 2, 3]) ['123'] >>> value_to_key_strokes(['1', '2', '3']) ['123'] Args: value(int|str|list) Returns: A list of string...
macaca/util.py
def value_to_key_strokes(value): """Convert value to a list of key strokes >>> value_to_key_strokes(123) ['123'] >>> value_to_key_strokes('123') ['123'] >>> value_to_key_strokes([1, 2, 3]) ['123'] >>> value_to_key_strokes(['1', '2', '3']) ['123'] Args: value(int|str|list...
def value_to_key_strokes(value): """Convert value to a list of key strokes >>> value_to_key_strokes(123) ['123'] >>> value_to_key_strokes('123') ['123'] >>> value_to_key_strokes([1, 2, 3]) ['123'] >>> value_to_key_strokes(['1', '2', '3']) ['123'] Args: value(int|str|list...
[ "Convert", "value", "to", "a", "list", "of", "key", "strokes", ">>>", "value_to_key_strokes", "(", "123", ")", "[", "123", "]", ">>>", "value_to_key_strokes", "(", "123", ")", "[", "123", "]", ">>>", "value_to_key_strokes", "(", "[", "1", "2", "3", "]", ...
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/util.py#L152-L180
[ "def", "value_to_key_strokes", "(", "value", ")", ":", "result", "=", "''", "if", "isinstance", "(", "value", ",", "Integral", ")", ":", "value", "=", "str", "(", "value", ")", "for", "v", "in", "value", ":", "if", "isinstance", "(", "v", ",", "Keys"...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
value_to_single_key_strokes
Convert value to a list of key strokes >>> value_to_single_key_strokes(123) ['1', '2', '3'] >>> value_to_single_key_strokes('123') ['1', '2', '3'] >>> value_to_single_key_strokes([1, 2, 3]) ['1', '2', '3'] >>> value_to_single_key_strokes(['1', '2', '3']) ['1', '2', '3'] Args: ...
macaca/util.py
def value_to_single_key_strokes(value): """Convert value to a list of key strokes >>> value_to_single_key_strokes(123) ['1', '2', '3'] >>> value_to_single_key_strokes('123') ['1', '2', '3'] >>> value_to_single_key_strokes([1, 2, 3]) ['1', '2', '3'] >>> value_to_single_key_strokes(['1', '...
def value_to_single_key_strokes(value): """Convert value to a list of key strokes >>> value_to_single_key_strokes(123) ['1', '2', '3'] >>> value_to_single_key_strokes('123') ['1', '2', '3'] >>> value_to_single_key_strokes([1, 2, 3]) ['1', '2', '3'] >>> value_to_single_key_strokes(['1', '...
[ "Convert", "value", "to", "a", "list", "of", "key", "strokes", ">>>", "value_to_single_key_strokes", "(", "123", ")", "[", "1", "2", "3", "]", ">>>", "value_to_single_key_strokes", "(", "123", ")", "[", "1", "2", "3", "]", ">>>", "value_to_single_key_strokes...
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/util.py#L182-L208
[ "def", "value_to_single_key_strokes", "(", "value", ")", ":", "result", "=", "[", "]", "if", "isinstance", "(", "value", ",", "Integral", ")", ":", "value", "=", "str", "(", "value", ")", "for", "v", "in", "value", ":", "if", "isinstance", "(", "v", ...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
MemorizeFormatter.check_unused_args
Implement the check_unused_args in superclass.
macaca/util.py
def check_unused_args(self, used_args, args, kwargs): """Implement the check_unused_args in superclass.""" for k, v in kwargs.items(): if k in used_args: self._used_kwargs.update({k: v}) else: self._unused_kwargs.update({k: v})
def check_unused_args(self, used_args, args, kwargs): """Implement the check_unused_args in superclass.""" for k, v in kwargs.items(): if k in used_args: self._used_kwargs.update({k: v}) else: self._unused_kwargs.update({k: v})
[ "Implement", "the", "check_unused_args", "in", "superclass", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/util.py#L26-L32
[ "def", "check_unused_args", "(", "self", ",", "used_args", ",", "args", ",", "kwargs", ")", ":", "for", "k", ",", "v", "in", "kwargs", ".", "items", "(", ")", ":", "if", "k", "in", "used_args", ":", "self", ".", "_used_kwargs", ".", "update", "(", ...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
MemorizeFormatter.vformat
Clear used and unused dicts before each formatting.
macaca/util.py
def vformat(self, format_string, args, kwargs): """Clear used and unused dicts before each formatting.""" self._used_kwargs = {} self._unused_kwargs = {} return super(MemorizeFormatter, self).vformat(format_string, args, kwargs)
def vformat(self, format_string, args, kwargs): """Clear used and unused dicts before each formatting.""" self._used_kwargs = {} self._unused_kwargs = {} return super(MemorizeFormatter, self).vformat(format_string, args, kwargs)
[ "Clear", "used", "and", "unused", "dicts", "before", "each", "formatting", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/util.py#L34-L38
[ "def", "vformat", "(", "self", ",", "format_string", ",", "args", ",", "kwargs", ")", ":", "self", ".", "_used_kwargs", "=", "{", "}", "self", ".", "_unused_kwargs", "=", "{", "}", "return", "super", "(", "MemorizeFormatter", ",", "self", ")", ".", "vf...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
MemorizeFormatter.format_map
format a string by a map Args: format_string(str): A format string mapping(dict): A map to format the string Returns: A formatted string. Raises: KeyError: if key is not provided by the given map.
macaca/util.py
def format_map(self, format_string, mapping): """format a string by a map Args: format_string(str): A format string mapping(dict): A map to format the string Returns: A formatted string. Raises: KeyError: if key is not provided by the gi...
def format_map(self, format_string, mapping): """format a string by a map Args: format_string(str): A format string mapping(dict): A map to format the string Returns: A formatted string. Raises: KeyError: if key is not provided by the gi...
[ "format", "a", "string", "by", "a", "map" ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/util.py#L40-L53
[ "def", "format_map", "(", "self", ",", "format_string", ",", "mapping", ")", ":", "return", "self", ".", "vformat", "(", "format_string", ",", "args", "=", "None", ",", "kwargs", "=", "mapping", ")" ]
6d3c52060013e01a67cd52b68b5230b387427bad
valid
find_exception_by_code
Find name of exception by WebDriver defined error code. Args: code(str): Error code defined in protocol. Returns: The error name defined in protocol.
macaca/webdriverexception.py
def find_exception_by_code(code): """Find name of exception by WebDriver defined error code. Args: code(str): Error code defined in protocol. Returns: The error name defined in protocol. """ errorName = None for error in WebDriverError: if error.value.code == code: ...
def find_exception_by_code(code): """Find name of exception by WebDriver defined error code. Args: code(str): Error code defined in protocol. Returns: The error name defined in protocol. """ errorName = None for error in WebDriverError: if error.value.code == code: ...
[ "Find", "name", "of", "exception", "by", "WebDriver", "defined", "error", "code", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webdriverexception.py#L41-L55
[ "def", "find_exception_by_code", "(", "code", ")", ":", "errorName", "=", "None", "for", "error", "in", "WebDriverError", ":", "if", "error", ".", "value", ".", "code", "==", "code", ":", "errorName", "=", "error", "break", "return", "errorName" ]
6d3c52060013e01a67cd52b68b5230b387427bad
valid
RemoteInvoker.execute
Format the endpoint url by data and then request the remote server. Args: command(Command): WebDriver command to be executed. data(dict): Data fulfill the uri template and json body. Returns: A dict represent the json body from server response. Raises: ...
macaca/remote_invoker.py
def execute(self, command, data={}): """Format the endpoint url by data and then request the remote server. Args: command(Command): WebDriver command to be executed. data(dict): Data fulfill the uri template and json body. Returns: A dict represent the json ...
def execute(self, command, data={}): """Format the endpoint url by data and then request the remote server. Args: command(Command): WebDriver command to be executed. data(dict): Data fulfill the uri template and json body. Returns: A dict represent the json ...
[ "Format", "the", "endpoint", "url", "by", "data", "and", "then", "request", "the", "remote", "server", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/remote_invoker.py#L88-L114
[ "def", "execute", "(", "self", ",", "command", ",", "data", "=", "{", "}", ")", ":", "method", ",", "uri", "=", "command", "try", ":", "path", "=", "self", ".", "_formatter", ".", "format_map", "(", "uri", ",", "data", ")", "body", "=", "self", "...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
RemoteInvoker._request
Internal method to send request to the remote server. Args: method(str): HTTP Method(GET/POST/PUT/DELET/HEAD). url(str): The request url. body(dict): The JSON object to be sent. Returns: A dict represent the json body from server response. Raise...
macaca/remote_invoker.py
def _request(self, method, url, body): """Internal method to send request to the remote server. Args: method(str): HTTP Method(GET/POST/PUT/DELET/HEAD). url(str): The request url. body(dict): The JSON object to be sent. Returns: A dict represent ...
def _request(self, method, url, body): """Internal method to send request to the remote server. Args: method(str): HTTP Method(GET/POST/PUT/DELET/HEAD). url(str): The request url. body(dict): The JSON object to be sent. Returns: A dict represent ...
[ "Internal", "method", "to", "send", "request", "to", "the", "remote", "server", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/remote_invoker.py#L116-L147
[ "def", "_request", "(", "self", ",", "method", ",", "url", ",", "body", ")", ":", "if", "method", "!=", "'POST'", "and", "method", "!=", "'PUT'", ":", "body", "=", "None", "s", "=", "Session", "(", ")", "LOGGER", ".", "debug", "(", "'Method: {0}, Url...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebElement._execute
Private method to execute command with data. Args: command(Command): The defined command. data(dict): The uri variable and body. Returns: The unwrapped value field in the json response.
macaca/webelement.py
def _execute(self, command, data=None, unpack=True): """Private method to execute command with data. Args: command(Command): The defined command. data(dict): The uri variable and body. Returns: The unwrapped value field in the json response. """ ...
def _execute(self, command, data=None, unpack=True): """Private method to execute command with data. Args: command(Command): The defined command. data(dict): The uri variable and body. Returns: The unwrapped value field in the json response. """ ...
[ "Private", "method", "to", "execute", "command", "with", "data", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webelement.py#L47-L60
[ "def", "_execute", "(", "self", ",", "command", ",", "data", "=", "None", ",", "unpack", "=", "True", ")", ":", "if", "not", "data", ":", "data", "=", "{", "}", "data", ".", "setdefault", "(", "'element_id'", ",", "self", ".", "element_id", ")", "r...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebElement.element
find an element in the current element. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: WebElement Object. Raises: WebDriverExceptio...
macaca/webelement.py
def element(self, using, value): """find an element in the current element. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: WebElement Object. ...
def element(self, using, value): """find an element in the current element. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: WebElement Object. ...
[ "find", "an", "element", "in", "the", "current", "element", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webelement.py#L67-L86
[ "def", "element", "(", "self", ",", "using", ",", "value", ")", ":", "return", "self", ".", "_execute", "(", "Command", ".", "FIND_CHILD_ELEMENT", ",", "{", "'using'", ":", "using", ",", "'value'", ":", "value", "}", ")" ]
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebElement.element_or_none
Check if an element in the current element. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: Return Element if the element does exists and return None oth...
macaca/webelement.py
def element_or_none(self, using, value): """Check if an element in the current element. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: Return El...
def element_or_none(self, using, value): """Check if an element in the current element. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: Return El...
[ "Check", "if", "an", "element", "in", "the", "current", "element", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webelement.py#L113-L135
[ "def", "element_or_none", "(", "self", ",", "using", ",", "value", ")", ":", "try", ":", "return", "self", ".", "_execute", "(", "Command", ".", "FIND_CHILD_ELEMENT", ",", "{", "'using'", ":", "using", ",", "'value'", ":", "value", "}", ")", "except", ...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebElement.elements
find elements in the current element. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: Return a List<Element | None>, if no element matched, the list is e...
macaca/webelement.py
def elements(self, using, value): """find elements in the current element. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: Return a List<Element ...
def elements(self, using, value): """find elements in the current element. Support: Android iOS Web(WebView) Args: using(str): The element location strategy. value(str): The value of the location strategy. Returns: Return a List<Element ...
[ "find", "elements", "in", "the", "current", "element", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webelement.py#L137-L156
[ "def", "elements", "(", "self", ",", "using", ",", "value", ")", ":", "return", "self", ".", "_execute", "(", "Command", ".", "FIND_CHILD_ELEMENTS", ",", "{", "'using'", ":", "using", ",", "'value'", ":", "value", "}", ")" ]
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebElement.move_to
Deprecated use element.touch('drag', { toX, toY, duration(s) }) instead. Move the mouse by an offset of the specificed element. Support: Android Args: x(float): X offset to move to, relative to the top-left corner of the element. y(...
macaca/webelement.py
def move_to(self, x=0, y=0): """Deprecated use element.touch('drag', { toX, toY, duration(s) }) instead. Move the mouse by an offset of the specificed element. Support: Android Args: x(float): X offset to move to, relative to the top-le...
def move_to(self, x=0, y=0): """Deprecated use element.touch('drag', { toX, toY, duration(s) }) instead. Move the mouse by an offset of the specificed element. Support: Android Args: x(float): X offset to move to, relative to the top-le...
[ "Deprecated", "use", "element", ".", "touch", "(", "drag", "{", "toX", "toY", "duration", "(", "s", ")", "}", ")", "instead", ".", "Move", "the", "mouse", "by", "an", "offset", "of", "the", "specificed", "element", "." ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webelement.py#L424-L440
[ "def", "move_to", "(", "self", ",", "x", "=", "0", ",", "y", "=", "0", ")", ":", "self", ".", "_driver", ".", "move_to", "(", "self", ",", "x", ",", "y", ")" ]
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebElement.flick
Deprecated use touch('drag', { fromX, fromY, toX, toY, duration(s) }) instead. Flick on the touch screen using finger motion events. This flickcommand starts at a particulat screen location. Support: iOS Args: x(float}: The x offset in pixels to flick by...
macaca/webelement.py
def flick(self, x, y, speed): """Deprecated use touch('drag', { fromX, fromY, toX, toY, duration(s) }) instead. Flick on the touch screen using finger motion events. This flickcommand starts at a particulat screen location. Support: iOS Args: x(f...
def flick(self, x, y, speed): """Deprecated use touch('drag', { fromX, fromY, toX, toY, duration(s) }) instead. Flick on the touch screen using finger motion events. This flickcommand starts at a particulat screen location. Support: iOS Args: x(f...
[ "Deprecated", "use", "touch", "(", "drag", "{", "fromX", "fromY", "toX", "toY", "duration", "(", "s", ")", "}", ")", "instead", ".", "Flick", "on", "the", "touch", "screen", "using", "finger", "motion", "events", ".", "This", "flickcommand", "starts", "a...
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webelement.py#L443-L459
[ "def", "flick", "(", "self", ",", "x", ",", "y", ",", "speed", ")", ":", "self", ".", "_driver", ".", "flick", "(", "self", ",", "x", ",", "y", ",", "speed", ")" ]
6d3c52060013e01a67cd52b68b5230b387427bad
valid
WebElement.touch
Apply touch actions on devices. Such as, tap/doubleTap/press/pinch/rotate/drag. See more on https://github.com/alibaba/macaca/issues/366. Support: Android iOS Args: name(str): Name of the action args(dict): Arguments of the action Returns: ...
macaca/webelement.py
def touch(self, name, args=None): """Apply touch actions on devices. Such as, tap/doubleTap/press/pinch/rotate/drag. See more on https://github.com/alibaba/macaca/issues/366. Support: Android iOS Args: name(str): Name of the action args(dict): Ar...
def touch(self, name, args=None): """Apply touch actions on devices. Such as, tap/doubleTap/press/pinch/rotate/drag. See more on https://github.com/alibaba/macaca/issues/366. Support: Android iOS Args: name(str): Name of the action args(dict): Ar...
[ "Apply", "touch", "actions", "on", "devices", ".", "Such", "as", "tap", "/", "doubleTap", "/", "press", "/", "pinch", "/", "rotate", "/", "drag", ".", "See", "more", "on", "https", ":", "//", "github", ".", "com", "/", "alibaba", "/", "macaca", "/", ...
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/webelement.py#L517-L548
[ "def", "touch", "(", "self", ",", "name", ",", "args", "=", "None", ")", ":", "if", "isinstance", "(", "name", ",", "list", ")", "and", "not", "isinstance", "(", "name", ",", "str", ")", ":", "for", "obj", "in", "name", ":", "obj", "[", "'element...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
is_displayed
Assert whether the target is displayed Args: target(WebElement): WebElement Object. Returns: Return True if the element is displayed or return False otherwise.
macaca/asserters.py
def is_displayed(target): """Assert whether the target is displayed Args: target(WebElement): WebElement Object. Returns: Return True if the element is displayed or return False otherwise. """ is_displayed = getattr(target, 'is_displayed', None) if not is_displayed or not calla...
def is_displayed(target): """Assert whether the target is displayed Args: target(WebElement): WebElement Object. Returns: Return True if the element is displayed or return False otherwise. """ is_displayed = getattr(target, 'is_displayed', None) if not is_displayed or not calla...
[ "Assert", "whether", "the", "target", "is", "displayed" ]
macacajs/wd.py
python
https://github.com/macacajs/wd.py/blob/6d3c52060013e01a67cd52b68b5230b387427bad/macaca/asserters.py#L9-L22
[ "def", "is_displayed", "(", "target", ")", ":", "is_displayed", "=", "getattr", "(", "target", ",", "'is_displayed'", ",", "None", ")", "if", "not", "is_displayed", "or", "not", "callable", "(", "is_displayed", ")", ":", "raise", "TypeError", "(", "'Target h...
6d3c52060013e01a67cd52b68b5230b387427bad
valid
vController.PlugIn
Take next available controller id and plug in to Virtual USB Bus
pyxinput/virtual_controller.py
def PlugIn(self): """Take next available controller id and plug in to Virtual USB Bus""" ids = self.available_ids() if len(ids) == 0: raise MaxInputsReachedError('Max Inputs Reached') self.id = ids[0] _xinput.PlugIn(self.id) while self.id in self.available_i...
def PlugIn(self): """Take next available controller id and plug in to Virtual USB Bus""" ids = self.available_ids() if len(ids) == 0: raise MaxInputsReachedError('Max Inputs Reached') self.id = ids[0] _xinput.PlugIn(self.id) while self.id in self.available_i...
[ "Take", "next", "available", "controller", "id", "and", "plug", "in", "to", "Virtual", "USB", "Bus" ]
bayangan1991/PYXInput
python
https://github.com/bayangan1991/PYXInput/blob/a0bbdecaeccf7947378bde67e7de79433bfbd30e/pyxinput/virtual_controller.py#L60-L70
[ "def", "PlugIn", "(", "self", ")", ":", "ids", "=", "self", ".", "available_ids", "(", ")", "if", "len", "(", "ids", ")", "==", "0", ":", "raise", "MaxInputsReachedError", "(", "'Max Inputs Reached'", ")", "self", ".", "id", "=", "ids", "[", "0", "]"...
a0bbdecaeccf7947378bde67e7de79433bfbd30e
valid
vController.UnPlug
Unplug controller from Virtual USB Bus and free up ID
pyxinput/virtual_controller.py
def UnPlug(self, force=False): """Unplug controller from Virtual USB Bus and free up ID""" if force: _xinput.UnPlugForce(c_uint(self.id)) else: _xinput.UnPlug(c_uint(self.id)) while self.id not in self.available_ids(): if self.id == 0: ...
def UnPlug(self, force=False): """Unplug controller from Virtual USB Bus and free up ID""" if force: _xinput.UnPlugForce(c_uint(self.id)) else: _xinput.UnPlug(c_uint(self.id)) while self.id not in self.available_ids(): if self.id == 0: ...
[ "Unplug", "controller", "from", "Virtual", "USB", "Bus", "and", "free", "up", "ID" ]
bayangan1991/PYXInput
python
https://github.com/bayangan1991/PYXInput/blob/a0bbdecaeccf7947378bde67e7de79433bfbd30e/pyxinput/virtual_controller.py#L72-L80
[ "def", "UnPlug", "(", "self", ",", "force", "=", "False", ")", ":", "if", "force", ":", "_xinput", ".", "UnPlugForce", "(", "c_uint", "(", "self", ".", "id", ")", ")", "else", ":", "_xinput", ".", "UnPlug", "(", "c_uint", "(", "self", ".", "id", ...
a0bbdecaeccf7947378bde67e7de79433bfbd30e
valid
vController.set_value
Set a value on the controller If percent is True all controls will accept a value between -1.0 and 1.0 If not then: Triggers are 0 to 255 Axis are -32768 to 32767 Control List: AxisLx , Left Stick X-Axis AxisLy , Left Stick Y-Axis AxisRx ,...
pyxinput/virtual_controller.py
def set_value(self, control, value=None): """Set a value on the controller If percent is True all controls will accept a value between -1.0 and 1.0 If not then: Triggers are 0 to 255 Axis are -32768 to 32767 Control List: AxisLx , Left Stick X-Axis AxisLy ...
def set_value(self, control, value=None): """Set a value on the controller If percent is True all controls will accept a value between -1.0 and 1.0 If not then: Triggers are 0 to 255 Axis are -32768 to 32767 Control List: AxisLx , Left Stick X-Axis AxisLy ...
[ "Set", "a", "value", "on", "the", "controller", "If", "percent", "is", "True", "all", "controls", "will", "accept", "a", "value", "between", "-", "1", ".", "0", "and", "1", ".", "0" ]
bayangan1991/PYXInput
python
https://github.com/bayangan1991/PYXInput/blob/a0bbdecaeccf7947378bde67e7de79433bfbd30e/pyxinput/virtual_controller.py#L82-L133
[ "def", "set_value", "(", "self", ",", "control", ",", "value", "=", "None", ")", ":", "func", "=", "getattr", "(", "_xinput", ",", "'Set'", "+", "control", ")", "if", "'Axis'", "in", "control", ":", "target_type", "=", "c_short", "if", "self", ".", "...
a0bbdecaeccf7947378bde67e7de79433bfbd30e
valid
main
Test the functionality of the rController object
pyxinput/read_state.py
def main(): """Test the functionality of the rController object""" import time print('Testing controller in position 1:') print('Running 3 x 3 seconds tests') # Initialise Controller con = rController(1) # Loop printing controller state and buttons held for i in range(3): prin...
def main(): """Test the functionality of the rController object""" import time print('Testing controller in position 1:') print('Running 3 x 3 seconds tests') # Initialise Controller con = rController(1) # Loop printing controller state and buttons held for i in range(3): prin...
[ "Test", "the", "functionality", "of", "the", "rController", "object" ]
bayangan1991/PYXInput
python
https://github.com/bayangan1991/PYXInput/blob/a0bbdecaeccf7947378bde67e7de79433bfbd30e/pyxinput/read_state.py#L93-L111
[ "def", "main", "(", ")", ":", "import", "time", "print", "(", "'Testing controller in position 1:'", ")", "print", "(", "'Running 3 x 3 seconds tests'", ")", "# Initialise Controller", "con", "=", "rController", "(", "1", ")", "# Loop printing controller state and buttons...
a0bbdecaeccf7947378bde67e7de79433bfbd30e
valid
rController.gamepad
Returns the current gamepad state. Buttons pressed is shown as a raw integer value. Use rController.buttons for a list of buttons pressed.
pyxinput/read_state.py
def gamepad(self): """Returns the current gamepad state. Buttons pressed is shown as a raw integer value. Use rController.buttons for a list of buttons pressed. """ state = _xinput_state() _xinput.XInputGetState(self.ControllerID - 1, pointer(state)) self.dwPacketNumber =...
def gamepad(self): """Returns the current gamepad state. Buttons pressed is shown as a raw integer value. Use rController.buttons for a list of buttons pressed. """ state = _xinput_state() _xinput.XInputGetState(self.ControllerID - 1, pointer(state)) self.dwPacketNumber =...
[ "Returns", "the", "current", "gamepad", "state", ".", "Buttons", "pressed", "is", "shown", "as", "a", "raw", "integer", "value", ".", "Use", "rController", ".", "buttons", "for", "a", "list", "of", "buttons", "pressed", "." ]
bayangan1991/PYXInput
python
https://github.com/bayangan1991/PYXInput/blob/a0bbdecaeccf7947378bde67e7de79433bfbd30e/pyxinput/read_state.py#L76-L84
[ "def", "gamepad", "(", "self", ")", ":", "state", "=", "_xinput_state", "(", ")", "_xinput", ".", "XInputGetState", "(", "self", ".", "ControllerID", "-", "1", ",", "pointer", "(", "state", ")", ")", "self", ".", "dwPacketNumber", "=", "state", ".", "d...
a0bbdecaeccf7947378bde67e7de79433bfbd30e
valid
rController.buttons
Returns a list of buttons currently pressed
pyxinput/read_state.py
def buttons(self): """Returns a list of buttons currently pressed""" return [name for name, value in rController._buttons.items() if self.gamepad.wButtons & value == value]
def buttons(self): """Returns a list of buttons currently pressed""" return [name for name, value in rController._buttons.items() if self.gamepad.wButtons & value == value]
[ "Returns", "a", "list", "of", "buttons", "currently", "pressed" ]
bayangan1991/PYXInput
python
https://github.com/bayangan1991/PYXInput/blob/a0bbdecaeccf7947378bde67e7de79433bfbd30e/pyxinput/read_state.py#L87-L90
[ "def", "buttons", "(", "self", ")", ":", "return", "[", "name", "for", "name", ",", "value", "in", "rController", ".", "_buttons", ".", "items", "(", ")", "if", "self", ".", "gamepad", ".", "wButtons", "&", "value", "==", "value", "]" ]
a0bbdecaeccf7947378bde67e7de79433bfbd30e
valid
maybe_decode_header
Decodes an encoded 7-bit ASCII header value into it's actual value.
mailviews/previews.py
def maybe_decode_header(header): """ Decodes an encoded 7-bit ASCII header value into it's actual value. """ value, encoding = decode_header(header)[0] if encoding: return value.decode(encoding) else: return value
def maybe_decode_header(header): """ Decodes an encoded 7-bit ASCII header value into it's actual value. """ value, encoding = decode_header(header)[0] if encoding: return value.decode(encoding) else: return value
[ "Decodes", "an", "encoded", "7", "-", "bit", "ASCII", "header", "value", "into", "it", "s", "actual", "value", "." ]
disqus/django-mailviews
python
https://github.com/disqus/django-mailviews/blob/9993d5e911d545b3bc038433986c5f6812e7e965/mailviews/previews.py#L38-L46
[ "def", "maybe_decode_header", "(", "header", ")", ":", "value", ",", "encoding", "=", "decode_header", "(", "header", ")", "[", "0", "]", "if", "encoding", ":", "return", "value", ".", "decode", "(", "encoding", ")", "else", ":", "return", "value" ]
9993d5e911d545b3bc038433986c5f6812e7e965
valid
autodiscover
Imports all available previews classes.
mailviews/previews.py
def autodiscover(): """ Imports all available previews classes. """ from django.conf import settings for application in settings.INSTALLED_APPS: module = import_module(application) if module_has_submodule(module, 'emails'): emails = import_module('%s.emails' % applicatio...
def autodiscover(): """ Imports all available previews classes. """ from django.conf import settings for application in settings.INSTALLED_APPS: module = import_module(application) if module_has_submodule(module, 'emails'): emails = import_module('%s.emails' % applicatio...
[ "Imports", "all", "available", "previews", "classes", "." ]
disqus/django-mailviews
python
https://github.com/disqus/django-mailviews/blob/9993d5e911d545b3bc038433986c5f6812e7e965/mailviews/previews.py#L216-L233
[ "def", "autodiscover", "(", ")", ":", "from", "django", ".", "conf", "import", "settings", "for", "application", "in", "settings", ".", "INSTALLED_APPS", ":", "module", "=", "import_module", "(", "application", ")", "if", "module_has_submodule", "(", "module", ...
9993d5e911d545b3bc038433986c5f6812e7e965
valid
PreviewSite.register
Adds a preview to the index.
mailviews/previews.py
def register(self, cls): """ Adds a preview to the index. """ preview = cls(site=self) logger.debug('Registering %r with %r', preview, self) index = self.__previews.setdefault(preview.module, {}) index[cls.__name__] = preview
def register(self, cls): """ Adds a preview to the index. """ preview = cls(site=self) logger.debug('Registering %r with %r', preview, self) index = self.__previews.setdefault(preview.module, {}) index[cls.__name__] = preview
[ "Adds", "a", "preview", "to", "the", "index", "." ]
disqus/django-mailviews
python
https://github.com/disqus/django-mailviews/blob/9993d5e911d545b3bc038433986c5f6812e7e965/mailviews/previews.py#L61-L68
[ "def", "register", "(", "self", ",", "cls", ")", ":", "preview", "=", "cls", "(", "site", "=", "self", ")", "logger", ".", "debug", "(", "'Registering %r with %r'", ",", "preview", ",", "self", ")", "index", "=", "self", ".", "__previews", ".", "setdef...
9993d5e911d545b3bc038433986c5f6812e7e965
valid
PreviewSite.detail_view
Looks up a preview in the index, returning a detail view response.
mailviews/previews.py
def detail_view(self, request, module, preview): """ Looks up a preview in the index, returning a detail view response. """ try: preview = self.__previews[module][preview] except KeyError: raise Http404 # The provided module/preview does not exist in the ...
def detail_view(self, request, module, preview): """ Looks up a preview in the index, returning a detail view response. """ try: preview = self.__previews[module][preview] except KeyError: raise Http404 # The provided module/preview does not exist in the ...
[ "Looks", "up", "a", "preview", "in", "the", "index", "returning", "a", "detail", "view", "response", "." ]
disqus/django-mailviews
python
https://github.com/disqus/django-mailviews/blob/9993d5e911d545b3bc038433986c5f6812e7e965/mailviews/previews.py#L104-L112
[ "def", "detail_view", "(", "self", ",", "request", ",", "module", ",", "preview", ")", ":", "try", ":", "preview", "=", "self", ".", "__previews", "[", "module", "]", "[", "preview", "]", "except", "KeyError", ":", "raise", "Http404", "# The provided modul...
9993d5e911d545b3bc038433986c5f6812e7e965
valid
Preview.url
The URL to access this preview.
mailviews/previews.py
def url(self): """ The URL to access this preview. """ return reverse('%s:detail' % URL_NAMESPACE, kwargs={ 'module': self.module, 'preview': type(self).__name__, })
def url(self): """ The URL to access this preview. """ return reverse('%s:detail' % URL_NAMESPACE, kwargs={ 'module': self.module, 'preview': type(self).__name__, })
[ "The", "URL", "to", "access", "this", "preview", "." ]
disqus/django-mailviews
python
https://github.com/disqus/django-mailviews/blob/9993d5e911d545b3bc038433986c5f6812e7e965/mailviews/previews.py#L155-L162
[ "def", "url", "(", "self", ")", ":", "return", "reverse", "(", "'%s:detail'", "%", "URL_NAMESPACE", ",", "kwargs", "=", "{", "'module'", ":", "self", ".", "module", ",", "'preview'", ":", "type", "(", "self", ")", ".", "__name__", ",", "}", ")" ]
9993d5e911d545b3bc038433986c5f6812e7e965
valid
Preview.detail_view
Renders the message view to a response.
mailviews/previews.py
def detail_view(self, request): """ Renders the message view to a response. """ context = { 'preview': self, } kwargs = {} if self.form_class: if request.GET: form = self.form_class(data=request.GET) else: ...
def detail_view(self, request): """ Renders the message view to a response. """ context = { 'preview': self, } kwargs = {} if self.form_class: if request.GET: form = self.form_class(data=request.GET) else: ...
[ "Renders", "the", "message", "view", "to", "a", "response", "." ]
disqus/django-mailviews
python
https://github.com/disqus/django-mailviews/blob/9993d5e911d545b3bc038433986c5f6812e7e965/mailviews/previews.py#L167-L213
[ "def", "detail_view", "(", "self", ",", "request", ")", ":", "context", "=", "{", "'preview'", ":", "self", ",", "}", "kwargs", "=", "{", "}", "if", "self", ".", "form_class", ":", "if", "request", ".", "GET", ":", "form", "=", "self", ".", "form_c...
9993d5e911d545b3bc038433986c5f6812e7e965
valid
split_docstring
Splits the docstring of the given value into it's summary and body. :returns: a 2-tuple of the format ``(summary, body)``
mailviews/utils.py
def split_docstring(value): """ Splits the docstring of the given value into it's summary and body. :returns: a 2-tuple of the format ``(summary, body)`` """ docstring = textwrap.dedent(getattr(value, '__doc__', '')) if not docstring: return None pieces = docstring.strip().split('\...
def split_docstring(value): """ Splits the docstring of the given value into it's summary and body. :returns: a 2-tuple of the format ``(summary, body)`` """ docstring = textwrap.dedent(getattr(value, '__doc__', '')) if not docstring: return None pieces = docstring.strip().split('\...
[ "Splits", "the", "docstring", "of", "the", "given", "value", "into", "it", "s", "summary", "and", "body", "." ]
disqus/django-mailviews
python
https://github.com/disqus/django-mailviews/blob/9993d5e911d545b3bc038433986c5f6812e7e965/mailviews/utils.py#L10-L26
[ "def", "split_docstring", "(", "value", ")", ":", "docstring", "=", "textwrap", ".", "dedent", "(", "getattr", "(", "value", ",", "'__doc__'", ",", "''", ")", ")", "if", "not", "docstring", ":", "return", "None", "pieces", "=", "docstring", ".", "strip",...
9993d5e911d545b3bc038433986c5f6812e7e965
valid
EmailMessageView.render_to_message
Renders and returns an unsent message with the provided context. Any extra keyword arguments passed will be passed through as keyword arguments to the message constructor. :param extra_context: Any additional context to use when rendering the templated content. :type extra_...
mailviews/messages.py
def render_to_message(self, extra_context=None, **kwargs): """ Renders and returns an unsent message with the provided context. Any extra keyword arguments passed will be passed through as keyword arguments to the message constructor. :param extra_context: Any additional contex...
def render_to_message(self, extra_context=None, **kwargs): """ Renders and returns an unsent message with the provided context. Any extra keyword arguments passed will be passed through as keyword arguments to the message constructor. :param extra_context: Any additional contex...
[ "Renders", "and", "returns", "an", "unsent", "message", "with", "the", "provided", "context", "." ]
disqus/django-mailviews
python
https://github.com/disqus/django-mailviews/blob/9993d5e911d545b3bc038433986c5f6812e7e965/mailviews/messages.py#L39-L62
[ "def", "render_to_message", "(", "self", ",", "extra_context", "=", "None", ",", "*", "*", "kwargs", ")", ":", "if", "extra_context", "is", "None", ":", "extra_context", "=", "{", "}", "# Ensure our custom headers are added to the underlying message class.", "kwargs",...
9993d5e911d545b3bc038433986c5f6812e7e965
valid
EmailMessageView.send
Renders and sends an email message. All keyword arguments other than ``extra_context`` are passed through as keyword arguments when constructing a new :attr:`message_class` instance for this message. This method exists primarily for convenience, and the proper rendering of your...
mailviews/messages.py
def send(self, extra_context=None, **kwargs): """ Renders and sends an email message. All keyword arguments other than ``extra_context`` are passed through as keyword arguments when constructing a new :attr:`message_class` instance for this message. This method exists p...
def send(self, extra_context=None, **kwargs): """ Renders and sends an email message. All keyword arguments other than ``extra_context`` are passed through as keyword arguments when constructing a new :attr:`message_class` instance for this message. This method exists p...
[ "Renders", "and", "sends", "an", "email", "message", "." ]
disqus/django-mailviews
python
https://github.com/disqus/django-mailviews/blob/9993d5e911d545b3bc038433986c5f6812e7e965/mailviews/messages.py#L64-L83
[ "def", "send", "(", "self", ",", "extra_context", "=", "None", ",", "*", "*", "kwargs", ")", ":", "message", "=", "self", ".", "render_to_message", "(", "extra_context", "=", "extra_context", ",", "*", "*", "kwargs", ")", "return", "message", ".", "send"...
9993d5e911d545b3bc038433986c5f6812e7e965
valid
TemplatedEmailMessageView.render_subject
Renders the message subject for the given context. The context data is automatically unescaped to avoid rendering HTML entities in ``text/plain`` content. :param context: The context to use when rendering the subject template. :type context: :class:`~django.template.Context` :r...
mailviews/messages.py
def render_subject(self, context): """ Renders the message subject for the given context. The context data is automatically unescaped to avoid rendering HTML entities in ``text/plain`` content. :param context: The context to use when rendering the subject template. :typ...
def render_subject(self, context): """ Renders the message subject for the given context. The context data is automatically unescaped to avoid rendering HTML entities in ``text/plain`` content. :param context: The context to use when rendering the subject template. :typ...
[ "Renders", "the", "message", "subject", "for", "the", "given", "context", "." ]
disqus/django-mailviews
python
https://github.com/disqus/django-mailviews/blob/9993d5e911d545b3bc038433986c5f6812e7e965/mailviews/messages.py#L149-L162
[ "def", "render_subject", "(", "self", ",", "context", ")", ":", "rendered", "=", "self", ".", "subject_template", ".", "render", "(", "unescape", "(", "context", ")", ")", "return", "rendered", ".", "strip", "(", ")" ]
9993d5e911d545b3bc038433986c5f6812e7e965
valid
TemplatedHTMLEmailMessageView.render_to_message
Renders and returns an unsent message with the given context. Any extra keyword arguments passed will be passed through as keyword arguments to the message constructor. :param extra_context: Any additional context to use when rendering templated content. :type extra_context...
mailviews/messages.py
def render_to_message(self, extra_context=None, *args, **kwargs): """ Renders and returns an unsent message with the given context. Any extra keyword arguments passed will be passed through as keyword arguments to the message constructor. :param extra_context: Any additional co...
def render_to_message(self, extra_context=None, *args, **kwargs): """ Renders and returns an unsent message with the given context. Any extra keyword arguments passed will be passed through as keyword arguments to the message constructor. :param extra_context: Any additional co...
[ "Renders", "and", "returns", "an", "unsent", "message", "with", "the", "given", "context", "." ]
disqus/django-mailviews
python
https://github.com/disqus/django-mailviews/blob/9993d5e911d545b3bc038433986c5f6812e7e965/mailviews/messages.py#L223-L245
[ "def", "render_to_message", "(", "self", ",", "extra_context", "=", "None", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "message", "=", "super", "(", "TemplatedHTMLEmailMessageView", ",", "self", ")", ".", "render_to_message", "(", "extra_context", ...
9993d5e911d545b3bc038433986c5f6812e7e965
valid
timestamp
get microseconds since 2000-01-01 00:00
pgcopy/copy.py
def timestamp(_, dt): 'get microseconds since 2000-01-01 00:00' # see http://stackoverflow.com/questions/2956886/ dt = util.to_utc(dt) unix_timestamp = calendar.timegm(dt.timetuple()) # timetuple doesn't maintain microseconds # see http://stackoverflow.com/a/14369386/519015 val = ((unix_time...
def timestamp(_, dt): 'get microseconds since 2000-01-01 00:00' # see http://stackoverflow.com/questions/2956886/ dt = util.to_utc(dt) unix_timestamp = calendar.timegm(dt.timetuple()) # timetuple doesn't maintain microseconds # see http://stackoverflow.com/a/14369386/519015 val = ((unix_time...
[ "get", "microseconds", "since", "2000", "-", "01", "-", "01", "00", ":", "00" ]
altaurog/pgcopy
python
https://github.com/altaurog/pgcopy/blob/0f97ff1b2940cf27a3e6963749bf3d26efd1608f/pgcopy/copy.py#L40-L48
[ "def", "timestamp", "(", "_", ",", "dt", ")", ":", "# see http://stackoverflow.com/questions/2956886/", "dt", "=", "util", ".", "to_utc", "(", "dt", ")", "unix_timestamp", "=", "calendar", ".", "timegm", "(", "dt", ".", "timetuple", "(", ")", ")", "# timetup...
0f97ff1b2940cf27a3e6963749bf3d26efd1608f
valid
numeric
NBASE = 1000 ndigits = total number of base-NBASE digits weight = base-NBASE weight of first digit sign = 0x0000 if positive, 0x4000 if negative, 0xC000 if nan dscale = decimal digits after decimal place
pgcopy/copy.py
def numeric(_, n): """ NBASE = 1000 ndigits = total number of base-NBASE digits weight = base-NBASE weight of first digit sign = 0x0000 if positive, 0x4000 if negative, 0xC000 if nan dscale = decimal digits after decimal place """ try: nt = n.as_tuple() except AttributeError:...
def numeric(_, n): """ NBASE = 1000 ndigits = total number of base-NBASE digits weight = base-NBASE weight of first digit sign = 0x0000 if positive, 0x4000 if negative, 0xC000 if nan dscale = decimal digits after decimal place """ try: nt = n.as_tuple() except AttributeError:...
[ "NBASE", "=", "1000", "ndigits", "=", "total", "number", "of", "base", "-", "NBASE", "digits", "weight", "=", "base", "-", "NBASE", "weight", "of", "first", "digit", "sign", "=", "0x0000", "if", "positive", "0x4000", "if", "negative", "0xC000", "if", "na...
altaurog/pgcopy
python
https://github.com/altaurog/pgcopy/blob/0f97ff1b2940cf27a3e6963749bf3d26efd1608f/pgcopy/copy.py#L54-L89
[ "def", "numeric", "(", "_", ",", "n", ")", ":", "try", ":", "nt", "=", "n", ".", "as_tuple", "(", ")", "except", "AttributeError", ":", "raise", "TypeError", "(", "'numeric field requires Decimal value (got %r)'", "%", "n", ")", "digits", "=", "[", "]", ...
0f97ff1b2940cf27a3e6963749bf3d26efd1608f
valid
set_default_subparser
default subparser selection. Call after setup, just before parse_args() name: is the name of the subparser to call by default args: if set is the argument list handed to parse_args() , tested with 2.7, 3.2, 3.3, 3.4 it works with 2.6 assuming argparse is installed
simple_monitor_alert/management.py
def set_default_subparser(self, name, args=None): """default subparser selection. Call after setup, just before parse_args() name: is the name of the subparser to call by default args: if set is the argument list handed to parse_args() , tested with 2.7, 3.2, 3.3, 3.4 it works with 2.6 assuming arg...
def set_default_subparser(self, name, args=None): """default subparser selection. Call after setup, just before parse_args() name: is the name of the subparser to call by default args: if set is the argument list handed to parse_args() , tested with 2.7, 3.2, 3.3, 3.4 it works with 2.6 assuming arg...
[ "default", "subparser", "selection", ".", "Call", "after", "setup", "just", "before", "parse_args", "()", "name", ":", "is", "the", "name", "of", "the", "subparser", "to", "call", "by", "default", "args", ":", "if", "set", "is", "the", "argument", "list", ...
Nekmo/simple-monitor-alert
python
https://github.com/Nekmo/simple-monitor-alert/blob/11d6dbd3c0b3b9a210d6435208066f5636f1f44e/simple_monitor_alert/management.py#L36-L61
[ "def", "set_default_subparser", "(", "self", ",", "name", ",", "args", "=", "None", ")", ":", "subparser_found", "=", "False", "for", "arg", "in", "sys", ".", "argv", "[", "1", ":", "]", ":", "if", "arg", "in", "[", "'-h'", ",", "'--help'", "]", ":...
11d6dbd3c0b3b9a210d6435208066f5636f1f44e
valid
execute_from_command_line
A simple method that runs a ManagementUtility.
simple_monitor_alert/management.py
def execute_from_command_line(argv=None): """ A simple method that runs a ManagementUtility. """ parser = argparse.ArgumentParser(description=__doc__) parser.add_argument('--monitors-dir', default=MONITORS_DIR) parser.add_argument('--alerts-dir', default=ALERTS_DIR) parser.add_argument('--co...
def execute_from_command_line(argv=None): """ A simple method that runs a ManagementUtility. """ parser = argparse.ArgumentParser(description=__doc__) parser.add_argument('--monitors-dir', default=MONITORS_DIR) parser.add_argument('--alerts-dir', default=ALERTS_DIR) parser.add_argument('--co...
[ "A", "simple", "method", "that", "runs", "a", "ManagementUtility", "." ]
Nekmo/simple-monitor-alert
python
https://github.com/Nekmo/simple-monitor-alert/blob/11d6dbd3c0b3b9a210d6435208066f5636f1f44e/simple_monitor_alert/management.py#L66-L117
[ "def", "execute_from_command_line", "(", "argv", "=", "None", ")", ":", "parser", "=", "argparse", ".", "ArgumentParser", "(", "description", "=", "__doc__", ")", "parser", ".", "add_argument", "(", "'--monitors-dir'", ",", "default", "=", "MONITORS_DIR", ")", ...
11d6dbd3c0b3b9a210d6435208066f5636f1f44e