You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python2-types-docutils-0.18.3-1.lbn36.noarch
Typing stubs for docutilsThis is a PEP 561 type stub package for the docutils package. It can be used by type-checking tools like mypy, PyCharm, pytype etc. to check code that uses docutils. The source for this package can be found at All fixes for types and metadata should be contributed there.See for more details. This package was generated from typeshed commit...
RPMPackage python2-trollius-2.2.1-1.lbn36.noarch
Trollius.. warning:: The Trollius project is deprecated and unsupported. It is on PyPI to support existing dependencies only. .. warning:: The Trollius project is now deprecated! 2.2.1 (2021-04-28) - Properly reraise socket.error with an errno of EBADF as an OSError.2.2.post1 (2019-07-29) This is a packaging-only release. It is intended to be the last - Release Windows wheels for CPython 2.7....
RPMPackage python2-transmogrify.print-0.6.0-1.lbn36.noarch
Introduction .. Note:: As of version 1.3 Transmogrifier provides a similar feature, via a blueprint called: collective.transmogrifier.sections.logger.This Transmogrifier_ blueprint is based on collective.transmogrifier.sections.tests.PrettyPrinter, which anyone can use in their project by creating a utility like so:: <utility component"collective.transmogrifier.sections.tests.PrettyPrinter"...
RPMPackage python2-transmogrify-webcrawler-1.2.1-1.lbn36.noarch
Crawling - html to import transmogrify.webcrawler will crawl html to extract pages and files as a source for your transmogrifier pipeline. transmogrify.webcrawler.typerecognitor aids in setting '_type' based on the crawled mimetype. transmogrify.webcrawler.cache helps speed up crawling and reduce memory usage by storing items locally.These blueprints are designed to work with the funnelweb...
RPMPackage python2-transmogrify-siteanalyser-1.3-1.lbn36.noarch
.. contents :: :local: Introduction Transmogrifier blueprints that look at how html items are linked to gather metadata about items. They can help you restructure your content.transmogrify.siteanalyser.sitemapper Take navigation html such as a whole sitemap, breadcrumbs or navigation menus using nested links and buildup a site structure and titles for pages. This can then be used to cleanup...
RPMPackage python2-transmogrify-ploneremote-1.3-1.lbn36.noarch
.. contents :: :local:Introduction --*transmogrifier.ploneremote* is package of transmogrifier blueprints for uploading content via Zope XML-RPC API to a Plone site.Plone site does not need any modifications, but vanilla Zope XML-RPC is used.Usage Five different blueprints are provided.Common Options target Url of Plone folder to upload content. You will need to include the username and...
RPMPackage python2-transmogrify-htmlcontentextractor-1.0-1.lbn36.noarch
Introduction Helpful transmogrifier blueprints to extract text or html out of html content. transmogrify.htmlcontentextractor.auto This blueprint has a clustering algorithm that tries to automatically extract the content from the HTML template. This is slow and not always effective. Often you will need to input your own template extraction rules. In addition to extracting Title, Description...
RPMPackage python2-transmogrify-dexterity-2.0.0-1.lbn36.noarch
Introduction The transmogrify.dexterity package provides a transmogrifier pipeline section for updating field values of dexterity content objects. The blueprint name is transmogrify.dexterity.schemaupdater.The schemaupdater section needs at least the path to the object to update. Paths to objects are always interpreted as being relative to the context. Any writable field who's id matches a key...
RPMPackage python2-transaction-3.0.1-2.lbn36.noarch
Transactions :alt: Python versions
RPMPackage python2-transaction-3.0.1-2.lbn36.noarch
Transactions :alt: Python versions
RPMPackage python2-toml-0.10.2-1.lbn36.noarch
TOML A Python library for parsing and creating TOML < module passes the TOML test suite < also:* The TOML Standard < * The currently supported TOML specification <
RPMPackage python2-thefuck-3.32-1.lbn36.noarch
.. _the-fuck-versionversion-badgeversion-link-build-statusworkflow- badgeworkflow-link-coveragecoverage-badgecoverage-link-mit-licenselicense- badge: The Fuck |Version| |Build Status| |Coverage| |MIT License| ========================================================== *The Fuck* is a magnificent app, inspired by a [@liamosaur](https://twitter.com/liamosaur/) `tweet...
RPMPackage python2-testfixtures-6.18.5-1.lbn36.noarch
Testfixtures |CircleCI|_ |Docs|_.. |CircleC.. _CircleCI: |Doc.. _Docs: is a collection of helpers and mock objects that are useful when writing automated tests in Python.The areas of testing this package can help with are listed below:**Comparing objects and sequences**Better feedback when the results aren't as you expected along with
RPMPackage python2-termstyle-0.1.11-1.lbn36.noarch
**Note**: This package has been built automatically by zero2pypi < If possible, you should use the zero-install feed instead: termstyle termstyle is a simple python library for adding coloured output to terminal (console) programs. The definitions come from ECMA-048_, the "Control Functions for Coded Character Sets" standard.Installation: -I thoroughly recommend using the zero-install feed...
RPMPackage python2-tempstorage-5.2-1.lbn36.noarch
A storage implementation which uses RAM to persist objects, much like MappingStorage. Unlike MappingStorage, it needs not be packed to get rid of non- cyclic garbage and it does rudimentary conflict resolution. This is a ripoff of Jim's Packless bsddb3 storage.Changelog 5.2 (2021-07-05) -- Update package configuration- Package is now officially undeprecated because the data corruption issue -...
RPMPackage python2-tarjan-0.2.3.2-1.lbn36.noarch
Python implementation of Tarjan's algorithm Tarjan's algorithm takes as input a directed (possibly cyclic!) graph and returns as output its strongly connected components in a topological order.Example.. code:: >>> tarjan({1:[2],2:[1,5],3:[4],4:[3,5],5:[6],6:[7],7:[8],8:[6,9],9:[]}) [[9], [8, 7, 6], [5], [2, 1], [4, 3]]Uses Cyclic dependencies In various cases, dependencies might be cyclic and...
RPMPackage python2-sybil-2.0.1-1.lbn36.noarch
|CircleCI|_ |Docs|_.. |CircleC.. _CircleCI: |Doc.. _Docs: This library provides a way to test examples in your documentation by parsing them from the documentation source and evaluating the parsed examples as part of your normal test run. Integration is provided for the main Python test
RPMPackage python2-stdlib-list-0.6.0-1.lbn36.noarch
Python Standard Library List This package includes lists of all of the standard libraries for Python 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, and 3.8 along with the code for scraping the official Python docs to get said lists.Listing the modules in the standard library? Wait, why on Earth would you care about that?! -Because knowing whether or not a module is part of the standard library will...
RPMPackage python2-sphinxcontrib-websupport-1.1.2-1.lbn36.noarch
sphinxcontrib-websupport provides a Python API to easily integrate Sphinx documentation into your Web application.
RPMPackage python2-sphinxcontrib-robotframework-0.8.1-1.lbn36.noarch
Robot Framework extension for Sphinx **sphinxcontrib-robotframework** is a Sphinx_-extension, which executes embedded Robot Framework_ tests during sphinx- build.**sphinxcontrib-robotframework** can be used in doctest_ way to validate examples shown in documentation or with Selenium_ and its Robot Framework integration, Selenium2Library_, to generate scripted screenshots during the...