You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python2-pytest-fixture-config-1.2.11-5.lbn25.py37.noarch
Simple configuration objects for Py.test fixtures. Allows you to skip tests when their required config variables aren't set.
RPMPackage python2-pytest-faulthandler-1.5.0-3.lbn25.noarch
Plugin for pytest that automatically enables the faulthandler module during tests. Inspired by the nose faulthandler plugin.
RPMPackage python2-pytest-error-for-skips-1.0.0-1.lbn25.py37.noarch
pytest-error-for-skips :target:
RPMPackage python2-pytest-env-0.6.2-1.lbn25.py37.noarch
py.test plugin that allows you to add environment variables.
RPMPackage python2-pytest-cov-2.9.0-1.lbn25.noarch
Py.test plugin for coverage reporting with support for both centralised and distributed testing, including subprocesses and multiprocessing for Python 2.
RPMPackage python2-pytest-catchlog-1.2.2-10.lbn25.py37.noarch
py.test plugin to catch log messages. This is a fork of pytest-capturelog. Python 2 version.
RPMPackage python2-pytest-capturelog-0.7-13.lbn25.py37.noarch
py.test plugin to capture log messages. Python 2 version.
RPMPackage python2-pytest-cache-1.0-15.lbn25.py37.noarch
Pytest plugin with mechanisms for caching across test runs for Python 3.
RPMPackage python2-pytest-beakerlib-0.7.1-6.lbn25.py37.noarch
Allows results of running a test suite under pytest to be reported to an active BeakerLib session.
RPMPackage python2-pytest-4.6.7-1.lbn25.noarch
py.test provides simple, yet powerful testing for Python.
RPMPackage python2-pyphen-0.9.1-18.lbn25.noarch
Pyphen is a pure Python module to hyphenate text using existing hyphenation dictionaries, e.g., from Libreoffice language packs.
RPMPackage python2-pdfrw-0.4-1.lbn25.py37.noarch
pdfrw 0.4 :Author: Patrick Maupin.. contents:: :backlinks: none.. sectnum::Introduction **pdfrw** is a Python library and utility that reads and writes PDF files:* Version 0.4 is tested and works on Python 2.6, 2.7, 3.3, 3.4, 3.5, and 3.6 * Operations include subsetting, merging, rotating, modifying metadata, etc. * The fastest pure Python PDF parser available * Has been used for years by a...
RPMPackage python2-openpyxl-2.4.7-2.lbn25.py37.noarch
openpyxl is a Python library to read/write Excel 2010 xlsx/xlsm/xltx/xltm files. It was born from lack of existing library to read/write natively from Python the Office Open XML format.
RPMPackage python2-magnitude-0.9.4-1.lbn25.py37.noarch
Copyright (C) 2006-2015 Juan Reyero ().Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express ...
RPMPackage python2-cssselect2-0.2.2-1.lbn25.noarch
cssselect2: CSS selectors for Python ElementTree cssselect2 is a straightforward implementation of CSS3 Selectors_ for markup documents (HTML, XML, etc.) that can be read by ElementTree_-like parsers (including cElementTree, lxml_, html5lib_, etc.)Unlike cssselect_, it does not translate selectors to XPath_ and therefore does not have all the correctness corner cases that are hard or...
RPMPackage python2-cairocffi-0.9.0-4.lbn25.noarch
cairocffi is a CFFI-based drop-in replacement for Pycairo, a set of Python bindings and object-oriented API for cairo. Cairo is a 2D vector graphics library with support for multiple backends including image buffers, PNG, PostScript, PDF, and SVG file output.
RPMPackage python2-WeasyPrint-0.42.3-1.lbn25.noarch
WeasyPrint **The Awesome Document Factory**WeasyPrint is a smart solution helping web developers to create PDF documents. It turns simple HTML pages into gorgeous statistical reports, invoices, tickets…From a technical point of view, WeasyPrint is a visual rendering engine for HTML and CSS that can export to PDF and PNG. It aims to support web standards for printing. WeasyPrint is free...
RPMPackage python-cairosvg-1.0.20-5.lbn25.py37.noarch
CairoSVG is a SVG converter based on Cairo. It can export SVG files to PDF, PostScript and PNG files. For further information, please visit the CairoSVG Website http://www.cairosvg.org
RPMPackage python2-gpw-0.2-1.lbn25.py37.noarch
gpw - gnuplot wrapper module for interfacing Python with gnuplot. by Wicher Minnaard <wicher@gavagai.eu> <>This is public domain software.Difference with gnuplot-py: This module does not need numpy. Also, this module doesn't offer tight integration with gnuplot.The main problem this module solves is that gnuplot needs a) data, b) instructions, and generates c) graph output. a) comes from ...
RPMPackage jarn.jsi18n-1.1-1.lbn25.noarch
While internationalization in Zope/Plone is very mature there is no generally accepted way of doing i18n in JavaScript. Typically packages that contain Javascript code expose i18n by having hard-coded dictionaries or templates that dynamically create these dictionaries. While this is fine for small i18n catalogs, it easily gets tedious and is hard to update. This package provides the essentials for leveraging the i18n infrastructure in Plone inside your JavaScript code: Allows you to load arbitrary gettext catalogs from Plone. Provides you with Message Factories very similar to the ones used in your python code. Makes use of the local storage available in modern browsers to avoid reloading message catalogs. Usage Your package should depend on jarn.jsi18n and include it in its meta-data dependencies. In order to instantiate a MessageFactory and use it you will need to load the i18n catalog. Typically, this will be done in a way similar to: $(document).ready(function () { jarn.i18n.loadCatalog('plone', 'el'); _ = jarn.i18n.MessageFactory('plone') }); The second parameter in loadCatalog specifying the language is optional, when omitted the lang attribute in the html tag is used. Now that we have a message factory we can use it to get translated strings: > _('Contributor'); Συντελεστής or with keyword parameters: > _('Groups are: ${names}', {names: 'Jarnians'}) "Οι ομάδες είναι: Jarnians " You can if you wish load multiple catalogs (or languages for the same catalog) and instantiate their respective factories, for instance: > jarn.i18n.loadCatalog('plone', 'es'); > _es = jarn.i18n.MessageFactory('plone', 'es'); > _es('Contributor'); "Contribuyente" Caching If the client browser supports local storage it will be used to store the catalogs that you load. This makes it possible to avoid making an ajax request every time in order to load the full catalog. The stored catalog is by default valid for 24 hours. You can set the time-to-live by calling jarn.i18n.setTTL(millis) passing in milliseconds for how long the local storage cache should remain valid. Note that if local storage is supported, and the cache has not expired, the browser will NOT reload a catalog even if it changes in the filesystem.