You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python2-jsonlib-1.6.1-1.lbn36.x86_64
:Author: John Millikin :Copyright: This document has been placed in the public domain.Overview JSON < is a lightweight data-interchange format. It is often used for exchanging data between a web server and user agent.This module aims to produce a library for serializing and deserializing JSON that conforms strictly to RFC 4627... contents::Usage jsonlib has two functions of interest, read and...
RPMPackage python2-jose-1.0.0-1.lbn36.noarch
JOSE is a framework intended to provide a method to securely transfer claims (such as authorization information) between parties. The JOSE framework provides a collection of specifications to serve this purpose. A JSON Web Token (JWT) contains claims that can be used to allow a system to apply access control to resources it owns.JWTs can be represented as either JSON Web Signature (JWS) or a...
RPMPackage python2-jinxed-1.2.0-1.lbn36.noarch
.. start-badges| |docs| |appveyor| |travis| |codecov| | |pypi| |supported- versions| |supported-implementations| | |linux| |windows| |mac| |bsd|.. |doc .. |appveyo .. |travis| image::
RPMPackage python2-jinja2-2.11.3-1.lbn36.noarch
Jinja is a fast, expressive, extensible templating engine. Special placeholders in the template allow writing code similar to Python syntax. Then the template is passed data to render the final document.It includes:- Template inheritance and inclusion. - Define and import macros within templates. - HTML templates can use autoescaping to prevent XSS from untrusted user input. - A sandboxed...
RPMPackage python2-j01-select2-4.0.3-1.lbn36.noarch
This package provides a JQuery and z3c.form base multi select2 widget for Zope3.CHANGES 4.0.3 (2020-07-31) - bugfix: added missing displayValue used in widget display mode 4.0.2 (2020-06-13) - bugfix: added missing displayValue used in widget display mode- bugfix: fix missing term title if a Choice field with values get used. 4.0.1 (2020-04-21) - bugfix: replaced unicode character "..." from...
RPMPackage python2-j01-select-0.5.1-1.lbn36.noarch
This package provides a JQuery and z3c.form base multi select widget for Zope3.CHANGES 0.5.1 (2013-01-02) - bugfix: fix linux chameleon template issues with line break in tag elements. 0.5.0 (2012-11-17) - initial release
RPMPackage python2-j01-rater-0.6.0-1.lbn36.noarch
This package provides a simple clickable star rating system implemented as a z3c.form widget for Zope3Changes 0.6.0 (2018-04-30) - feature: make "Rate me" lable translatable added ratingLabel attr for simpler customization. Cleanup and prepare for includ in j10.form widget library. 0.5.1 (2013-06-28) - bugfix: fix apply cancel click event handler 0.5.0 (2012-11-17) - initial release
RPMPackage python2-isort-4.3.21-1.lbn36.noarch
.. image::
RPMPackage python2-ipywidgets-7.4.2-1.lbn36.noarch
Interactive HTML Widgets Interactive HTML widgets for Jupyter notebooks and the IPython kernel.Usage .. code-block:: python from ipywidgets import IntSlider IntSlider()
RPMPackage python2-ipaddress-1.0.23-2.lbn36.noarch
Port of the 3.3+ ipaddress module to 2.6, 2.7, 3.2
RPMPackage python2-ipaddress-1.0.23-2.lbn36.noarch
Port of the 3.3+ ipaddress module to 2.6, 2.7, 3.2
RPMPackage python2-iocapture-0.1.2-1.lbn36.noarch
.. -*- restructuredtext -*-.. highlight:: python Capture stdout, stderr easily with iocapture.How to use With Python > 2.5 :: import iocapture with iocapture.capture() as captured: print("hello stdout") print(captured.stdout) >>> hello stdoutWith Python < 2.5 :: import iocapture captured iocapture.capture() captured.start() print("hello stdout") captured.close() print(captured.stdout) >>>...
RPMPackage python2-interlude-1.3.1-1.lbn36.noarch
Interlude - Interactive Doctests Provides an interactive shell aka console inside your doctest case.The console looks exact like in a doctest-case and you can copy and paste code from the shell into your doctest. It feels as you are in the test case itself. Its not pdb, it's a python shell.In your doctest you can invoke the shell at any point by calling:: >>> interact(locals()) To make your...
RPMPackage python2-incremental-17.5.0-1.lbn36.noarch
Incremental |travis||coverage|Incremental is a small library that versions your Python projects.API documentation can be found here < Quick Start --Add this to your setup.py\ 's setup() call, removing any other versioning arguments:.. code:: setup( use_incrementalTrue, setup_requires['incremental'], install_requires['incremental'], along with any other install dependencies ...Then run python...
RPMPackage python2-imsvdex-1.2-1.lbn36.noarch
IMSVDEX API to access and modify XML files in the IMS Vocabulary Definition Exchange The IMS Vocabulary Definition Exchange (VDEX) specification defines a grammar for the exchange of value lists of various classes: collections often denoted "vocabulary". Specifically, VDEX defines a grammar for the exchange of simple machine-readable lists of values, or terms, together with information that...
RPMPackage python2-imio-prettylink-1.20-1.lbn36.noarch
imio.prettylink Manage generation of a pretty link to an element including coloration, leading icons, ...Changelog 1.20 (2022-06-14) Escape link content to avoid malicious behaviour. [gbastien]1.19 (2022-01-12) Used now imio.helpers.cache.obj_modified in getLink_cachekey to include
RPMPackage python2-imio-history-1.27-1.lbn36.noarch
imio.history Manage object history using a table and highlight history link when necessaryThe goal is to be able to manage several histories for various needs on a content and display it together, merged in the same view.
RPMPackage python2-imio-helpers-0.61-1.lbn36.noarch
imio.helpers Various helper methods for development. Requirements The barcode generation method uses zint tool (
RPMPackage python2-imio-actionspanel-1.60-1.lbn36.noarch
imio.actionspanel This package provides a view and a sample viewlet that will display a table of different actions available on an element.By default, so called sections available are :- transitions- own delete action management - actions - addable types - object historyTransitions : - This will display different available workflow transitions and is managed by the section...
RPMPackage python2-imagesize-1.3.0-1.lbn36.noarch
It parses image files' header and return image size.* PNG* JPEG2000* TIFF* NetpbmThis is a pure Python library.