repository_name
stringlengths
7
55
func_path_in_repository
stringlengths
4
223
func_name
stringlengths
1
134
whole_func_string
stringlengths
75
104k
language
stringclasses
1 value
func_code_string
stringlengths
75
104k
func_code_tokens
listlengths
19
28.4k
func_documentation_string
stringlengths
1
46.9k
func_documentation_tokens
listlengths
1
1.97k
split_name
stringclasses
1 value
func_code_url
stringlengths
87
315
edoburu/sphinxcontrib-django
sphinxcontrib_django/docstrings.py
_improve_method_docs
def _improve_method_docs(obj, name, lines): """Improve the documentation of various methods. :param obj: the instance of the method to document. :param name: full dotted path to the object. :param lines: expected documentation lines. """ if not lines: # Not doing obj.__module__ lookups ...
python
def _improve_method_docs(obj, name, lines): """Improve the documentation of various methods. :param obj: the instance of the method to document. :param name: full dotted path to the object. :param lines: expected documentation lines. """ if not lines: # Not doing obj.__module__ lookups ...
[ "def", "_improve_method_docs", "(", "obj", ",", "name", ",", "lines", ")", ":", "if", "not", "lines", ":", "# Not doing obj.__module__ lookups to avoid performance issues.", "if", "name", ".", "endswith", "(", "'_display'", ")", ":", "match", "=", "RE_GET_FOO_DISPLA...
Improve the documentation of various methods. :param obj: the instance of the method to document. :param name: full dotted path to the object. :param lines: expected documentation lines.
[ "Improve", "the", "documentation", "of", "various", "methods", "." ]
train
https://github.com/edoburu/sphinxcontrib-django/blob/5116ac7f1510a76b1ff58cf7f8d2fab7d8bbe2a9/sphinxcontrib_django/docstrings.py#L271-L300
ramazanpolat/prodict
prodict/__init__.py
Prodict.attr_names
def attr_names(cls) -> List[str]: """ Returns annotated attribute names :return: List[str] """ return [k for k, v in cls.attr_types().items()]
python
def attr_names(cls) -> List[str]: """ Returns annotated attribute names :return: List[str] """ return [k for k, v in cls.attr_types().items()]
[ "def", "attr_names", "(", "cls", ")", "->", "List", "[", "str", "]", ":", "return", "[", "k", "for", "k", ",", "v", "in", "cls", ".", "attr_types", "(", ")", ".", "items", "(", ")", "]" ]
Returns annotated attribute names :return: List[str]
[ "Returns", "annotated", "attribute", "names", ":", "return", ":", "List", "[", "str", "]" ]
train
https://github.com/ramazanpolat/prodict/blob/e67e34738af1542f3b6c91c0e838f5be9a84aad4/prodict/__init__.py#L49-L54
hbldh/pyefd
pyefd.py
elliptic_fourier_descriptors
def elliptic_fourier_descriptors(contour, order=10, normalize=False): """Calculate elliptical Fourier descriptors for a contour. :param numpy.ndarray contour: A contour array of size ``[M x 2]``. :param int order: The order of Fourier coefficients to calculate. :param bool normalize: If the coefficient...
python
def elliptic_fourier_descriptors(contour, order=10, normalize=False): """Calculate elliptical Fourier descriptors for a contour. :param numpy.ndarray contour: A contour array of size ``[M x 2]``. :param int order: The order of Fourier coefficients to calculate. :param bool normalize: If the coefficient...
[ "def", "elliptic_fourier_descriptors", "(", "contour", ",", "order", "=", "10", ",", "normalize", "=", "False", ")", ":", "dxy", "=", "np", ".", "diff", "(", "contour", ",", "axis", "=", "0", ")", "dt", "=", "np", ".", "sqrt", "(", "(", "dxy", "**"...
Calculate elliptical Fourier descriptors for a contour. :param numpy.ndarray contour: A contour array of size ``[M x 2]``. :param int order: The order of Fourier coefficients to calculate. :param bool normalize: If the coefficients should be normalized; see references for details. :return: A ``...
[ "Calculate", "elliptical", "Fourier", "descriptors", "for", "a", "contour", "." ]
train
https://github.com/hbldh/pyefd/blob/5c4e880fd6e70e8077fc8c0be4eec9df5b9ee596/pyefd.py#L37-L70
hbldh/pyefd
pyefd.py
normalize_efd
def normalize_efd(coeffs, size_invariant=True): """Normalizes an array of Fourier coefficients. See [#a]_ and [#b]_ for details. :param numpy.ndarray coeffs: A ``[n x 4]`` Fourier coefficient array. :param bool size_invariant: If size invariance normalizing should be done as well. Default is `...
python
def normalize_efd(coeffs, size_invariant=True): """Normalizes an array of Fourier coefficients. See [#a]_ and [#b]_ for details. :param numpy.ndarray coeffs: A ``[n x 4]`` Fourier coefficient array. :param bool size_invariant: If size invariance normalizing should be done as well. Default is `...
[ "def", "normalize_efd", "(", "coeffs", ",", "size_invariant", "=", "True", ")", ":", "# Make the coefficients have a zero phase shift from", "# the first major axis. Theta_1 is that shift angle.", "theta_1", "=", "0.5", "*", "np", ".", "arctan2", "(", "2", "*", "(", "("...
Normalizes an array of Fourier coefficients. See [#a]_ and [#b]_ for details. :param numpy.ndarray coeffs: A ``[n x 4]`` Fourier coefficient array. :param bool size_invariant: If size invariance normalizing should be done as well. Default is ``True``. :return: The normalized ``[n x 4]`` Fourie...
[ "Normalizes", "an", "array", "of", "Fourier", "coefficients", "." ]
train
https://github.com/hbldh/pyefd/blob/5c4e880fd6e70e8077fc8c0be4eec9df5b9ee596/pyefd.py#L73-L113
hbldh/pyefd
pyefd.py
calculate_dc_coefficients
def calculate_dc_coefficients(contour): """Calculate the :math:`A_0` and :math:`C_0` coefficients of the elliptic Fourier series. :param numpy.ndarray contour: A contour array of size ``[M x 2]``. :return: The :math:`A_0` and :math:`C_0` coefficients. :rtype: tuple """ dxy = np.diff(contour, a...
python
def calculate_dc_coefficients(contour): """Calculate the :math:`A_0` and :math:`C_0` coefficients of the elliptic Fourier series. :param numpy.ndarray contour: A contour array of size ``[M x 2]``. :return: The :math:`A_0` and :math:`C_0` coefficients. :rtype: tuple """ dxy = np.diff(contour, a...
[ "def", "calculate_dc_coefficients", "(", "contour", ")", ":", "dxy", "=", "np", ".", "diff", "(", "contour", ",", "axis", "=", "0", ")", "dt", "=", "np", ".", "sqrt", "(", "(", "dxy", "**", "2", ")", ".", "sum", "(", "axis", "=", "1", ")", ")",...
Calculate the :math:`A_0` and :math:`C_0` coefficients of the elliptic Fourier series. :param numpy.ndarray contour: A contour array of size ``[M x 2]``. :return: The :math:`A_0` and :math:`C_0` coefficients. :rtype: tuple
[ "Calculate", "the", ":", "math", ":", "A_0", "and", ":", "math", ":", "C_0", "coefficients", "of", "the", "elliptic", "Fourier", "series", "." ]
train
https://github.com/hbldh/pyefd/blob/5c4e880fd6e70e8077fc8c0be4eec9df5b9ee596/pyefd.py#L116-L136
hbldh/pyefd
pyefd.py
plot_efd
def plot_efd(coeffs, locus=(0., 0.), image=None, contour=None, n=300): """Plot a ``[2 x (N / 2)]`` grid of successive truncations of the series. .. note:: Requires `matplotlib <http://matplotlib.org/>`_! :param numpy.ndarray coeffs: ``[N x 4]`` Fourier coefficient array. :param list, tuple or...
python
def plot_efd(coeffs, locus=(0., 0.), image=None, contour=None, n=300): """Plot a ``[2 x (N / 2)]`` grid of successive truncations of the series. .. note:: Requires `matplotlib <http://matplotlib.org/>`_! :param numpy.ndarray coeffs: ``[N x 4]`` Fourier coefficient array. :param list, tuple or...
[ "def", "plot_efd", "(", "coeffs", ",", "locus", "=", "(", "0.", ",", "0.", ")", ",", "image", "=", "None", ",", "contour", "=", "None", ",", "n", "=", "300", ")", ":", "try", ":", "import", "matplotlib", ".", "pyplot", "as", "plt", "except", "Imp...
Plot a ``[2 x (N / 2)]`` grid of successive truncations of the series. .. note:: Requires `matplotlib <http://matplotlib.org/>`_! :param numpy.ndarray coeffs: ``[N x 4]`` Fourier coefficient array. :param list, tuple or numpy.ndarray locus: The :math:`A_0` and :math:`C_0` elliptic locus i...
[ "Plot", "a", "[", "2", "x", "(", "N", "/", "2", ")", "]", "grid", "of", "successive", "truncations", "of", "the", "series", "." ]
train
https://github.com/hbldh/pyefd/blob/5c4e880fd6e70e8077fc8c0be4eec9df5b9ee596/pyefd.py#L139-L179
rshk/python-libxdo
xdo/xdo.py
_errcheck
def _errcheck(result, func, arguments): """ Error checker for functions returning an integer indicating success (0) / failure (1). Raises a XdoException in case of error, otherwise just returns ``None`` (returning the original code, 0, would be useless anyways..) """ if result != 0: ...
python
def _errcheck(result, func, arguments): """ Error checker for functions returning an integer indicating success (0) / failure (1). Raises a XdoException in case of error, otherwise just returns ``None`` (returning the original code, 0, would be useless anyways..) """ if result != 0: ...
[ "def", "_errcheck", "(", "result", ",", "func", ",", "arguments", ")", ":", "if", "result", "!=", "0", ":", "raise", "XdoException", "(", "'Function {0} returned error code {1}'", ".", "format", "(", "func", ".", "__name__", ",", "result", ")", ")", "return"...
Error checker for functions returning an integer indicating success (0) / failure (1). Raises a XdoException in case of error, otherwise just returns ``None`` (returning the original code, 0, would be useless anyways..)
[ "Error", "checker", "for", "functions", "returning", "an", "integer", "indicating", "success", "(", "0", ")", "/", "failure", "(", "1", ")", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/xdo.py#L37-L51
rshk/python-libxdo
xdo/__init__.py
_gen_input_mask
def _gen_input_mask(mask): """Generate input mask from bytemask""" return input_mask( shift=bool(mask & MOD_Shift), lock=bool(mask & MOD_Lock), control=bool(mask & MOD_Control), mod1=bool(mask & MOD_Mod1), mod2=bool(mask & MOD_Mod2), mod3=bool(mask & MOD_Mod3), ...
python
def _gen_input_mask(mask): """Generate input mask from bytemask""" return input_mask( shift=bool(mask & MOD_Shift), lock=bool(mask & MOD_Lock), control=bool(mask & MOD_Control), mod1=bool(mask & MOD_Mod1), mod2=bool(mask & MOD_Mod2), mod3=bool(mask & MOD_Mod3), ...
[ "def", "_gen_input_mask", "(", "mask", ")", ":", "return", "input_mask", "(", "shift", "=", "bool", "(", "mask", "&", "MOD_Shift", ")", ",", "lock", "=", "bool", "(", "mask", "&", "MOD_Lock", ")", ",", "control", "=", "bool", "(", "mask", "&", "MOD_C...
Generate input mask from bytemask
[ "Generate", "input", "mask", "from", "bytemask" ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L43-L53
rshk/python-libxdo
xdo/__init__.py
Xdo.move_mouse
def move_mouse(self, x, y, screen=0): """ Move the mouse to a specific location. :param x: the target X coordinate on the screen in pixels. :param y: the target Y coordinate on the screen in pixels. :param screen: the screen (number) you want to move on. """ # to...
python
def move_mouse(self, x, y, screen=0): """ Move the mouse to a specific location. :param x: the target X coordinate on the screen in pixels. :param y: the target Y coordinate on the screen in pixels. :param screen: the screen (number) you want to move on. """ # to...
[ "def", "move_mouse", "(", "self", ",", "x", ",", "y", ",", "screen", "=", "0", ")", ":", "# todo: apparently the \"screen\" argument is not behaving properly", "# and sometimes even making the interpreter crash..", "# Figure out why (changed API / using wrong header?)", ...
Move the mouse to a specific location. :param x: the target X coordinate on the screen in pixels. :param y: the target Y coordinate on the screen in pixels. :param screen: the screen (number) you want to move on.
[ "Move", "the", "mouse", "to", "a", "specific", "location", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L83-L110
rshk/python-libxdo
xdo/__init__.py
Xdo.move_mouse_relative_to_window
def move_mouse_relative_to_window(self, window, x, y): """ Move the mouse to a specific location relative to the top-left corner of a window. :param x: the target X coordinate on the screen in pixels. :param y: the target Y coordinate on the screen in pixels. """ ...
python
def move_mouse_relative_to_window(self, window, x, y): """ Move the mouse to a specific location relative to the top-left corner of a window. :param x: the target X coordinate on the screen in pixels. :param y: the target Y coordinate on the screen in pixels. """ ...
[ "def", "move_mouse_relative_to_window", "(", "self", ",", "window", ",", "x", ",", "y", ")", ":", "_libxdo", ".", "xdo_move_mouse_relative_to_window", "(", "self", ".", "_xdo", ",", "ctypes", ".", "c_ulong", "(", "window", ")", ",", "x", ",", "y", ")" ]
Move the mouse to a specific location relative to the top-left corner of a window. :param x: the target X coordinate on the screen in pixels. :param y: the target Y coordinate on the screen in pixels.
[ "Move", "the", "mouse", "to", "a", "specific", "location", "relative", "to", "the", "top", "-", "left", "corner", "of", "a", "window", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L112-L121
rshk/python-libxdo
xdo/__init__.py
Xdo.move_mouse_relative
def move_mouse_relative(self, x, y): """ Move the mouse relative to it's current position. :param x: the distance in pixels to move on the X axis. :param y: the distance in pixels to move on the Y axis. """ _libxdo.xdo_move_mouse_relative(self._xdo, x, y)
python
def move_mouse_relative(self, x, y): """ Move the mouse relative to it's current position. :param x: the distance in pixels to move on the X axis. :param y: the distance in pixels to move on the Y axis. """ _libxdo.xdo_move_mouse_relative(self._xdo, x, y)
[ "def", "move_mouse_relative", "(", "self", ",", "x", ",", "y", ")", ":", "_libxdo", ".", "xdo_move_mouse_relative", "(", "self", ".", "_xdo", ",", "x", ",", "y", ")" ]
Move the mouse relative to it's current position. :param x: the distance in pixels to move on the X axis. :param y: the distance in pixels to move on the Y axis.
[ "Move", "the", "mouse", "relative", "to", "it", "s", "current", "position", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L123-L130
rshk/python-libxdo
xdo/__init__.py
Xdo.mouse_down
def mouse_down(self, window, button): """ Send a mouse press (aka mouse down) for a given button at the current mouse location. :param window: The window you want to send the event to or CURRENTWINDOW :param button: The mouse button. Generally, 1 is left,...
python
def mouse_down(self, window, button): """ Send a mouse press (aka mouse down) for a given button at the current mouse location. :param window: The window you want to send the event to or CURRENTWINDOW :param button: The mouse button. Generally, 1 is left,...
[ "def", "mouse_down", "(", "self", ",", "window", ",", "button", ")", ":", "_libxdo", ".", "xdo_mouse_down", "(", "self", ".", "_xdo", ",", "ctypes", ".", "c_ulong", "(", "window", ")", ",", "ctypes", ".", "c_int", "(", "button", ")", ")" ]
Send a mouse press (aka mouse down) for a given button at the current mouse location. :param window: The window you want to send the event to or CURRENTWINDOW :param button: The mouse button. Generally, 1 is left, 2 is middle, 3 is right, 4 is wheel up, 5 is ...
[ "Send", "a", "mouse", "press", "(", "aka", "mouse", "down", ")", "for", "a", "given", "button", "at", "the", "current", "mouse", "location", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L132-L144
rshk/python-libxdo
xdo/__init__.py
Xdo.mouse_up
def mouse_up(self, window, button): """ Send a mouse release (aka mouse up) for a given button at the current mouse location. :param window: The window you want to send the event to or CURRENTWINDOW :param button: The mouse button. Generally, 1 is left, 2...
python
def mouse_up(self, window, button): """ Send a mouse release (aka mouse up) for a given button at the current mouse location. :param window: The window you want to send the event to or CURRENTWINDOW :param button: The mouse button. Generally, 1 is left, 2...
[ "def", "mouse_up", "(", "self", ",", "window", ",", "button", ")", ":", "_libxdo", ".", "xdo_mouse_up", "(", "self", ".", "_xdo", ",", "ctypes", ".", "c_ulong", "(", "window", ")", ",", "ctypes", ".", "c_int", "(", "button", ")", ")" ]
Send a mouse release (aka mouse up) for a given button at the current mouse location. :param window: The window you want to send the event to or CURRENTWINDOW :param button: The mouse button. Generally, 1 is left, 2 is middle, 3 is right, 4 is wheel up, 5 is ...
[ "Send", "a", "mouse", "release", "(", "aka", "mouse", "up", ")", "for", "a", "given", "button", "at", "the", "current", "mouse", "location", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L146-L158
rshk/python-libxdo
xdo/__init__.py
Xdo.get_mouse_location
def get_mouse_location(self): """ Get the current mouse location (coordinates and screen number). :return: a namedtuple with ``x``, ``y`` and ``screen_num`` fields """ x = ctypes.c_int(0) y = ctypes.c_int(0) screen_num = ctypes.c_int(0) _libxdo.xdo_get_mo...
python
def get_mouse_location(self): """ Get the current mouse location (coordinates and screen number). :return: a namedtuple with ``x``, ``y`` and ``screen_num`` fields """ x = ctypes.c_int(0) y = ctypes.c_int(0) screen_num = ctypes.c_int(0) _libxdo.xdo_get_mo...
[ "def", "get_mouse_location", "(", "self", ")", ":", "x", "=", "ctypes", ".", "c_int", "(", "0", ")", "y", "=", "ctypes", ".", "c_int", "(", "0", ")", "screen_num", "=", "ctypes", ".", "c_int", "(", "0", ")", "_libxdo", ".", "xdo_get_mouse_location", ...
Get the current mouse location (coordinates and screen number). :return: a namedtuple with ``x``, ``y`` and ``screen_num`` fields
[ "Get", "the", "current", "mouse", "location", "(", "coordinates", "and", "screen", "number", ")", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L160-L172
rshk/python-libxdo
xdo/__init__.py
Xdo.get_window_at_mouse
def get_window_at_mouse(self): """ Get the window the mouse is currently over """ window_ret = ctypes.c_ulong(0) _libxdo.xdo_get_window_at_mouse(self._xdo, ctypes.byref(window_ret)) return window_ret.value
python
def get_window_at_mouse(self): """ Get the window the mouse is currently over """ window_ret = ctypes.c_ulong(0) _libxdo.xdo_get_window_at_mouse(self._xdo, ctypes.byref(window_ret)) return window_ret.value
[ "def", "get_window_at_mouse", "(", "self", ")", ":", "window_ret", "=", "ctypes", ".", "c_ulong", "(", "0", ")", "_libxdo", ".", "xdo_get_window_at_mouse", "(", "self", ".", "_xdo", ",", "ctypes", ".", "byref", "(", "window_ret", ")", ")", "return", "windo...
Get the window the mouse is currently over
[ "Get", "the", "window", "the", "mouse", "is", "currently", "over" ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L174-L180
rshk/python-libxdo
xdo/__init__.py
Xdo.get_mouse_location2
def get_mouse_location2(self): """ Get all mouse location-related data. :return: a namedtuple with ``x``, ``y``, ``screen_num`` and ``window`` fields """ x = ctypes.c_int(0) y = ctypes.c_int(0) screen_num_ret = ctypes.c_ulong(0) window_ret = c...
python
def get_mouse_location2(self): """ Get all mouse location-related data. :return: a namedtuple with ``x``, ``y``, ``screen_num`` and ``window`` fields """ x = ctypes.c_int(0) y = ctypes.c_int(0) screen_num_ret = ctypes.c_ulong(0) window_ret = c...
[ "def", "get_mouse_location2", "(", "self", ")", ":", "x", "=", "ctypes", ".", "c_int", "(", "0", ")", "y", "=", "ctypes", ".", "c_int", "(", "0", ")", "screen_num_ret", "=", "ctypes", ".", "c_ulong", "(", "0", ")", "window_ret", "=", "ctypes", ".", ...
Get all mouse location-related data. :return: a namedtuple with ``x``, ``y``, ``screen_num`` and ``window`` fields
[ "Get", "all", "mouse", "location", "-", "related", "data", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L182-L197
rshk/python-libxdo
xdo/__init__.py
Xdo.wait_for_mouse_move_from
def wait_for_mouse_move_from(self, origin_x, origin_y): """ Wait for the mouse to move from a location. This function will block until the condition has been satisified. :param origin_x: the X position you expect the mouse to move from :param origin_y: the Y position you expect ...
python
def wait_for_mouse_move_from(self, origin_x, origin_y): """ Wait for the mouse to move from a location. This function will block until the condition has been satisified. :param origin_x: the X position you expect the mouse to move from :param origin_y: the Y position you expect ...
[ "def", "wait_for_mouse_move_from", "(", "self", ",", "origin_x", ",", "origin_y", ")", ":", "_libxdo", ".", "xdo_wait_for_mouse_move_from", "(", "self", ".", "_xdo", ",", "origin_x", ",", "origin_y", ")" ]
Wait for the mouse to move from a location. This function will block until the condition has been satisified. :param origin_x: the X position you expect the mouse to move from :param origin_y: the Y position you expect the mouse to move from
[ "Wait", "for", "the", "mouse", "to", "move", "from", "a", "location", ".", "This", "function", "will", "block", "until", "the", "condition", "has", "been", "satisified", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L199-L207
rshk/python-libxdo
xdo/__init__.py
Xdo.wait_for_mouse_move_to
def wait_for_mouse_move_to(self, dest_x, dest_y): """ Wait for the mouse to move to a location. This function will block until the condition has been satisified. :param dest_x: the X position you expect the mouse to move to :param dest_y: the Y position you expect the mouse to m...
python
def wait_for_mouse_move_to(self, dest_x, dest_y): """ Wait for the mouse to move to a location. This function will block until the condition has been satisified. :param dest_x: the X position you expect the mouse to move to :param dest_y: the Y position you expect the mouse to m...
[ "def", "wait_for_mouse_move_to", "(", "self", ",", "dest_x", ",", "dest_y", ")", ":", "_libxdo", ".", "xdo_wait_for_mouse_move_from", "(", "self", ".", "_xdo", ",", "dest_x", ",", "dest_y", ")" ]
Wait for the mouse to move to a location. This function will block until the condition has been satisified. :param dest_x: the X position you expect the mouse to move to :param dest_y: the Y position you expect the mouse to move to
[ "Wait", "for", "the", "mouse", "to", "move", "to", "a", "location", ".", "This", "function", "will", "block", "until", "the", "condition", "has", "been", "satisified", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L209-L217
rshk/python-libxdo
xdo/__init__.py
Xdo.click_window
def click_window(self, window, button): """ Send a click for a specific mouse button at the current mouse location. :param window: The window you want to send the event to or CURRENTWINDOW :param button: The mouse button. Generally, 1 is left, 2 is middle, 3 is ...
python
def click_window(self, window, button): """ Send a click for a specific mouse button at the current mouse location. :param window: The window you want to send the event to or CURRENTWINDOW :param button: The mouse button. Generally, 1 is left, 2 is middle, 3 is ...
[ "def", "click_window", "(", "self", ",", "window", ",", "button", ")", ":", "_libxdo", ".", "xdo_click_window", "(", "self", ".", "_xdo", ",", "window", ",", "button", ")" ]
Send a click for a specific mouse button at the current mouse location. :param window: The window you want to send the event to or CURRENTWINDOW :param button: The mouse button. Generally, 1 is left, 2 is middle, 3 is right, 4 is wheel up, 5 is wheel down.
[ "Send", "a", "click", "for", "a", "specific", "mouse", "button", "at", "the", "current", "mouse", "location", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L219-L229
rshk/python-libxdo
xdo/__init__.py
Xdo.click_window_multiple
def click_window_multiple(self, window, button, repeat=2, delay=100000): """ Send a one or more clicks for a specific mouse button at the current mouse location. :param window: The window you want to send the event to or CURRENTWINDOW :param button: The m...
python
def click_window_multiple(self, window, button, repeat=2, delay=100000): """ Send a one or more clicks for a specific mouse button at the current mouse location. :param window: The window you want to send the event to or CURRENTWINDOW :param button: The m...
[ "def", "click_window_multiple", "(", "self", ",", "window", ",", "button", ",", "repeat", "=", "2", ",", "delay", "=", "100000", ")", ":", "_libxdo", ".", "xdo_click_window_multiple", "(", "self", ".", "_xdo", ",", "window", ",", "button", ",", "repeat", ...
Send a one or more clicks for a specific mouse button at the current mouse location. :param window: The window you want to send the event to or CURRENTWINDOW :param button: The mouse button. Generally, 1 is left, 2 is middle, 3 is right, 4 is wheel up, 5 is w...
[ "Send", "a", "one", "or", "more", "clicks", "for", "a", "specific", "mouse", "button", "at", "the", "current", "mouse", "location", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L231-L245
rshk/python-libxdo
xdo/__init__.py
Xdo.enter_text_window
def enter_text_window(self, window, string, delay=12000): """ Type a string to the specified window. If you want to send a specific key or key sequence, such as "alt+l", you want instead ``send_keysequence_window(...)``. :param window: The window you want to send ke...
python
def enter_text_window(self, window, string, delay=12000): """ Type a string to the specified window. If you want to send a specific key or key sequence, such as "alt+l", you want instead ``send_keysequence_window(...)``. :param window: The window you want to send ke...
[ "def", "enter_text_window", "(", "self", ",", "window", ",", "string", ",", "delay", "=", "12000", ")", ":", "return", "_libxdo", ".", "xdo_enter_text_window", "(", "self", ".", "_xdo", ",", "window", ",", "string", ",", "delay", ")" ]
Type a string to the specified window. If you want to send a specific key or key sequence, such as "alt+l", you want instead ``send_keysequence_window(...)``. :param window: The window you want to send keystrokes to or CURRENTWINDOW :param string: The string to ...
[ "Type", "a", "string", "to", "the", "specified", "window", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L247-L262
rshk/python-libxdo
xdo/__init__.py
Xdo.send_keysequence_window
def send_keysequence_window(self, window, keysequence, delay=12000): """ Send a keysequence to the specified window. This allows you to send keysequences by symbol name. Any combination of X11 KeySym names separated by '+' are valid. Single KeySym names are valid, too. ...
python
def send_keysequence_window(self, window, keysequence, delay=12000): """ Send a keysequence to the specified window. This allows you to send keysequences by symbol name. Any combination of X11 KeySym names separated by '+' are valid. Single KeySym names are valid, too. ...
[ "def", "send_keysequence_window", "(", "self", ",", "window", ",", "keysequence", ",", "delay", "=", "12000", ")", ":", "_libxdo", ".", "xdo_send_keysequence_window", "(", "self", ".", "_xdo", ",", "window", ",", "keysequence", ",", "delay", ")" ]
Send a keysequence to the specified window. This allows you to send keysequences by symbol name. Any combination of X11 KeySym names separated by '+' are valid. Single KeySym names are valid, too. Examples: "l" "semicolon" "alt+Return" "Alt_L+Tab...
[ "Send", "a", "keysequence", "to", "the", "specified", "window", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L264-L287
rshk/python-libxdo
xdo/__init__.py
Xdo.send_keysequence_window_up
def send_keysequence_window_up(self, window, keysequence, delay=12000): """Send key release (up) events for the given key sequence""" _libxdo.xdo_send_keysequence_window_up( self._xdo, window, keysequence, ctypes.c_ulong(delay))
python
def send_keysequence_window_up(self, window, keysequence, delay=12000): """Send key release (up) events for the given key sequence""" _libxdo.xdo_send_keysequence_window_up( self._xdo, window, keysequence, ctypes.c_ulong(delay))
[ "def", "send_keysequence_window_up", "(", "self", ",", "window", ",", "keysequence", ",", "delay", "=", "12000", ")", ":", "_libxdo", ".", "xdo_send_keysequence_window_up", "(", "self", ".", "_xdo", ",", "window", ",", "keysequence", ",", "ctypes", ".", "c_ulo...
Send key release (up) events for the given key sequence
[ "Send", "key", "release", "(", "up", ")", "events", "for", "the", "given", "key", "sequence" ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L289-L292
rshk/python-libxdo
xdo/__init__.py
Xdo.send_keysequence_window_down
def send_keysequence_window_down(self, window, keysequence, delay=12000): """Send key press (down) events for the given key sequence""" _libxdo.xdo_send_keysequence_window_down( self._xdo, window, keysequence, ctypes.c_ulong(delay))
python
def send_keysequence_window_down(self, window, keysequence, delay=12000): """Send key press (down) events for the given key sequence""" _libxdo.xdo_send_keysequence_window_down( self._xdo, window, keysequence, ctypes.c_ulong(delay))
[ "def", "send_keysequence_window_down", "(", "self", ",", "window", ",", "keysequence", ",", "delay", "=", "12000", ")", ":", "_libxdo", ".", "xdo_send_keysequence_window_down", "(", "self", ".", "_xdo", ",", "window", ",", "keysequence", ",", "ctypes", ".", "c...
Send key press (down) events for the given key sequence
[ "Send", "key", "press", "(", "down", ")", "events", "for", "the", "given", "key", "sequence" ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L294-L297
rshk/python-libxdo
xdo/__init__.py
Xdo.send_keysequence_window_list_do
def send_keysequence_window_list_do( self, window, keys, pressed=1, modifier=None, delay=120000): """ Send a series of keystrokes. :param window: The window to send events to or CURRENTWINDOW :param keys: The array of charcodemap_t entities to send. :param pressed: 1...
python
def send_keysequence_window_list_do( self, window, keys, pressed=1, modifier=None, delay=120000): """ Send a series of keystrokes. :param window: The window to send events to or CURRENTWINDOW :param keys: The array of charcodemap_t entities to send. :param pressed: 1...
[ "def", "send_keysequence_window_list_do", "(", "self", ",", "window", ",", "keys", ",", "pressed", "=", "1", ",", "modifier", "=", "None", ",", "delay", "=", "120000", ")", ":", "# todo: how to properly use charcodes_t in a nice way?", "_libxdo", ".", "xdo_send_keys...
Send a series of keystrokes. :param window: The window to send events to or CURRENTWINDOW :param keys: The array of charcodemap_t entities to send. :param pressed: 1 for key press, 0 for key release. :param modifier: Pointer to integer to record the modifiers act...
[ "Send", "a", "series", "of", "keystrokes", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L299-L316
rshk/python-libxdo
xdo/__init__.py
Xdo.get_active_keys_to_keycode_list
def get_active_keys_to_keycode_list(self): """Get a list of active keys. Uses XQueryKeymap""" try: _libxdo.xdo_get_active_keys_to_keycode_list except AttributeError: # Apparently, this was implemented in a later version.. raise NotImplementedError() ...
python
def get_active_keys_to_keycode_list(self): """Get a list of active keys. Uses XQueryKeymap""" try: _libxdo.xdo_get_active_keys_to_keycode_list except AttributeError: # Apparently, this was implemented in a later version.. raise NotImplementedError() ...
[ "def", "get_active_keys_to_keycode_list", "(", "self", ")", ":", "try", ":", "_libxdo", ".", "xdo_get_active_keys_to_keycode_list", "except", "AttributeError", ":", "# Apparently, this was implemented in a later version..", "raise", "NotImplementedError", "(", ")", "keys", "=...
Get a list of active keys. Uses XQueryKeymap
[ "Get", "a", "list", "of", "active", "keys", ".", "Uses", "XQueryKeymap" ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L318-L333
rshk/python-libxdo
xdo/__init__.py
Xdo.wait_for_window_map_state
def wait_for_window_map_state(self, window, state): """ Wait for a window to have a specific map state. State possibilities: IsUnmapped - window is not displayed. IsViewable - window is mapped and shown (though may be clipped by windows on top of it) ...
python
def wait_for_window_map_state(self, window, state): """ Wait for a window to have a specific map state. State possibilities: IsUnmapped - window is not displayed. IsViewable - window is mapped and shown (though may be clipped by windows on top of it) ...
[ "def", "wait_for_window_map_state", "(", "self", ",", "window", ",", "state", ")", ":", "_libxdo", ".", "xdo_wait_for_window_map_state", "(", "self", ".", "_xdo", ",", "window", ",", "state", ")" ]
Wait for a window to have a specific map state. State possibilities: IsUnmapped - window is not displayed. IsViewable - window is mapped and shown (though may be clipped by windows on top of it) IsUnviewable - window is mapped but a parent window is unmapped. ...
[ "Wait", "for", "a", "window", "to", "have", "a", "specific", "map", "state", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L335-L348
rshk/python-libxdo
xdo/__init__.py
Xdo.move_window
def move_window(self, window, x, y): """ Move a window to a specific location. The top left corner of the window will be moved to the x,y coordinate. :param wid: the window to move :param x: the X coordinate to move to. :param y: the Y coordinate to move to. """...
python
def move_window(self, window, x, y): """ Move a window to a specific location. The top left corner of the window will be moved to the x,y coordinate. :param wid: the window to move :param x: the X coordinate to move to. :param y: the Y coordinate to move to. """...
[ "def", "move_window", "(", "self", ",", "window", ",", "x", ",", "y", ")", ":", "_libxdo", ".", "xdo_move_window", "(", "self", ".", "_xdo", ",", "window", ",", "x", ",", "y", ")" ]
Move a window to a specific location. The top left corner of the window will be moved to the x,y coordinate. :param wid: the window to move :param x: the X coordinate to move to. :param y: the Y coordinate to move to.
[ "Move", "a", "window", "to", "a", "specific", "location", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L359-L369
rshk/python-libxdo
xdo/__init__.py
Xdo.translate_window_with_sizehint
def translate_window_with_sizehint(self, window, width, height): """ Apply a window's sizing hints (if any) to a given width and height. This function wraps XGetWMNormalHints() and applies any resize increment and base size to your given width and height values. :param window: ...
python
def translate_window_with_sizehint(self, window, width, height): """ Apply a window's sizing hints (if any) to a given width and height. This function wraps XGetWMNormalHints() and applies any resize increment and base size to your given width and height values. :param window: ...
[ "def", "translate_window_with_sizehint", "(", "self", ",", "window", ",", "width", ",", "height", ")", ":", "width_ret", "=", "ctypes", ".", "c_uint", "(", "0", ")", "height_ret", "=", "ctypes", ".", "c_uint", "(", "0", ")", "_libxdo", ".", "xdo_translate_...
Apply a window's sizing hints (if any) to a given width and height. This function wraps XGetWMNormalHints() and applies any resize increment and base size to your given width and height values. :param window: the window to use :param width: the unit width you want to translate ...
[ "Apply", "a", "window", "s", "sizing", "hints", "(", "if", "any", ")", "to", "a", "given", "width", "and", "height", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L371-L389
rshk/python-libxdo
xdo/__init__.py
Xdo.set_window_size
def set_window_size(self, window, w, h, flags=0): """ Change the window size. :param wid: the window to resize :param w: the new desired width :param h: the new desired height :param flags: if 0, use pixels for units. If SIZE_USEHINTS, then the units will be ...
python
def set_window_size(self, window, w, h, flags=0): """ Change the window size. :param wid: the window to resize :param w: the new desired width :param h: the new desired height :param flags: if 0, use pixels for units. If SIZE_USEHINTS, then the units will be ...
[ "def", "set_window_size", "(", "self", ",", "window", ",", "w", ",", "h", ",", "flags", "=", "0", ")", ":", "_libxdo", ".", "xdo_set_window_size", "(", "self", ".", "_xdo", ",", "window", ",", "w", ",", "h", ",", "flags", ")" ]
Change the window size. :param wid: the window to resize :param w: the new desired width :param h: the new desired height :param flags: if 0, use pixels for units. If SIZE_USEHINTS, then the units will be relative to the window size hints.
[ "Change", "the", "window", "size", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L391-L401
rshk/python-libxdo
xdo/__init__.py
Xdo.set_window_property
def set_window_property(self, window, name, value): """ Change a window property. Example properties you can change are WM_NAME, WM_ICON_NAME, etc. :param wid: The window to change a property of. :param name: the string name of the property. :param value: the string val...
python
def set_window_property(self, window, name, value): """ Change a window property. Example properties you can change are WM_NAME, WM_ICON_NAME, etc. :param wid: The window to change a property of. :param name: the string name of the property. :param value: the string val...
[ "def", "set_window_property", "(", "self", ",", "window", ",", "name", ",", "value", ")", ":", "_libxdo", ".", "xdo_set_window_property", "(", "self", ".", "_xdo", ",", "window", ",", "name", ",", "value", ")" ]
Change a window property. Example properties you can change are WM_NAME, WM_ICON_NAME, etc. :param wid: The window to change a property of. :param name: the string name of the property. :param value: the string value of the property.
[ "Change", "a", "window", "property", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L403-L413
rshk/python-libxdo
xdo/__init__.py
Xdo.set_window_class
def set_window_class(self, window, name, class_): """ Change the window's classname and or class. :param name: The new class name. If ``None``, no change. :param class_: The new class. If ``None``, no change. """ _libxdo.xdo_set_window_class(self._xdo, window, name, clas...
python
def set_window_class(self, window, name, class_): """ Change the window's classname and or class. :param name: The new class name. If ``None``, no change. :param class_: The new class. If ``None``, no change. """ _libxdo.xdo_set_window_class(self._xdo, window, name, clas...
[ "def", "set_window_class", "(", "self", ",", "window", ",", "name", ",", "class_", ")", ":", "_libxdo", ".", "xdo_set_window_class", "(", "self", ".", "_xdo", ",", "window", ",", "name", ",", "class_", ")" ]
Change the window's classname and or class. :param name: The new class name. If ``None``, no change. :param class_: The new class. If ``None``, no change.
[ "Change", "the", "window", "s", "classname", "and", "or", "class", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L415-L422
rshk/python-libxdo
xdo/__init__.py
Xdo.set_window_urgency
def set_window_urgency(self, window, urgency): """Sets the urgency hint for a window""" _libxdo.xdo_set_window_urgency(self._xdo, window, urgency)
python
def set_window_urgency(self, window, urgency): """Sets the urgency hint for a window""" _libxdo.xdo_set_window_urgency(self._xdo, window, urgency)
[ "def", "set_window_urgency", "(", "self", ",", "window", ",", "urgency", ")", ":", "_libxdo", ".", "xdo_set_window_urgency", "(", "self", ".", "_xdo", ",", "window", ",", "urgency", ")" ]
Sets the urgency hint for a window
[ "Sets", "the", "urgency", "hint", "for", "a", "window" ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L424-L426
rshk/python-libxdo
xdo/__init__.py
Xdo.set_window_override_redirect
def set_window_override_redirect(self, window, override_redirect): """ Set the override_redirect value for a window. This generally means whether or not a window manager will manage this window. If you set it to 1, the window manager will usually not draw borders on the window, ...
python
def set_window_override_redirect(self, window, override_redirect): """ Set the override_redirect value for a window. This generally means whether or not a window manager will manage this window. If you set it to 1, the window manager will usually not draw borders on the window, ...
[ "def", "set_window_override_redirect", "(", "self", ",", "window", ",", "override_redirect", ")", ":", "_libxdo", ".", "xdo_set_window_override_redirect", "(", "self", ".", "_xdo", ",", "window", ",", "override_redirect", ")" ]
Set the override_redirect value for a window. This generally means whether or not a window manager will manage this window. If you set it to 1, the window manager will usually not draw borders on the window, etc. If you set it to 0, the window manager will see it like a normal applicat...
[ "Set", "the", "override_redirect", "value", "for", "a", "window", ".", "This", "generally", "means", "whether", "or", "not", "a", "window", "manager", "will", "manage", "this", "window", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L428-L438
rshk/python-libxdo
xdo/__init__.py
Xdo.get_focused_window
def get_focused_window(self): """ Get the window currently having focus. :param window_ret: Pointer to a window where the currently-focused window will be stored. """ window_ret = window_t(0) _libxdo.xdo_get_focused_window(self._xdo, ctypes.byref(window_r...
python
def get_focused_window(self): """ Get the window currently having focus. :param window_ret: Pointer to a window where the currently-focused window will be stored. """ window_ret = window_t(0) _libxdo.xdo_get_focused_window(self._xdo, ctypes.byref(window_r...
[ "def", "get_focused_window", "(", "self", ")", ":", "window_ret", "=", "window_t", "(", "0", ")", "_libxdo", ".", "xdo_get_focused_window", "(", "self", ".", "_xdo", ",", "ctypes", ".", "byref", "(", "window_ret", ")", ")", "return", "window_ret", ".", "va...
Get the window currently having focus. :param window_ret: Pointer to a window where the currently-focused window will be stored.
[ "Get", "the", "window", "currently", "having", "focus", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L458-L468
rshk/python-libxdo
xdo/__init__.py
Xdo.wait_for_window_focus
def wait_for_window_focus(self, window, want_focus): """ Wait for a window to have or lose focus. :param window: The window to wait on :param want_focus: If 1, wait for focus. If 0, wait for loss of focus. """ _libxdo.xdo_wait_for_window_focus(self._xdo, window, want_foc...
python
def wait_for_window_focus(self, window, want_focus): """ Wait for a window to have or lose focus. :param window: The window to wait on :param want_focus: If 1, wait for focus. If 0, wait for loss of focus. """ _libxdo.xdo_wait_for_window_focus(self._xdo, window, want_foc...
[ "def", "wait_for_window_focus", "(", "self", ",", "window", ",", "want_focus", ")", ":", "_libxdo", ".", "xdo_wait_for_window_focus", "(", "self", ".", "_xdo", ",", "window", ",", "want_focus", ")" ]
Wait for a window to have or lose focus. :param window: The window to wait on :param want_focus: If 1, wait for focus. If 0, wait for loss of focus.
[ "Wait", "for", "a", "window", "to", "have", "or", "lose", "focus", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L470-L477
rshk/python-libxdo
xdo/__init__.py
Xdo.get_focused_window_sane
def get_focused_window_sane(self): """ Like xdo_get_focused_window, but return the first ancestor-or-self window * having a property of WM_CLASS. This allows you to get the "real" or top-level-ish window having focus rather than something you may not expect to be the window havin...
python
def get_focused_window_sane(self): """ Like xdo_get_focused_window, but return the first ancestor-or-self window * having a property of WM_CLASS. This allows you to get the "real" or top-level-ish window having focus rather than something you may not expect to be the window havin...
[ "def", "get_focused_window_sane", "(", "self", ")", ":", "window_ret", "=", "window_t", "(", "0", ")", "_libxdo", ".", "xdo_get_focused_window_sane", "(", "self", ".", "_xdo", ",", "ctypes", ".", "byref", "(", "window_ret", ")", ")", "return", "window_ret", ...
Like xdo_get_focused_window, but return the first ancestor-or-self window * having a property of WM_CLASS. This allows you to get the "real" or top-level-ish window having focus rather than something you may not expect to be the window having focused. :param window_ret: Poin...
[ "Like", "xdo_get_focused_window", "but", "return", "the", "first", "ancestor", "-", "or", "-", "self", "window", "*", "having", "a", "property", "of", "WM_CLASS", ".", "This", "allows", "you", "to", "get", "the", "real", "or", "top", "-", "level", "-", "...
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L490-L504
rshk/python-libxdo
xdo/__init__.py
Xdo.wait_for_window_active
def wait_for_window_active(self, window, active=1): """ Wait for a window to be active or not active. Requires your window manager to support this. Uses _NET_ACTIVE_WINDOW from the EWMH spec. :param window: the window to wait on :param active: If 1, wait for active. If ...
python
def wait_for_window_active(self, window, active=1): """ Wait for a window to be active or not active. Requires your window manager to support this. Uses _NET_ACTIVE_WINDOW from the EWMH spec. :param window: the window to wait on :param active: If 1, wait for active. If ...
[ "def", "wait_for_window_active", "(", "self", ",", "window", ",", "active", "=", "1", ")", ":", "_libxdo", ".", "xdo_wait_for_window_active", "(", "self", ".", "_xdo", ",", "window", ",", "active", ")" ]
Wait for a window to be active or not active. Requires your window manager to support this. Uses _NET_ACTIVE_WINDOW from the EWMH spec. :param window: the window to wait on :param active: If 1, wait for active. If 0, wait for inactive.
[ "Wait", "for", "a", "window", "to", "be", "active", "or", "not", "active", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L522-L532
rshk/python-libxdo
xdo/__init__.py
Xdo.reparent_window
def reparent_window(self, window_source, window_target): """ Reparents a window :param wid_source: the window to reparent :param wid_target: the new parent window """ _libxdo.xdo_reparent_window(self._xdo, window_source, window_target)
python
def reparent_window(self, window_source, window_target): """ Reparents a window :param wid_source: the window to reparent :param wid_target: the new parent window """ _libxdo.xdo_reparent_window(self._xdo, window_source, window_target)
[ "def", "reparent_window", "(", "self", ",", "window_source", ",", "window_target", ")", ":", "_libxdo", ".", "xdo_reparent_window", "(", "self", ".", "_xdo", ",", "window_source", ",", "window_target", ")" ]
Reparents a window :param wid_source: the window to reparent :param wid_target: the new parent window
[ "Reparents", "a", "window" ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L555-L562
rshk/python-libxdo
xdo/__init__.py
Xdo.get_window_location
def get_window_location(self, window): """ Get a window's location. """ screen_ret = Screen() x_ret = ctypes.c_int(0) y_ret = ctypes.c_int(0) _libxdo.xdo_get_window_location( self._xdo, window, ctypes.byref(x_ret), ctypes.byref(y_ret), ctyp...
python
def get_window_location(self, window): """ Get a window's location. """ screen_ret = Screen() x_ret = ctypes.c_int(0) y_ret = ctypes.c_int(0) _libxdo.xdo_get_window_location( self._xdo, window, ctypes.byref(x_ret), ctypes.byref(y_ret), ctyp...
[ "def", "get_window_location", "(", "self", ",", "window", ")", ":", "screen_ret", "=", "Screen", "(", ")", "x_ret", "=", "ctypes", ".", "c_int", "(", "0", ")", "y_ret", "=", "ctypes", ".", "c_int", "(", "0", ")", "_libxdo", ".", "xdo_get_window_location"...
Get a window's location.
[ "Get", "a", "window", "s", "location", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L564-L574
rshk/python-libxdo
xdo/__init__.py
Xdo.get_window_size
def get_window_size(self, window): """ Get a window's size. """ w_ret = ctypes.c_uint(0) h_ret = ctypes.c_uint(0) _libxdo.xdo_get_window_size(self._xdo, window, ctypes.byref(w_ret), ctypes.byref(h_ret)) return window_size(w_ret....
python
def get_window_size(self, window): """ Get a window's size. """ w_ret = ctypes.c_uint(0) h_ret = ctypes.c_uint(0) _libxdo.xdo_get_window_size(self._xdo, window, ctypes.byref(w_ret), ctypes.byref(h_ret)) return window_size(w_ret....
[ "def", "get_window_size", "(", "self", ",", "window", ")", ":", "w_ret", "=", "ctypes", ".", "c_uint", "(", "0", ")", "h_ret", "=", "ctypes", ".", "c_uint", "(", "0", ")", "_libxdo", ".", "xdo_get_window_size", "(", "self", ".", "_xdo", ",", "window", ...
Get a window's size.
[ "Get", "a", "window", "s", "size", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L576-L584
rshk/python-libxdo
xdo/__init__.py
Xdo.get_active_window
def get_active_window(self): """ Get the currently-active window. Requires your window manager to support this. Uses ``_NET_ACTIVE_WINDOW`` from the EWMH spec. """ window_ret = window_t(0) _libxdo.xdo_get_active_window(self._xdo, ctypes.byref(window_ret)) ...
python
def get_active_window(self): """ Get the currently-active window. Requires your window manager to support this. Uses ``_NET_ACTIVE_WINDOW`` from the EWMH spec. """ window_ret = window_t(0) _libxdo.xdo_get_active_window(self._xdo, ctypes.byref(window_ret)) ...
[ "def", "get_active_window", "(", "self", ")", ":", "window_ret", "=", "window_t", "(", "0", ")", "_libxdo", ".", "xdo_get_active_window", "(", "self", ".", "_xdo", ",", "ctypes", ".", "byref", "(", "window_ret", ")", ")", "return", "window_ret", ".", "valu...
Get the currently-active window. Requires your window manager to support this. Uses ``_NET_ACTIVE_WINDOW`` from the EWMH spec.
[ "Get", "the", "currently", "-", "active", "window", ".", "Requires", "your", "window", "manager", "to", "support", "this", ".", "Uses", "_NET_ACTIVE_WINDOW", "from", "the", "EWMH", "spec", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L586-L594
rshk/python-libxdo
xdo/__init__.py
Xdo.select_window_with_click
def select_window_with_click(self): """ Get a window ID by clicking on it. This function blocks until a selection is made. """ window_ret = window_t(0) _libxdo.xdo_select_window_with_click( self._xdo, ctypes.byref(window_ret)) return window_ret.value
python
def select_window_with_click(self): """ Get a window ID by clicking on it. This function blocks until a selection is made. """ window_ret = window_t(0) _libxdo.xdo_select_window_with_click( self._xdo, ctypes.byref(window_ret)) return window_ret.value
[ "def", "select_window_with_click", "(", "self", ")", ":", "window_ret", "=", "window_t", "(", "0", ")", "_libxdo", ".", "xdo_select_window_with_click", "(", "self", ".", "_xdo", ",", "ctypes", ".", "byref", "(", "window_ret", ")", ")", "return", "window_ret", ...
Get a window ID by clicking on it. This function blocks until a selection is made.
[ "Get", "a", "window", "ID", "by", "clicking", "on", "it", ".", "This", "function", "blocks", "until", "a", "selection", "is", "made", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L596-L604
rshk/python-libxdo
xdo/__init__.py
Xdo.get_number_of_desktops
def get_number_of_desktops(self): """ Get the current number of desktops. Uses ``_NET_NUMBER_OF_DESKTOPS`` of the EWMH spec. :param ndesktops: pointer to long where the current number of desktops is stored """ ndesktops = ctypes.c_long(0) _libxdo.xdo_...
python
def get_number_of_desktops(self): """ Get the current number of desktops. Uses ``_NET_NUMBER_OF_DESKTOPS`` of the EWMH spec. :param ndesktops: pointer to long where the current number of desktops is stored """ ndesktops = ctypes.c_long(0) _libxdo.xdo_...
[ "def", "get_number_of_desktops", "(", "self", ")", ":", "ndesktops", "=", "ctypes", ".", "c_long", "(", "0", ")", "_libxdo", ".", "xdo_get_number_of_desktops", "(", "self", ".", "_xdo", ",", "ctypes", ".", "byref", "(", "ndesktops", ")", ")", "return", "nd...
Get the current number of desktops. Uses ``_NET_NUMBER_OF_DESKTOPS`` of the EWMH spec. :param ndesktops: pointer to long where the current number of desktops is stored
[ "Get", "the", "current", "number", "of", "desktops", ".", "Uses", "_NET_NUMBER_OF_DESKTOPS", "of", "the", "EWMH", "spec", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L615-L625
rshk/python-libxdo
xdo/__init__.py
Xdo.get_current_desktop
def get_current_desktop(self): """ Get the current desktop. Uses ``_NET_CURRENT_DESKTOP`` of the EWMH spec. """ desktop = ctypes.c_long(0) _libxdo.xdo_get_current_desktop(self._xdo, ctypes.byref(desktop)) return desktop.value
python
def get_current_desktop(self): """ Get the current desktop. Uses ``_NET_CURRENT_DESKTOP`` of the EWMH spec. """ desktop = ctypes.c_long(0) _libxdo.xdo_get_current_desktop(self._xdo, ctypes.byref(desktop)) return desktop.value
[ "def", "get_current_desktop", "(", "self", ")", ":", "desktop", "=", "ctypes", ".", "c_long", "(", "0", ")", "_libxdo", ".", "xdo_get_current_desktop", "(", "self", ".", "_xdo", ",", "ctypes", ".", "byref", "(", "desktop", ")", ")", "return", "desktop", ...
Get the current desktop. Uses ``_NET_CURRENT_DESKTOP`` of the EWMH spec.
[ "Get", "the", "current", "desktop", ".", "Uses", "_NET_CURRENT_DESKTOP", "of", "the", "EWMH", "spec", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L636-L643
rshk/python-libxdo
xdo/__init__.py
Xdo.set_desktop_for_window
def set_desktop_for_window(self, window, desktop): """ Move a window to another desktop Uses _NET_WM_DESKTOP of the EWMH spec. :param wid: the window to move :param desktop: the desktop destination for the window """ _libxdo.xdo_set_desktop_for_window(self._xdo, ...
python
def set_desktop_for_window(self, window, desktop): """ Move a window to another desktop Uses _NET_WM_DESKTOP of the EWMH spec. :param wid: the window to move :param desktop: the desktop destination for the window """ _libxdo.xdo_set_desktop_for_window(self._xdo, ...
[ "def", "set_desktop_for_window", "(", "self", ",", "window", ",", "desktop", ")", ":", "_libxdo", ".", "xdo_set_desktop_for_window", "(", "self", ".", "_xdo", ",", "window", ",", "desktop", ")" ]
Move a window to another desktop Uses _NET_WM_DESKTOP of the EWMH spec. :param wid: the window to move :param desktop: the desktop destination for the window
[ "Move", "a", "window", "to", "another", "desktop", "Uses", "_NET_WM_DESKTOP", "of", "the", "EWMH", "spec", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L645-L653
rshk/python-libxdo
xdo/__init__.py
Xdo.get_desktop_for_window
def get_desktop_for_window(self, window): """ Get the desktop a window is on. Uses _NET_WM_DESKTOP of the EWMH spec. If your desktop does not support ``_NET_WM_DESKTOP``, then '*desktop' remains unmodified. :param wid: the window to query """ desktop = c...
python
def get_desktop_for_window(self, window): """ Get the desktop a window is on. Uses _NET_WM_DESKTOP of the EWMH spec. If your desktop does not support ``_NET_WM_DESKTOP``, then '*desktop' remains unmodified. :param wid: the window to query """ desktop = c...
[ "def", "get_desktop_for_window", "(", "self", ",", "window", ")", ":", "desktop", "=", "ctypes", ".", "c_long", "(", "0", ")", "_libxdo", ".", "xdo_get_desktop_for_window", "(", "self", ".", "_xdo", ",", "window", ",", "ctypes", ".", "byref", "(", "desktop...
Get the desktop a window is on. Uses _NET_WM_DESKTOP of the EWMH spec. If your desktop does not support ``_NET_WM_DESKTOP``, then '*desktop' remains unmodified. :param wid: the window to query
[ "Get", "the", "desktop", "a", "window", "is", "on", ".", "Uses", "_NET_WM_DESKTOP", "of", "the", "EWMH", "spec", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L655-L668
rshk/python-libxdo
xdo/__init__.py
Xdo.search_windows
def search_windows( self, winname=None, winclass=None, winclassname=None, pid=None, only_visible=False, screen=None, require=False, searchmask=0, desktop=None, limit=0, max_depth=-1): """ Search for windows. :param winname: Regexp to be matched ag...
python
def search_windows( self, winname=None, winclass=None, winclassname=None, pid=None, only_visible=False, screen=None, require=False, searchmask=0, desktop=None, limit=0, max_depth=-1): """ Search for windows. :param winname: Regexp to be matched ag...
[ "def", "search_windows", "(", "self", ",", "winname", "=", "None", ",", "winclass", "=", "None", ",", "winclassname", "=", "None", ",", "pid", "=", "None", ",", "only_visible", "=", "False", ",", "screen", "=", "None", ",", "require", "=", "False", ","...
Search for windows. :param winname: Regexp to be matched against window name :param winclass: Regexp to be matched against window class :param winclassname: Regexp to be matched against window class name :param pid: Only return windows fro...
[ "Search", "for", "windows", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L670-L743
rshk/python-libxdo
xdo/__init__.py
Xdo.get_symbol_map
def get_symbol_map(self): """ If you need the symbol map, use this method. The symbol map is an array of string pairs mapping common tokens to X Keysym strings, such as "alt" to "Alt_L" :return: array of strings. """ # todo: make sure we return a list of strings...
python
def get_symbol_map(self): """ If you need the symbol map, use this method. The symbol map is an array of string pairs mapping common tokens to X Keysym strings, such as "alt" to "Alt_L" :return: array of strings. """ # todo: make sure we return a list of strings...
[ "def", "get_symbol_map", "(", "self", ")", ":", "# todo: make sure we return a list of strings!", "sm", "=", "_libxdo", ".", "xdo_get_symbol_map", "(", ")", "# Return value is like:", "# ['alt', 'Alt_L', ..., None, None, None, ...]", "# We want to return only values up to the first N...
If you need the symbol map, use this method. The symbol map is an array of string pairs mapping common tokens to X Keysym strings, such as "alt" to "Alt_L" :return: array of strings.
[ "If", "you", "need", "the", "symbol", "map", "use", "this", "method", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L782-L805
rshk/python-libxdo
xdo/__init__.py
Xdo.get_active_modifiers
def get_active_modifiers(self): """ Get a list of active keys. Uses XQueryKeymap. :return: list of charcodemap_t instances """ keys = ctypes.pointer(charcodemap_t()) nkeys = ctypes.c_int(0) _libxdo.xdo_get_active_modifiers( self._xdo, ctypes.byref(ke...
python
def get_active_modifiers(self): """ Get a list of active keys. Uses XQueryKeymap. :return: list of charcodemap_t instances """ keys = ctypes.pointer(charcodemap_t()) nkeys = ctypes.c_int(0) _libxdo.xdo_get_active_modifiers( self._xdo, ctypes.byref(ke...
[ "def", "get_active_modifiers", "(", "self", ")", ":", "keys", "=", "ctypes", ".", "pointer", "(", "charcodemap_t", "(", ")", ")", "nkeys", "=", "ctypes", ".", "c_int", "(", "0", ")", "_libxdo", ".", "xdo_get_active_modifiers", "(", "self", ".", "_xdo", "...
Get a list of active keys. Uses XQueryKeymap. :return: list of charcodemap_t instances
[ "Get", "a", "list", "of", "active", "keys", ".", "Uses", "XQueryKeymap", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L807-L818
rshk/python-libxdo
xdo/__init__.py
Xdo.get_window_name
def get_window_name(self, win_id): """ Get a window's name, if any. """ window = window_t(win_id) name_ptr = ctypes.c_char_p() name_len = ctypes.c_int(0) name_type = ctypes.c_int(0) _libxdo.xdo_get_window_name( self._xdo, window, ctypes.byref(n...
python
def get_window_name(self, win_id): """ Get a window's name, if any. """ window = window_t(win_id) name_ptr = ctypes.c_char_p() name_len = ctypes.c_int(0) name_type = ctypes.c_int(0) _libxdo.xdo_get_window_name( self._xdo, window, ctypes.byref(n...
[ "def", "get_window_name", "(", "self", ",", "win_id", ")", ":", "window", "=", "window_t", "(", "win_id", ")", "name_ptr", "=", "ctypes", ".", "c_char_p", "(", ")", "name_len", "=", "ctypes", ".", "c_int", "(", "0", ")", "name_type", "=", "ctypes", "."...
Get a window's name, if any.
[ "Get", "a", "window", "s", "name", "if", "any", "." ]
train
https://github.com/rshk/python-libxdo/blob/84cafa5943b005bc423edd28203a5266b3579ac3/xdo/__init__.py#L870-L883
canonical-ols/acceptable
acceptable/__main__.py
import_metadata
def import_metadata(module_paths): """Import all the given modules""" cwd = os.getcwd() if cwd not in sys.path: sys.path.insert(0, cwd) modules = [] try: for path in module_paths: modules.append(import_module(path)) except ImportError as e: err = RuntimeError(...
python
def import_metadata(module_paths): """Import all the given modules""" cwd = os.getcwd() if cwd not in sys.path: sys.path.insert(0, cwd) modules = [] try: for path in module_paths: modules.append(import_module(path)) except ImportError as e: err = RuntimeError(...
[ "def", "import_metadata", "(", "module_paths", ")", ":", "cwd", "=", "os", ".", "getcwd", "(", ")", "if", "cwd", "not", "in", "sys", ".", "path", ":", "sys", ".", "path", ".", "insert", "(", "0", ",", "cwd", ")", "modules", "=", "[", "]", "try", ...
Import all the given modules
[ "Import", "all", "the", "given", "modules" ]
train
https://github.com/canonical-ols/acceptable/blob/6ccbe969078166a5315d857da38b59b43b29fadc/acceptable/__main__.py#L184-L196
canonical-ols/acceptable
acceptable/__main__.py
load_metadata
def load_metadata(stream): """Load JSON metadata from opened stream.""" try: metadata = json.load( stream, encoding='utf8', object_pairs_hook=OrderedDict) except json.JSONDecodeError as e: err = RuntimeError('Error parsing {}: {}'.format(stream.name, e)) raise_from(err, e...
python
def load_metadata(stream): """Load JSON metadata from opened stream.""" try: metadata = json.load( stream, encoding='utf8', object_pairs_hook=OrderedDict) except json.JSONDecodeError as e: err = RuntimeError('Error parsing {}: {}'.format(stream.name, e)) raise_from(err, e...
[ "def", "load_metadata", "(", "stream", ")", ":", "try", ":", "metadata", "=", "json", ".", "load", "(", "stream", ",", "encoding", "=", "'utf8'", ",", "object_pairs_hook", "=", "OrderedDict", ")", "except", "json", ".", "JSONDecodeError", "as", "e", ":", ...
Load JSON metadata from opened stream.
[ "Load", "JSON", "metadata", "from", "opened", "stream", "." ]
train
https://github.com/canonical-ols/acceptable/blob/6ccbe969078166a5315d857da38b59b43b29fadc/acceptable/__main__.py#L199-L221
elifesciences/elife-tools
elifetools/utils.py
strip_punctuation_space
def strip_punctuation_space(value): "Strip excess whitespace prior to punctuation." def strip_punctuation(string): replacement_list = ( (' .', '.'), (' :', ':'), ('( ', '('), (' )', ')'), ) for match, replacement in replacement_list: ...
python
def strip_punctuation_space(value): "Strip excess whitespace prior to punctuation." def strip_punctuation(string): replacement_list = ( (' .', '.'), (' :', ':'), ('( ', '('), (' )', ')'), ) for match, replacement in replacement_list: ...
[ "def", "strip_punctuation_space", "(", "value", ")", ":", "def", "strip_punctuation", "(", "string", ")", ":", "replacement_list", "=", "(", "(", "' .'", ",", "'.'", ")", ",", "(", "' :'", ",", "':'", ")", ",", "(", "'( '", ",", "'('", ")", ",", "(",...
Strip excess whitespace prior to punctuation.
[ "Strip", "excess", "whitespace", "prior", "to", "punctuation", "." ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L47-L63
elifesciences/elife-tools
elifetools/utils.py
join_sentences
def join_sentences(string1, string2, glue='.'): "concatenate two sentences together with punctuation glue" if not string1 or string1 == '': return string2 if not string2 or string2 == '': return string1 # both are strings, continue joining them together with the glue and whitespace n...
python
def join_sentences(string1, string2, glue='.'): "concatenate two sentences together with punctuation glue" if not string1 or string1 == '': return string2 if not string2 or string2 == '': return string1 # both are strings, continue joining them together with the glue and whitespace n...
[ "def", "join_sentences", "(", "string1", ",", "string2", ",", "glue", "=", "'.'", ")", ":", "if", "not", "string1", "or", "string1", "==", "''", ":", "return", "string2", "if", "not", "string2", "or", "string2", "==", "''", ":", "return", "string1", "#...
concatenate two sentences together with punctuation glue
[ "concatenate", "two", "sentences", "together", "with", "punctuation", "glue" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L65-L76
elifesciences/elife-tools
elifetools/utils.py
coerce_to_int
def coerce_to_int(val, default=0xDEADBEEF): """Attempts to cast given value to an integer, return the original value if failed or the default if one provided.""" try: return int(val) except (TypeError, ValueError): if default != 0xDEADBEEF: return default return val
python
def coerce_to_int(val, default=0xDEADBEEF): """Attempts to cast given value to an integer, return the original value if failed or the default if one provided.""" try: return int(val) except (TypeError, ValueError): if default != 0xDEADBEEF: return default return val
[ "def", "coerce_to_int", "(", "val", ",", "default", "=", "0xDEADBEEF", ")", ":", "try", ":", "return", "int", "(", "val", ")", "except", "(", "TypeError", ",", "ValueError", ")", ":", "if", "default", "!=", "0xDEADBEEF", ":", "return", "default", "return...
Attempts to cast given value to an integer, return the original value if failed or the default if one provided.
[ "Attempts", "to", "cast", "given", "value", "to", "an", "integer", "return", "the", "original", "value", "if", "failed", "or", "the", "default", "if", "one", "provided", "." ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L78-L85
elifesciences/elife-tools
elifetools/utils.py
nullify
def nullify(function): "Decorator. If empty list, returns None, else list." def wrapper(*args, **kwargs): value = function(*args, **kwargs) if(type(value) == list and len(value) == 0): return None return value return wrapper
python
def nullify(function): "Decorator. If empty list, returns None, else list." def wrapper(*args, **kwargs): value = function(*args, **kwargs) if(type(value) == list and len(value) == 0): return None return value return wrapper
[ "def", "nullify", "(", "function", ")", ":", "def", "wrapper", "(", "*", "args", ",", "*", "*", "kwargs", ")", ":", "value", "=", "function", "(", "*", "args", ",", "*", "*", "kwargs", ")", "if", "(", "type", "(", "value", ")", "==", "list", "a...
Decorator. If empty list, returns None, else list.
[ "Decorator", ".", "If", "empty", "list", "returns", "None", "else", "list", "." ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L88-L95
elifesciences/elife-tools
elifetools/utils.py
strippen
def strippen(function): "Decorator. Strip excess whitespace from return value." def wrapper(*args, **kwargs): return strip_strings(function(*args, **kwargs)) return wrapper
python
def strippen(function): "Decorator. Strip excess whitespace from return value." def wrapper(*args, **kwargs): return strip_strings(function(*args, **kwargs)) return wrapper
[ "def", "strippen", "(", "function", ")", ":", "def", "wrapper", "(", "*", "args", ",", "*", "*", "kwargs", ")", ":", "return", "strip_strings", "(", "function", "(", "*", "args", ",", "*", "*", "kwargs", ")", ")", "return", "wrapper" ]
Decorator. Strip excess whitespace from return value.
[ "Decorator", ".", "Strip", "excess", "whitespace", "from", "return", "value", "." ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L97-L101
elifesciences/elife-tools
elifetools/utils.py
inten
def inten(function): "Decorator. Attempts to convert return value to int" def wrapper(*args, **kwargs): return coerce_to_int(function(*args, **kwargs)) return wrapper
python
def inten(function): "Decorator. Attempts to convert return value to int" def wrapper(*args, **kwargs): return coerce_to_int(function(*args, **kwargs)) return wrapper
[ "def", "inten", "(", "function", ")", ":", "def", "wrapper", "(", "*", "args", ",", "*", "*", "kwargs", ")", ":", "return", "coerce_to_int", "(", "function", "(", "*", "args", ",", "*", "*", "kwargs", ")", ")", "return", "wrapper" ]
Decorator. Attempts to convert return value to int
[ "Decorator", ".", "Attempts", "to", "convert", "return", "value", "to", "int" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L103-L107
elifesciences/elife-tools
elifetools/utils.py
date_struct
def date_struct(year, month, day, tz = "UTC"): """ Given year, month and day numeric values and a timezone convert to structured date object """ ymdtz = (year, month, day, tz) if None in ymdtz: #logger.debug("a year, month, day or tz value was empty: %s" % str(ymdtz)) return None...
python
def date_struct(year, month, day, tz = "UTC"): """ Given year, month and day numeric values and a timezone convert to structured date object """ ymdtz = (year, month, day, tz) if None in ymdtz: #logger.debug("a year, month, day or tz value was empty: %s" % str(ymdtz)) return None...
[ "def", "date_struct", "(", "year", ",", "month", ",", "day", ",", "tz", "=", "\"UTC\"", ")", ":", "ymdtz", "=", "(", "year", ",", "month", ",", "day", ",", "tz", ")", "if", "None", "in", "ymdtz", ":", "#logger.debug(\"a year, month, day or tz value was emp...
Given year, month and day numeric values and a timezone convert to structured date object
[ "Given", "year", "month", "and", "day", "numeric", "values", "and", "a", "timezone", "convert", "to", "structured", "date", "object" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L119-L132
elifesciences/elife-tools
elifetools/utils.py
date_struct_nn
def date_struct_nn(year, month, day, tz="UTC"): """ Assemble a date object but if day or month is none set them to 1 to make it easier to deal with partial dates """ if not day: day = 1 if not month: month = 1 return date_struct(year, month, day, tz)
python
def date_struct_nn(year, month, day, tz="UTC"): """ Assemble a date object but if day or month is none set them to 1 to make it easier to deal with partial dates """ if not day: day = 1 if not month: month = 1 return date_struct(year, month, day, tz)
[ "def", "date_struct_nn", "(", "year", ",", "month", ",", "day", ",", "tz", "=", "\"UTC\"", ")", ":", "if", "not", "day", ":", "day", "=", "1", "if", "not", "month", ":", "month", "=", "1", "return", "date_struct", "(", "year", ",", "month", ",", ...
Assemble a date object but if day or month is none set them to 1 to make it easier to deal with partial dates
[ "Assemble", "a", "date", "object", "but", "if", "day", "or", "month", "is", "none", "set", "them", "to", "1", "to", "make", "it", "easier", "to", "deal", "with", "partial", "dates" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L134-L143
elifesciences/elife-tools
elifetools/utils.py
doi_uri_to_doi
def doi_uri_to_doi(value): "Strip the uri schema from the start of DOI URL strings" if value is None: return value replace_values = ['http://dx.doi.org/', 'https://dx.doi.org/', 'http://doi.org/', 'https://doi.org/'] for replace_value in replace_values: value = valu...
python
def doi_uri_to_doi(value): "Strip the uri schema from the start of DOI URL strings" if value is None: return value replace_values = ['http://dx.doi.org/', 'https://dx.doi.org/', 'http://doi.org/', 'https://doi.org/'] for replace_value in replace_values: value = valu...
[ "def", "doi_uri_to_doi", "(", "value", ")", ":", "if", "value", "is", "None", ":", "return", "value", "replace_values", "=", "[", "'http://dx.doi.org/'", ",", "'https://dx.doi.org/'", ",", "'http://doi.org/'", ",", "'https://doi.org/'", "]", "for", "replace_value", ...
Strip the uri schema from the start of DOI URL strings
[ "Strip", "the", "uri", "schema", "from", "the", "start", "of", "DOI", "URL", "strings" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L195-L203
elifesciences/elife-tools
elifetools/utils.py
remove_doi_paragraph
def remove_doi_paragraph(tags): "Given a list of tags, only return those whose text doesn't start with 'DOI:'" p_tags = list(filter(lambda tag: not starts_with_doi(tag), tags)) p_tags = list(filter(lambda tag: not paragraph_is_only_doi(tag), p_tags)) return p_tags
python
def remove_doi_paragraph(tags): "Given a list of tags, only return those whose text doesn't start with 'DOI:'" p_tags = list(filter(lambda tag: not starts_with_doi(tag), tags)) p_tags = list(filter(lambda tag: not paragraph_is_only_doi(tag), p_tags)) return p_tags
[ "def", "remove_doi_paragraph", "(", "tags", ")", ":", "p_tags", "=", "list", "(", "filter", "(", "lambda", "tag", ":", "not", "starts_with_doi", "(", "tag", ")", ",", "tags", ")", ")", "p_tags", "=", "list", "(", "filter", "(", "lambda", "tag", ":", ...
Given a list of tags, only return those whose text doesn't start with 'DOI:
[ "Given", "a", "list", "of", "tags", "only", "return", "those", "whose", "text", "doesn", "t", "start", "with", "DOI", ":" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L212-L216
elifesciences/elife-tools
elifetools/utils.py
orcid_uri_to_orcid
def orcid_uri_to_orcid(value): "Strip the uri schema from the start of ORCID URL strings" if value is None: return value replace_values = ['http://orcid.org/', 'https://orcid.org/'] for replace_value in replace_values: value = value.replace(replace_value, '') return value
python
def orcid_uri_to_orcid(value): "Strip the uri schema from the start of ORCID URL strings" if value is None: return value replace_values = ['http://orcid.org/', 'https://orcid.org/'] for replace_value in replace_values: value = value.replace(replace_value, '') return value
[ "def", "orcid_uri_to_orcid", "(", "value", ")", ":", "if", "value", "is", "None", ":", "return", "value", "replace_values", "=", "[", "'http://orcid.org/'", ",", "'https://orcid.org/'", "]", "for", "replace_value", "in", "replace_values", ":", "value", "=", "val...
Strip the uri schema from the start of ORCID URL strings
[ "Strip", "the", "uri", "schema", "from", "the", "start", "of", "ORCID", "URL", "strings" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L218-L225
elifesciences/elife-tools
elifetools/utils.py
component_acting_parent_tag
def component_acting_parent_tag(parent_tag, tag): """ Only intended for use in getting components, look for tag name of fig-group and if so, find the first fig tag inside it as the acting parent tag """ if parent_tag.name == "fig-group": if (len(tag.find_previous_siblings("fig")) > 0): ...
python
def component_acting_parent_tag(parent_tag, tag): """ Only intended for use in getting components, look for tag name of fig-group and if so, find the first fig tag inside it as the acting parent tag """ if parent_tag.name == "fig-group": if (len(tag.find_previous_siblings("fig")) > 0): ...
[ "def", "component_acting_parent_tag", "(", "parent_tag", ",", "tag", ")", ":", "if", "parent_tag", ".", "name", "==", "\"fig-group\"", ":", "if", "(", "len", "(", "tag", ".", "find_previous_siblings", "(", "\"fig\"", ")", ")", ">", "0", ")", ":", "acting_p...
Only intended for use in getting components, look for tag name of fig-group and if so, find the first fig tag inside it as the acting parent tag
[ "Only", "intended", "for", "use", "in", "getting", "components", "look", "for", "tag", "name", "of", "fig", "-", "group", "and", "if", "so", "find", "the", "first", "fig", "tag", "inside", "it", "as", "the", "acting", "parent", "tag" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L235-L248
elifesciences/elife-tools
elifetools/utils.py
extract_nodes
def extract_nodes(soup, nodename, attr = None, value = None): """ Returns a list of tags (nodes) from the given soup matching the given nodename. If an optional attribute and value are given, these are used to filter the results further.""" tags = soup.find_all(nodename) if attr != None and valu...
python
def extract_nodes(soup, nodename, attr = None, value = None): """ Returns a list of tags (nodes) from the given soup matching the given nodename. If an optional attribute and value are given, these are used to filter the results further.""" tags = soup.find_all(nodename) if attr != None and valu...
[ "def", "extract_nodes", "(", "soup", ",", "nodename", ",", "attr", "=", "None", ",", "value", "=", "None", ")", ":", "tags", "=", "soup", ".", "find_all", "(", "nodename", ")", "if", "attr", "!=", "None", "and", "value", "!=", "None", ":", "return", ...
Returns a list of tags (nodes) from the given soup matching the given nodename. If an optional attribute and value are given, these are used to filter the results further.
[ "Returns", "a", "list", "of", "tags", "(", "nodes", ")", "from", "the", "given", "soup", "matching", "the", "given", "nodename", ".", "If", "an", "optional", "attribute", "and", "value", "are", "given", "these", "are", "used", "to", "filter", "the", "res...
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L254-L262
elifesciences/elife-tools
elifetools/utils.py
node_contents_str
def node_contents_str(tag): """ Return the contents of a tag, including it's children, as a string. Does not include the root/parent of the tag. """ if not tag: return None tag_string = '' for child_tag in tag.children: if isinstance(child_tag, Comment): # Beautif...
python
def node_contents_str(tag): """ Return the contents of a tag, including it's children, as a string. Does not include the root/parent of the tag. """ if not tag: return None tag_string = '' for child_tag in tag.children: if isinstance(child_tag, Comment): # Beautif...
[ "def", "node_contents_str", "(", "tag", ")", ":", "if", "not", "tag", ":", "return", "None", "tag_string", "=", "''", "for", "child_tag", "in", "tag", ".", "children", ":", "if", "isinstance", "(", "child_tag", ",", "Comment", ")", ":", "# BeautifulSoup do...
Return the contents of a tag, including it's children, as a string. Does not include the root/parent of the tag.
[ "Return", "the", "contents", "of", "a", "tag", "including", "it", "s", "children", "as", "a", "string", ".", "Does", "not", "include", "the", "root", "/", "parent", "of", "the", "tag", "." ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L268-L282
elifesciences/elife-tools
elifetools/utils.py
first_parent
def first_parent(tag, nodename): """ Given a beautiful soup tag, look at its parents and return the first tag name that matches nodename or the list nodename """ if nodename is not None and type(nodename) == str: nodename = [nodename] return first(list(filter(lambda tag: tag.name in node...
python
def first_parent(tag, nodename): """ Given a beautiful soup tag, look at its parents and return the first tag name that matches nodename or the list nodename """ if nodename is not None and type(nodename) == str: nodename = [nodename] return first(list(filter(lambda tag: tag.name in node...
[ "def", "first_parent", "(", "tag", ",", "nodename", ")", ":", "if", "nodename", "is", "not", "None", "and", "type", "(", "nodename", ")", "==", "str", ":", "nodename", "=", "[", "nodename", "]", "return", "first", "(", "list", "(", "filter", "(", "la...
Given a beautiful soup tag, look at its parents and return the first tag name that matches nodename or the list nodename
[ "Given", "a", "beautiful", "soup", "tag", "look", "at", "its", "parents", "and", "return", "the", "first", "tag", "name", "that", "matches", "nodename", "or", "the", "list", "nodename" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L284-L291
elifesciences/elife-tools
elifetools/utils.py
tag_fig_ordinal
def tag_fig_ordinal(tag): """ Meant for finding the position of fig tags with respect to whether they are for a main figure or a child figure """ tag_count = 0 if 'specific-use' not in tag.attrs: # Look for tags with no "specific-use" attribute return len(list(filter(lambda tag: ...
python
def tag_fig_ordinal(tag): """ Meant for finding the position of fig tags with respect to whether they are for a main figure or a child figure """ tag_count = 0 if 'specific-use' not in tag.attrs: # Look for tags with no "specific-use" attribute return len(list(filter(lambda tag: ...
[ "def", "tag_fig_ordinal", "(", "tag", ")", ":", "tag_count", "=", "0", "if", "'specific-use'", "not", "in", "tag", ".", "attrs", ":", "# Look for tags with no \"specific-use\" attribute", "return", "len", "(", "list", "(", "filter", "(", "lambda", "tag", ":", ...
Meant for finding the position of fig tags with respect to whether they are for a main figure or a child figure
[ "Meant", "for", "finding", "the", "position", "of", "fig", "tags", "with", "respect", "to", "whether", "they", "are", "for", "a", "main", "figure", "or", "a", "child", "figure" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L302-L311
elifesciences/elife-tools
elifetools/utils.py
tag_limit_sibling_ordinal
def tag_limit_sibling_ordinal(tag, stop_tag_name): """ Count previous tags of the same name until it reaches a tag name of type stop_tag, then stop counting """ tag_count = 1 for prev_tag in tag.previous_elements: if prev_tag.name == tag.name: tag_count += 1 if prev_t...
python
def tag_limit_sibling_ordinal(tag, stop_tag_name): """ Count previous tags of the same name until it reaches a tag name of type stop_tag, then stop counting """ tag_count = 1 for prev_tag in tag.previous_elements: if prev_tag.name == tag.name: tag_count += 1 if prev_t...
[ "def", "tag_limit_sibling_ordinal", "(", "tag", ",", "stop_tag_name", ")", ":", "tag_count", "=", "1", "for", "prev_tag", "in", "tag", ".", "previous_elements", ":", "if", "prev_tag", ".", "name", "==", "tag", ".", "name", ":", "tag_count", "+=", "1", "if"...
Count previous tags of the same name until it reaches a tag name of type stop_tag, then stop counting
[ "Count", "previous", "tags", "of", "the", "same", "name", "until", "it", "reaches", "a", "tag", "name", "of", "type", "stop_tag", "then", "stop", "counting" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L323-L335
elifesciences/elife-tools
elifetools/utils.py
tag_media_sibling_ordinal
def tag_media_sibling_ordinal(tag): """ Count sibling ordinal differently depending on if the mimetype is video or not """ if hasattr(tag, 'name') and tag.name != 'media': return None nodenames = ['fig','supplementary-material','sub-article'] first_parent_tag = first_parent(tag, nod...
python
def tag_media_sibling_ordinal(tag): """ Count sibling ordinal differently depending on if the mimetype is video or not """ if hasattr(tag, 'name') and tag.name != 'media': return None nodenames = ['fig','supplementary-material','sub-article'] first_parent_tag = first_parent(tag, nod...
[ "def", "tag_media_sibling_ordinal", "(", "tag", ")", ":", "if", "hasattr", "(", "tag", ",", "'name'", ")", "and", "tag", ".", "name", "!=", "'media'", ":", "return", "None", "nodenames", "=", "[", "'fig'", ",", "'supplementary-material'", ",", "'sub-article'...
Count sibling ordinal differently depending on if the mimetype is video or not
[ "Count", "sibling", "ordinal", "differently", "depending", "on", "if", "the", "mimetype", "is", "video", "or", "not" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L343-L387
elifesciences/elife-tools
elifetools/utils.py
tag_supplementary_material_sibling_ordinal
def tag_supplementary_material_sibling_ordinal(tag): """ Strategy is to count the previous supplementary-material tags having the same asset value to get its sibling ordinal. The result is its position inside any parent tag that are the same asset type """ if hasattr(tag, 'name') and tag.nam...
python
def tag_supplementary_material_sibling_ordinal(tag): """ Strategy is to count the previous supplementary-material tags having the same asset value to get its sibling ordinal. The result is its position inside any parent tag that are the same asset type """ if hasattr(tag, 'name') and tag.nam...
[ "def", "tag_supplementary_material_sibling_ordinal", "(", "tag", ")", ":", "if", "hasattr", "(", "tag", ",", "'name'", ")", "and", "tag", ".", "name", "!=", "'supplementary-material'", ":", "return", "None", "nodenames", "=", "[", "'fig'", ",", "'media'", ",",...
Strategy is to count the previous supplementary-material tags having the same asset value to get its sibling ordinal. The result is its position inside any parent tag that are the same asset type
[ "Strategy", "is", "to", "count", "the", "previous", "supplementary", "-", "material", "tags", "having", "the", "same", "asset", "value", "to", "get", "its", "sibling", "ordinal", ".", "The", "result", "is", "its", "position", "inside", "any", "parent", "tag"...
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L389-L422
elifesciences/elife-tools
elifetools/utils.py
supp_asset
def supp_asset(tag): """ Given a supplementary-material tag, the asset value depends on its label text. This also informs in what order (its ordinal) it has depending on how many of each type is present """ # Default asset = 'supp' if first(extract_nodes(tag, "label")): label_tex...
python
def supp_asset(tag): """ Given a supplementary-material tag, the asset value depends on its label text. This also informs in what order (its ordinal) it has depending on how many of each type is present """ # Default asset = 'supp' if first(extract_nodes(tag, "label")): label_tex...
[ "def", "supp_asset", "(", "tag", ")", ":", "# Default", "asset", "=", "'supp'", "if", "first", "(", "extract_nodes", "(", "tag", ",", "\"label\"", ")", ")", ":", "label_text", "=", "node_text", "(", "first", "(", "extract_nodes", "(", "tag", ",", "\"labe...
Given a supplementary-material tag, the asset value depends on its label text. This also informs in what order (its ordinal) it has depending on how many of each type is present
[ "Given", "a", "supplementary", "-", "material", "tag", "the", "asset", "value", "depends", "on", "its", "label", "text", ".", "This", "also", "informs", "in", "what", "order", "(", "its", "ordinal", ")", "it", "has", "depending", "on", "how", "many", "of...
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L425-L440
elifesciences/elife-tools
elifetools/utils.py
text_to_title
def text_to_title(value): """when a title is required, generate one from the value""" title = None if not value: return title words = value.split(" ") keep_words = [] for word in words: if word.endswith(".") or word.endswith(":"): keep_words.append(word) i...
python
def text_to_title(value): """when a title is required, generate one from the value""" title = None if not value: return title words = value.split(" ") keep_words = [] for word in words: if word.endswith(".") or word.endswith(":"): keep_words.append(word) i...
[ "def", "text_to_title", "(", "value", ")", ":", "title", "=", "None", "if", "not", "value", ":", "return", "title", "words", "=", "value", ".", "split", "(", "\" \"", ")", "keep_words", "=", "[", "]", "for", "word", "in", "words", ":", "if", "word", ...
when a title is required, generate one from the value
[ "when", "a", "title", "is", "required", "generate", "one", "from", "the", "value" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L460-L478
elifesciences/elife-tools
elifetools/utils.py
escape_unmatched_angle_brackets
def escape_unmatched_angle_brackets(string, allowed_tag_fragments=()): """ In order to make an XML string less malformed, escape unmatched less than tags that are not part of an allowed tag Note: Very, very basic, and do not try regex \1 style replacements on unicode ever again! Instead this uses ...
python
def escape_unmatched_angle_brackets(string, allowed_tag_fragments=()): """ In order to make an XML string less malformed, escape unmatched less than tags that are not part of an allowed tag Note: Very, very basic, and do not try regex \1 style replacements on unicode ever again! Instead this uses ...
[ "def", "escape_unmatched_angle_brackets", "(", "string", ",", "allowed_tag_fragments", "=", "(", ")", ")", ":", "if", "not", "string", ":", "return", "string", "# Split string on tags", "tags", "=", "re", ".", "split", "(", "'(<.*?>)'", ",", "string", ")", "#p...
In order to make an XML string less malformed, escape unmatched less than tags that are not part of an allowed tag Note: Very, very basic, and do not try regex \1 style replacements on unicode ever again! Instead this uses string replace allowed_tag_fragments is a tuple of tag name matches for use wit...
[ "In", "order", "to", "make", "an", "XML", "string", "less", "malformed", "escape", "unmatched", "less", "than", "tags", "that", "are", "not", "part", "of", "an", "allowed", "tag", "Note", ":", "Very", "very", "basic", "and", "do", "not", "try", "regex", ...
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L486-L521
elifesciences/elife-tools
elifetools/utils.py
escape_ampersand
def escape_ampersand(string): """ Quick convert unicode ampersand characters not associated with a numbered entity or not starting with allowed characters to a plain &amp; """ if not string: return string start_with_match = r"(\#x(....);|lt;|gt;|amp;)" # The pattern below is match & ...
python
def escape_ampersand(string): """ Quick convert unicode ampersand characters not associated with a numbered entity or not starting with allowed characters to a plain &amp; """ if not string: return string start_with_match = r"(\#x(....);|lt;|gt;|amp;)" # The pattern below is match & ...
[ "def", "escape_ampersand", "(", "string", ")", ":", "if", "not", "string", ":", "return", "string", "start_with_match", "=", "r\"(\\#x(....);|lt;|gt;|amp;)\"", "# The pattern below is match & that is not immediately followed by #", "string", "=", "re", ".", "sub", "(", "r...
Quick convert unicode ampersand characters not associated with a numbered entity or not starting with allowed characters to a plain &amp;
[ "Quick", "convert", "unicode", "ampersand", "characters", "not", "associated", "with", "a", "numbered", "entity", "or", "not", "starting", "with", "allowed", "characters", "to", "a", "plain", "&amp", ";" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/utils.py#L523-L533
elifesciences/elife-tools
elifetools/xmlio.py
parse
def parse(filename, return_doctype_dict=False): """ to extract the doctype details from the file when parsed and return the data for later use, set return_doctype_dict to True """ doctype_dict = {} # check for python version, doctype in ElementTree is deprecated 3.2 and above if sys.version_...
python
def parse(filename, return_doctype_dict=False): """ to extract the doctype details from the file when parsed and return the data for later use, set return_doctype_dict to True """ doctype_dict = {} # check for python version, doctype in ElementTree is deprecated 3.2 and above if sys.version_...
[ "def", "parse", "(", "filename", ",", "return_doctype_dict", "=", "False", ")", ":", "doctype_dict", "=", "{", "}", "# check for python version, doctype in ElementTree is deprecated 3.2 and above", "if", "sys", ".", "version_info", "<", "(", "3", ",", "2", ")", ":",...
to extract the doctype details from the file when parsed and return the data for later use, set return_doctype_dict to True
[ "to", "extract", "the", "doctype", "details", "from", "the", "file", "when", "parsed", "and", "return", "the", "data", "for", "later", "use", "set", "return_doctype_dict", "to", "True" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/xmlio.py#L41-L66
elifesciences/elife-tools
elifetools/xmlio.py
add_tag_before
def add_tag_before(tag_name, tag_text, parent_tag, before_tag_name): """ Helper function to refactor the adding of new tags especially for when converting text to role tags """ new_tag = Element(tag_name) new_tag.text = tag_text if get_first_element_index(parent_tag, before_tag_name): ...
python
def add_tag_before(tag_name, tag_text, parent_tag, before_tag_name): """ Helper function to refactor the adding of new tags especially for when converting text to role tags """ new_tag = Element(tag_name) new_tag.text = tag_text if get_first_element_index(parent_tag, before_tag_name): ...
[ "def", "add_tag_before", "(", "tag_name", ",", "tag_text", ",", "parent_tag", ",", "before_tag_name", ")", ":", "new_tag", "=", "Element", "(", "tag_name", ")", "new_tag", ".", "text", "=", "tag_text", "if", "get_first_element_index", "(", "parent_tag", ",", "...
Helper function to refactor the adding of new tags especially for when converting text to role tags
[ "Helper", "function", "to", "refactor", "the", "adding", "of", "new", "tags", "especially", "for", "when", "converting", "text", "to", "role", "tags" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/xmlio.py#L68-L77
elifesciences/elife-tools
elifetools/xmlio.py
get_first_element_index
def get_first_element_index(root, tag_name): """ In order to use Element.insert() in a convenient way, this function will find the first child tag with tag_name and return its index position The index can then be used to insert an element before or after the found tag using Element.insert() ...
python
def get_first_element_index(root, tag_name): """ In order to use Element.insert() in a convenient way, this function will find the first child tag with tag_name and return its index position The index can then be used to insert an element before or after the found tag using Element.insert() ...
[ "def", "get_first_element_index", "(", "root", ",", "tag_name", ")", ":", "tag_index", "=", "1", "for", "tag", "in", "root", ":", "if", "tag", ".", "tag", "==", "tag_name", ":", "# Return the first one found if there is a match", "return", "tag_index", "tag_index"...
In order to use Element.insert() in a convenient way, this function will find the first child tag with tag_name and return its index position The index can then be used to insert an element before or after the found tag using Element.insert()
[ "In", "order", "to", "use", "Element", ".", "insert", "()", "in", "a", "convenient", "way", "this", "function", "will", "find", "the", "first", "child", "tag", "with", "tag_name", "and", "return", "its", "index", "position", "The", "index", "can", "then", ...
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/xmlio.py#L80-L95
elifesciences/elife-tools
elifetools/xmlio.py
rewrite_subject_group
def rewrite_subject_group(root, subjects, subject_group_type, overwrite=True): "add or rewrite subject tags inside subj-group tags" parent_tag_name = 'subj-group' tag_name = 'subject' wrap_tag_name = 'article-categories' tag_attribute = 'subj-group-type' # the parent tag where it should be found...
python
def rewrite_subject_group(root, subjects, subject_group_type, overwrite=True): "add or rewrite subject tags inside subj-group tags" parent_tag_name = 'subj-group' tag_name = 'subject' wrap_tag_name = 'article-categories' tag_attribute = 'subj-group-type' # the parent tag where it should be found...
[ "def", "rewrite_subject_group", "(", "root", ",", "subjects", ",", "subject_group_type", ",", "overwrite", "=", "True", ")", ":", "parent_tag_name", "=", "'subj-group'", "tag_name", "=", "'subject'", "wrap_tag_name", "=", "'article-categories'", "tag_attribute", "=", ...
add or rewrite subject tags inside subj-group tags
[ "add", "or", "rewrite", "subject", "tags", "inside", "subj", "-", "group", "tags" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/xmlio.py#L119-L169
elifesciences/elife-tools
elifetools/xmlio.py
build_doctype
def build_doctype(qualifiedName, publicId=None, systemId=None, internalSubset=None): """ Instantiate an ElifeDocumentType, a subclass of minidom.DocumentType, with some properties so it is more testable """ doctype = ElifeDocumentType(qualifiedName) doctype._identified_mixin_init(publicId, syste...
python
def build_doctype(qualifiedName, publicId=None, systemId=None, internalSubset=None): """ Instantiate an ElifeDocumentType, a subclass of minidom.DocumentType, with some properties so it is more testable """ doctype = ElifeDocumentType(qualifiedName) doctype._identified_mixin_init(publicId, syste...
[ "def", "build_doctype", "(", "qualifiedName", ",", "publicId", "=", "None", ",", "systemId", "=", "None", ",", "internalSubset", "=", "None", ")", ":", "doctype", "=", "ElifeDocumentType", "(", "qualifiedName", ")", "doctype", ".", "_identified_mixin_init", "(",...
Instantiate an ElifeDocumentType, a subclass of minidom.DocumentType, with some properties so it is more testable
[ "Instantiate", "an", "ElifeDocumentType", "a", "subclass", "of", "minidom", ".", "DocumentType", "with", "some", "properties", "so", "it", "is", "more", "testable" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/xmlio.py#L209-L218
elifesciences/elife-tools
elifetools/xmlio.py
append_minidom_xml_to_elementtree_xml
def append_minidom_xml_to_elementtree_xml(parent, xml, recursive=False, attributes=None): """ Recursively, Given an ElementTree.Element as parent, and a minidom instance as xml, append the tags and content from xml to parent Used primarily for adding a snippet of XML with <italic> tags attribute...
python
def append_minidom_xml_to_elementtree_xml(parent, xml, recursive=False, attributes=None): """ Recursively, Given an ElementTree.Element as parent, and a minidom instance as xml, append the tags and content from xml to parent Used primarily for adding a snippet of XML with <italic> tags attribute...
[ "def", "append_minidom_xml_to_elementtree_xml", "(", "parent", ",", "xml", ",", "recursive", "=", "False", ",", "attributes", "=", "None", ")", ":", "# Get the root tag name", "if", "recursive", "is", "False", ":", "tag_name", "=", "xml", ".", "documentElement", ...
Recursively, Given an ElementTree.Element as parent, and a minidom instance as xml, append the tags and content from xml to parent Used primarily for adding a snippet of XML with <italic> tags attributes: a list of attribute names to copy
[ "Recursively", "Given", "an", "ElementTree", ".", "Element", "as", "parent", "and", "a", "minidom", "instance", "as", "xml", "append", "the", "tags", "and", "content", "from", "xml", "to", "parent", "Used", "primarily", "for", "adding", "a", "snippet", "of",...
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/xmlio.py#L245-L290
elifesciences/elife-tools
elifetools/json_rewrite.py
rewrite_json
def rewrite_json(rewrite_type, soup, json_content): """ Due to XML content that will not conform with the strict JSON schema validation rules, for elife articles only, rewrite the JSON to make it valid """ if not soup: return json_content if not elifetools.rawJATS.doi(soup) or not elifet...
python
def rewrite_json(rewrite_type, soup, json_content): """ Due to XML content that will not conform with the strict JSON schema validation rules, for elife articles only, rewrite the JSON to make it valid """ if not soup: return json_content if not elifetools.rawJATS.doi(soup) or not elifet...
[ "def", "rewrite_json", "(", "rewrite_type", ",", "soup", ",", "json_content", ")", ":", "if", "not", "soup", ":", "return", "json_content", "if", "not", "elifetools", ".", "rawJATS", ".", "doi", "(", "soup", ")", "or", "not", "elifetools", ".", "rawJATS", ...
Due to XML content that will not conform with the strict JSON schema validation rules, for elife articles only, rewrite the JSON to make it valid
[ "Due", "to", "XML", "content", "that", "will", "not", "conform", "with", "the", "strict", "JSON", "schema", "validation", "rules", "for", "elife", "articles", "only", "rewrite", "the", "JSON", "to", "make", "it", "valid" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/json_rewrite.py#L10-L32
elifesciences/elife-tools
elifetools/json_rewrite.py
rewrite_elife_references_json
def rewrite_elife_references_json(json_content, doi): """ this does the work of rewriting elife references json """ references_rewrite_json = elife_references_rewrite_json() if doi in references_rewrite_json: json_content = rewrite_references_json(json_content, references_rewrite_json[doi]) # E...
python
def rewrite_elife_references_json(json_content, doi): """ this does the work of rewriting elife references json """ references_rewrite_json = elife_references_rewrite_json() if doi in references_rewrite_json: json_content = rewrite_references_json(json_content, references_rewrite_json[doi]) # E...
[ "def", "rewrite_elife_references_json", "(", "json_content", ",", "doi", ")", ":", "references_rewrite_json", "=", "elife_references_rewrite_json", "(", ")", "if", "doi", "in", "references_rewrite_json", ":", "json_content", "=", "rewrite_references_json", "(", "json_cont...
this does the work of rewriting elife references json
[ "this", "does", "the", "work", "of", "rewriting", "elife", "references", "json" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/json_rewrite.py#L40-L52
elifesciences/elife-tools
elifetools/json_rewrite.py
rewrite_references_json
def rewrite_references_json(json_content, rewrite_json): """ general purpose references json rewriting by matching the id value """ for ref in json_content: if ref.get("id") and ref.get("id") in rewrite_json: for key, value in iteritems(rewrite_json.get(ref.get("id"))): ref[k...
python
def rewrite_references_json(json_content, rewrite_json): """ general purpose references json rewriting by matching the id value """ for ref in json_content: if ref.get("id") and ref.get("id") in rewrite_json: for key, value in iteritems(rewrite_json.get(ref.get("id"))): ref[k...
[ "def", "rewrite_references_json", "(", "json_content", ",", "rewrite_json", ")", ":", "for", "ref", "in", "json_content", ":", "if", "ref", ".", "get", "(", "\"id\"", ")", "and", "ref", ".", "get", "(", "\"id\"", ")", "in", "rewrite_json", ":", "for", "k...
general purpose references json rewriting by matching the id value
[ "general", "purpose", "references", "json", "rewriting", "by", "matching", "the", "id", "value" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/json_rewrite.py#L54-L60
elifesciences/elife-tools
elifetools/json_rewrite.py
elife_references_rewrite_json
def elife_references_rewrite_json(): """ Here is the DOI and references json replacements data for elife """ references_rewrite_json = {} references_rewrite_json["10.7554/eLife.00051"] = {"bib25": {"date": "2012"}} references_rewrite_json["10.7554/eLife.00278"] = {"bib11": {"date": "2013"}} referen...
python
def elife_references_rewrite_json(): """ Here is the DOI and references json replacements data for elife """ references_rewrite_json = {} references_rewrite_json["10.7554/eLife.00051"] = {"bib25": {"date": "2012"}} references_rewrite_json["10.7554/eLife.00278"] = {"bib11": {"date": "2013"}} referen...
[ "def", "elife_references_rewrite_json", "(", ")", ":", "references_rewrite_json", "=", "{", "}", "references_rewrite_json", "[", "\"10.7554/eLife.00051\"", "]", "=", "{", "\"bib25\"", ":", "{", "\"date\"", ":", "\"2012\"", "}", "}", "references_rewrite_json", "[", "...
Here is the DOI and references json replacements data for elife
[ "Here", "is", "the", "DOI", "and", "references", "json", "replacements", "data", "for", "elife" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/json_rewrite.py#L62-L391
elifesciences/elife-tools
elifetools/json_rewrite.py
rewrite_elife_body_json
def rewrite_elife_body_json(json_content, doi): """ rewrite elife body json """ # Edge case add an id to a section if doi == "10.7554/eLife.00013": if (json_content and len(json_content) > 0): if (json_content[0].get("type") and json_content[0].get("type") == "section" a...
python
def rewrite_elife_body_json(json_content, doi): """ rewrite elife body json """ # Edge case add an id to a section if doi == "10.7554/eLife.00013": if (json_content and len(json_content) > 0): if (json_content[0].get("type") and json_content[0].get("type") == "section" a...
[ "def", "rewrite_elife_body_json", "(", "json_content", ",", "doi", ")", ":", "# Edge case add an id to a section", "if", "doi", "==", "\"10.7554/eLife.00013\"", ":", "if", "(", "json_content", "and", "len", "(", "json_content", ")", ">", "0", ")", ":", "if", "("...
rewrite elife body json
[ "rewrite", "elife", "body", "json" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/json_rewrite.py#L393-L477
elifesciences/elife-tools
elifetools/json_rewrite.py
rewrite_elife_funding_awards
def rewrite_elife_funding_awards(json_content, doi): """ rewrite elife funding awards """ # remove a funding award if doi == "10.7554/eLife.00801": for i, award in enumerate(json_content): if "id" in award and award["id"] == "par-2": del json_content[i] # add fundin...
python
def rewrite_elife_funding_awards(json_content, doi): """ rewrite elife funding awards """ # remove a funding award if doi == "10.7554/eLife.00801": for i, award in enumerate(json_content): if "id" in award and award["id"] == "par-2": del json_content[i] # add fundin...
[ "def", "rewrite_elife_funding_awards", "(", "json_content", ",", "doi", ")", ":", "# remove a funding award", "if", "doi", "==", "\"10.7554/eLife.00801\"", ":", "for", "i", ",", "award", "in", "enumerate", "(", "json_content", ")", ":", "if", "\"id\"", "in", "aw...
rewrite elife funding awards
[ "rewrite", "elife", "funding", "awards" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/json_rewrite.py#L480-L505
elifesciences/elife-tools
elifetools/json_rewrite.py
rewrite_elife_authors_json
def rewrite_elife_authors_json(json_content, doi): """ this does the work of rewriting elife authors json """ # Convert doi from testing doi if applicable article_doi = elifetools.utils.convert_testing_doi(doi) # Edge case fix an affiliation name if article_doi == "10.7554/eLife.06956": fo...
python
def rewrite_elife_authors_json(json_content, doi): """ this does the work of rewriting elife authors json """ # Convert doi from testing doi if applicable article_doi = elifetools.utils.convert_testing_doi(doi) # Edge case fix an affiliation name if article_doi == "10.7554/eLife.06956": fo...
[ "def", "rewrite_elife_authors_json", "(", "json_content", ",", "doi", ")", ":", "# Convert doi from testing doi if applicable", "article_doi", "=", "elifetools", ".", "utils", ".", "convert_testing_doi", "(", "doi", ")", "# Edge case fix an affiliation name", "if", "article...
this does the work of rewriting elife authors json
[ "this", "does", "the", "work", "of", "rewriting", "elife", "authors", "json" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/json_rewrite.py#L507-L624
elifesciences/elife-tools
elifetools/json_rewrite.py
rewrite_elife_datasets_json
def rewrite_elife_datasets_json(json_content, doi): """ this does the work of rewriting elife datasets json """ # Add dates in bulk elife_dataset_dates = [] elife_dataset_dates.append(("10.7554/eLife.00348", "used", "dataro17", u"2010")) elife_dataset_dates.append(("10.7554/eLife.01179", "used", "d...
python
def rewrite_elife_datasets_json(json_content, doi): """ this does the work of rewriting elife datasets json """ # Add dates in bulk elife_dataset_dates = [] elife_dataset_dates.append(("10.7554/eLife.00348", "used", "dataro17", u"2010")) elife_dataset_dates.append(("10.7554/eLife.01179", "used", "d...
[ "def", "rewrite_elife_datasets_json", "(", "json_content", ",", "doi", ")", ":", "# Add dates in bulk", "elife_dataset_dates", "=", "[", "]", "elife_dataset_dates", ".", "append", "(", "(", "\"10.7554/eLife.00348\"", ",", "\"used\"", ",", "\"dataro17\"", ",", "u\"2010...
this does the work of rewriting elife datasets json
[ "this", "does", "the", "work", "of", "rewriting", "elife", "datasets", "json" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/json_rewrite.py#L626-L925
elifesciences/elife-tools
elifetools/json_rewrite.py
rewrite_elife_editors_json
def rewrite_elife_editors_json(json_content, doi): """ this does the work of rewriting elife editors json """ # Remove affiliations with no name value for i, ref in enumerate(json_content): if ref.get("affiliations"): for aff in ref.get("affiliations"): if "name" not in ...
python
def rewrite_elife_editors_json(json_content, doi): """ this does the work of rewriting elife editors json """ # Remove affiliations with no name value for i, ref in enumerate(json_content): if ref.get("affiliations"): for aff in ref.get("affiliations"): if "name" not in ...
[ "def", "rewrite_elife_editors_json", "(", "json_content", ",", "doi", ")", ":", "# Remove affiliations with no name value", "for", "i", ",", "ref", "in", "enumerate", "(", "json_content", ")", ":", "if", "ref", ".", "get", "(", "\"affiliations\"", ")", ":", "for...
this does the work of rewriting elife editors json
[ "this", "does", "the", "work", "of", "rewriting", "elife", "editors", "json" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/json_rewrite.py#L937-L1169
elifesciences/elife-tools
elifetools/json_rewrite.py
person_same_name_map
def person_same_name_map(json_content, role_from): "to merge multiple editors into one record, filter by role values and group by name" matched_editors = [(i, person) for i, person in enumerate(json_content) if person.get('role') in role_from] same_name_map = {} for i, editor in m...
python
def person_same_name_map(json_content, role_from): "to merge multiple editors into one record, filter by role values and group by name" matched_editors = [(i, person) for i, person in enumerate(json_content) if person.get('role') in role_from] same_name_map = {} for i, editor in m...
[ "def", "person_same_name_map", "(", "json_content", ",", "role_from", ")", ":", "matched_editors", "=", "[", "(", "i", ",", "person", ")", "for", "i", ",", "person", "in", "enumerate", "(", "json_content", ")", "if", "person", ".", "get", "(", "'role'", ...
to merge multiple editors into one record, filter by role values and group by name
[ "to", "merge", "multiple", "editors", "into", "one", "record", "filter", "by", "role", "values", "and", "group", "by", "name" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/json_rewrite.py#L1172-L1185
elifesciences/elife-tools
elifetools/json_rewrite.py
rewrite_elife_title_prefix_json
def rewrite_elife_title_prefix_json(json_content, doi): """ this does the work of rewriting elife title prefix json values""" if not json_content: return json_content # title prefix rewrites by article DOI title_prefix_values = {} title_prefix_values["10.7554/eLife.00452"] = "Point of View"...
python
def rewrite_elife_title_prefix_json(json_content, doi): """ this does the work of rewriting elife title prefix json values""" if not json_content: return json_content # title prefix rewrites by article DOI title_prefix_values = {} title_prefix_values["10.7554/eLife.00452"] = "Point of View"...
[ "def", "rewrite_elife_title_prefix_json", "(", "json_content", ",", "doi", ")", ":", "if", "not", "json_content", ":", "return", "json_content", "# title prefix rewrites by article DOI", "title_prefix_values", "=", "{", "}", "title_prefix_values", "[", "\"10.7554/eLife.0045...
this does the work of rewriting elife title prefix json values
[ "this", "does", "the", "work", "of", "rewriting", "elife", "title", "prefix", "json", "values" ]
train
https://github.com/elifesciences/elife-tools/blob/4b9e38cbe485c61a4ed7cbd8970c6b318334fd86/elifetools/json_rewrite.py#L1188-L1364
canonical-ols/acceptable
acceptable/lint.py
metadata_lint
def metadata_lint(old, new, locations): """Run the linter over the new metadata, comparing to the old.""" # ensure we don't modify the metadata old = old.copy() new = new.copy() # remove version info old.pop('$version', None) new.pop('$version', None) for old_group_name in old: ...
python
def metadata_lint(old, new, locations): """Run the linter over the new metadata, comparing to the old.""" # ensure we don't modify the metadata old = old.copy() new = new.copy() # remove version info old.pop('$version', None) new.pop('$version', None) for old_group_name in old: ...
[ "def", "metadata_lint", "(", "old", ",", "new", ",", "locations", ")", ":", "# ensure we don't modify the metadata", "old", "=", "old", ".", "copy", "(", ")", "new", "=", "new", ".", "copy", "(", ")", "# remove version info", "old", ".", "pop", "(", "'$ver...
Run the linter over the new metadata, comparing to the old.
[ "Run", "the", "linter", "over", "the", "new", "metadata", "comparing", "to", "the", "old", "." ]
train
https://github.com/canonical-ols/acceptable/blob/6ccbe969078166a5315d857da38b59b43b29fadc/acceptable/lint.py#L72-L95
canonical-ols/acceptable
acceptable/lint.py
lint_api
def lint_api(api_name, old, new, locations): """Lint an acceptable api metadata.""" is_new_api = not old api_location = locations['api'] changelog = new.get('changelog', {}) changelog_location = api_location if locations['changelog']: changelog_location = list(locations['changelog'].val...
python
def lint_api(api_name, old, new, locations): """Lint an acceptable api metadata.""" is_new_api = not old api_location = locations['api'] changelog = new.get('changelog', {}) changelog_location = api_location if locations['changelog']: changelog_location = list(locations['changelog'].val...
[ "def", "lint_api", "(", "api_name", ",", "old", ",", "new", ",", "locations", ")", ":", "is_new_api", "=", "not", "old", "api_location", "=", "locations", "[", "'api'", "]", "changelog", "=", "new", ".", "get", "(", "'changelog'", ",", "{", "}", ")", ...
Lint an acceptable api metadata.
[ "Lint", "an", "acceptable", "api", "metadata", "." ]
train
https://github.com/canonical-ols/acceptable/blob/6ccbe969078166a5315d857da38b59b43b29fadc/acceptable/lint.py#L98-L182
canonical-ols/acceptable
acceptable/_service.py
APIMetadata.bind
def bind(self, flask_app, service, group=None): """Bind the service API urls to a flask app.""" if group not in self.services[service]: raise RuntimeError( 'API group {} does not exist in service {}'.format( group, service) ) for name, ...
python
def bind(self, flask_app, service, group=None): """Bind the service API urls to a flask app.""" if group not in self.services[service]: raise RuntimeError( 'API group {} does not exist in service {}'.format( group, service) ) for name, ...
[ "def", "bind", "(", "self", ",", "flask_app", ",", "service", ",", "group", "=", "None", ")", ":", "if", "group", "not", "in", "self", ".", "services", "[", "service", "]", ":", "raise", "RuntimeError", "(", "'API group {} does not exist in service {}'", "."...
Bind the service API urls to a flask app.
[ "Bind", "the", "service", "API", "urls", "to", "a", "flask", "app", "." ]
train
https://github.com/canonical-ols/acceptable/blob/6ccbe969078166a5315d857da38b59b43b29fadc/acceptable/_service.py#L87-L100
canonical-ols/acceptable
acceptable/_service.py
APIMetadata.serialize
def serialize(self): """Serialize into JSONable dict, and associated locations data.""" api_metadata = OrderedDict() # $ char makes this come first in sort ordering api_metadata['$version'] = self.current_version locations = {} for svc_name, group in self.groups(): ...
python
def serialize(self): """Serialize into JSONable dict, and associated locations data.""" api_metadata = OrderedDict() # $ char makes this come first in sort ordering api_metadata['$version'] = self.current_version locations = {} for svc_name, group in self.groups(): ...
[ "def", "serialize", "(", "self", ")", ":", "api_metadata", "=", "OrderedDict", "(", ")", "# $ char makes this come first in sort ordering", "api_metadata", "[", "'$version'", "]", "=", "self", ".", "current_version", "locations", "=", "{", "}", "for", "svc_name", ...
Serialize into JSONable dict, and associated locations data.
[ "Serialize", "into", "JSONable", "dict", "and", "associated", "locations", "data", "." ]
train
https://github.com/canonical-ols/acceptable/blob/6ccbe969078166a5315d857da38b59b43b29fadc/acceptable/_service.py#L118-L167
canonical-ols/acceptable
acceptable/_service.py
AcceptableService.api
def api(self, url, name, introduced_at=None, undocumented=False, deprecated_at=None, title=None, **options): """Add an API to the service. :param url: This is the url that the API should be registered at. :param...
python
def api(self, url, name, introduced_at=None, undocumented=False, deprecated_at=None, title=None, **options): """Add an API to the service. :param url: This is the url that the API should be registered at. :param...
[ "def", "api", "(", "self", ",", "url", ",", "name", ",", "introduced_at", "=", "None", ",", "undocumented", "=", "False", ",", "deprecated_at", "=", "None", ",", "title", "=", "None", ",", "*", "*", "options", ")", ":", "location", "=", "get_callsite_l...
Add an API to the service. :param url: This is the url that the API should be registered at. :param name: This is the name of the api, and will be registered with flask apps under. Other keyword arguments may be used, and they will be passed to the flask application when in...
[ "Add", "an", "API", "to", "the", "service", "." ]
train
https://github.com/canonical-ols/acceptable/blob/6ccbe969078166a5315d857da38b59b43b29fadc/acceptable/_service.py#L234-L266
canonical-ols/acceptable
acceptable/_service.py
AcceptableService.django_api
def django_api( self, name, introduced_at, undocumented=False, deprecated_at=None, title=None, **options): """Add a django API handler to the service. :param name: This is the name of the django url to use. The...
python
def django_api( self, name, introduced_at, undocumented=False, deprecated_at=None, title=None, **options): """Add a django API handler to the service. :param name: This is the name of the django url to use. The...
[ "def", "django_api", "(", "self", ",", "name", ",", "introduced_at", ",", "undocumented", "=", "False", ",", "deprecated_at", "=", "None", ",", "title", "=", "None", ",", "*", "*", "options", ")", ":", "from", "acceptable", ".", "djangoutil", "import", "...
Add a django API handler to the service. :param name: This is the name of the django url to use. The 'methods' paramater can be supplied as normal, you can also user the @api.handler decorator to link this API to its handler.
[ "Add", "a", "django", "API", "handler", "to", "the", "service", "." ]
train
https://github.com/canonical-ols/acceptable/blob/6ccbe969078166a5315d857da38b59b43b29fadc/acceptable/_service.py#L268-L297
canonical-ols/acceptable
acceptable/_service.py
AcceptableService.bind
def bind(self, flask_app): """Bind the service API urls to a flask app.""" self.metadata.bind(flask_app, self.name, self.group)
python
def bind(self, flask_app): """Bind the service API urls to a flask app.""" self.metadata.bind(flask_app, self.name, self.group)
[ "def", "bind", "(", "self", ",", "flask_app", ")", ":", "self", ".", "metadata", ".", "bind", "(", "flask_app", ",", "self", ".", "name", ",", "self", ".", "group", ")" ]
Bind the service API urls to a flask app.
[ "Bind", "the", "service", "API", "urls", "to", "a", "flask", "app", "." ]
train
https://github.com/canonical-ols/acceptable/blob/6ccbe969078166a5315d857da38b59b43b29fadc/acceptable/_service.py#L299-L301