You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python2-plone-alterego-1.1.5-1.lbn36.noarch
plone.alterego Now you see it, it now you don't!This package defines a dynamic module type that lets you create objects in the dynamic module on demand.Usage To use this package, you should: - Identify an appropriate parent module where the dynamic module will live. - Ensure that plone.alterego.dynamic.create() is called with this module and a dynamic module name. Typically, you'd do this in...
RPMPackage python2-plone-5.2.9-2.lbn36.noarch
About Plone Plone is a mature, secure and user-friendly Content Management System (CMS).Plone - and the Open Source community behind it - aggregates more than 15 years experience in content management. It offers all major features expected by a modern CMS out-of-the-box.Lots of customizations can be made trough-the-web, such as creating content types, themes, workflows and much more. Pushed...
RPMPackage python2-plone-5.2.9-2.lbn36.noarch
About Plone Plone is a mature, secure and user-friendly Content Management System (CMS).Plone - and the Open Source community behind it - aggregates more than 15 years experience in content management. It offers all major features expected by a modern CMS out-of-the-box.Lots of customizations can be made trough-the-web, such as creating content types, themes, workflows and much more. Pushed...
RPMPackage python2-plone-5.2.9-2.lbn36.noarch
About Plone Plone is a mature, secure and user-friendly Content Management System (CMS).Plone - and the Open Source community behind it - aggregates more than 15 years experience in content management. It offers all major features expected by a modern CMS out-of-the-box.Lots of customizations can be made trough-the-web, such as creating content types, themes, workflows and much more. Pushed...
RPMPackage python2-platformdirs-2.0.2-1.lbn36.noarch
the problem What directory should your app use for storing user data? If running on macOS, you should use:: /Library/Application Support/<AppName>If on Windows (at least English Win XP) that should be:: C:\Documents and Settings\<User>\Application Data\Local Settings\<AppAuthor>\<AppName>or possibly:: C:\Documents and Settings\<User>\Application Data\<AppAuthor>\<AppName>for roaming profiles <...
RPMPackage python2-pkginfo-1.8.3-1.lbn36.noarch
pkginfo README This package provides an API for querying the distutils metadata written in the PKG-INFO file inside a source distriubtion (an sdist) or a binary distribution (e.g., created by running bdist_egg). It can also query the EGG- INFO directory of an installed distribution, and the *.egg-info stored in a "development checkout" (e.g, created by running setup.py develop). Please see the...
RPMPackage python2-pkginfo-1.8.3-1.lbn36.noarch
pkginfo README This package provides an API for querying the distutils metadata written in the PKG-INFO file inside a source distriubtion (an sdist) or a binary distribution (e.g., created by running bdist_egg). It can also query the EGG- INFO directory of an installed distribution, and the *.egg-info stored in a "development checkout" (e.g, created by running setup.py develop). Please see the...
RPMPackage python2-pinpayments-0.1.1-1.lbn36.noarch
PinPayments Python PinPayments-Python is a Python interface to the [Pin Payments]( Installation: pip install pinpayments Quickstart:>>> from pinpayments import PinPayments >>> api_secret <api_secret> >>> pin PinPayments(api_secret api_secret, test False) >>> customers pin.getCustomers()
RPMPackage python2-piexif-1.1.3-1.lbn36.noarch
|Build Status| |Windows Build| |Coverage Status| |docs| To simplify exif manipulations with Python. Writing, reading, and more... Piexif is pure Python. To everywhere with Python. Document: demo: 'easy_install':: $ easy_install piexifor 'pip':: $ pip install piexifor download .zip, extract it. Put 'piexif' directory into your environment.Why Choose Piexif Pure Python. So, it runs everywhere...
RPMPackage python2-persistence-3.3-1.lbn36.x86_64
This package provides a variant of the persistent base class that's an ExtensionClass_. Unless you need ExtensionClass_ semantics, you probably want to use persistent.Persistent from the persistent_ distribution (formerly in ZODB3)... _ExtensionClass : .. _persistent : Changelog 3.3 (2022-03-10) -- Add support for Python 3.11 as of (3.11.0a5). 3.2 (2022-03-02) -- Add support for Python 3.10....
RPMPackage python2-pep517-0.9.1-1.lbn36.noarch
API to call PEP 517 hooks ========================= `PEP 517 <https://www.python.org/dev/peps/pep-0517/>`_ specifies a standard API for systems which build Python packages. This package contains wrappers around the hooks specified by PEP 517. It provides: - A mechanism to call the hooks in a subprocess, so they are isolated from the current process. - Fallbacks for the optional hooks, so...
RPMPackage python2-pep440-0.1.0-1.lbn36.noarch
PEP 440 ======= A simple package with utils to check whether versions number match `Pep 440 <https://www.python.org/dev/peps/pep-0440/>`__ Example: :: >>> from pep440 import is_canonical >>> is_canonical('4.1.0') True >>> is_canonical('4.2.1.beta2') # 4.2.1b2 is correct False For a bigger dependencies with more utilities see `PyPA Packaging (version submodule)...
RPMPackage python2-pathlib-1.0.1-9.lbn36.noarch
pathlib offers a set of classes to handle filesystem paths. It offers the following advantages over using string objects: * No more cumbersome use of os and os.path functions. Everything can be done easily through operators, attribute accesses, and method calls. * Embodies the semantics of different path types. For example, comparing Windows paths ignores casing. * Well-defined semantics, eliminating any warts or ambiguities (forward vs. backward slashes, etc.). It's part of Python 3.4+ standard library.
RPMPackage python2-paste-deploy-2.1.1-1.lbn36.noarch
This tool provides code to load WSGI applications and servers from URIs. These URIs can refer to Python eggs for INI-style configuration files. Paste Script < provides commands to serve applications based on this configuration file.The latest version is available on GitHub < (or download a wheel or tarball from PyPI < the latest changes see the news file <
RPMPackage python2-paste-3.5.0-1.lbn36.noarch
*Paste is in maintenance mode and recently moved from bitbucket to github. Patches are accepted to keep it on life support, but for the most part, please consider using other options.*Paste provides several pieces of "middleware" (or filters) that can be nested to build web applications. Each piece of middleware uses the WSGI (PEP 333_) interface, and should be compatible with other middleware...
RPMPackage python2-parameterized-0.7-1.lbn36.noarch
Parameterized testing with any Python test framework Parameterized testing in Python sucks.parameterized fixes that. For everything. Parameterized testing for nose, parameterized testing for py.test, parameterized testing for unittest... code:: python test_math.py from nose.tools import assert_equal from parameterized import parameterized, parameterized_class import unittest import math...
RPMPackage python2-p01-checker-0.5.9-1.lbn36.noarch
This package provides a source checking/linting tool.CHANGES 0.5.9 (2021-01-21) -- added python2 support 0.5.8 (2018-11-24) - bugfix: css lint checker and JAVA_HOME dependency. We use java as fallback command if JAVA_HOME path is not set. This will prevent a KeyError on JAVA_HOME lookup from os.environ. JAVA_HOME or the java command must be available for css lint checker. 0.5.7 (2018-11-09) -...
RPMPackage python2-ordereddict-1.1-1.lbn36.noarch
Drop-in substitute for Py2.7's new collections.OrderedDict. The recipe has big- oh performance that matches regular dictionaries (amortized O(1) insertion/deletion/lookup and O(n) iteration/repr/copy/equality_testing). Originally based on http://code.activestate.com/recipes/576693/
RPMPackage python2-openid-2.2.5-1.lbn36.noarch
This is a set of Python packages to support use of the OpenID decentralized identity system in your application. Want to enable single sign-on for your web site? Use the openid.consumer package. Want to run your own OpenID server? Check out openid.server. Includes example code and support for a variety of storage back-ends.
RPMPackage python2-olefile-0.46-1.lbn36.noarch
|Build Status TravisCI| |Build Status AppVeyor| |Coverage Status| |Documentation Status| |PyPI| |Can I Use Python 3?| |Say Thanks!|olefile < is a Python package to parse, read and write Microsoft OLE2 files < (also called Structured Storage, Compound File Binary Format or Compound Document File Format), such as Microsoft Office 97-2003 documents, vbaProject.bin in MS Office 2007+ files, Image...