You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python2-markdown-3.3.4-1.lbn25.noarch
This is a Python implementation of John Gruber’s Markdown. It is almost completely compliant with the reference implementation, though there are a few very minor differences.
RPMPackage python2-mako-1.1.4-1.lbn25.noarch
Mako is a template library written in Python. It provides a familiar, non-XML syntax which compiles into Python modules for maximum performance. Mako's syntax and API borrows from the best ideas of many others, including Django templates, Cheetah, Myghty, and Genshi. Conceptually, Mako is an embedded Python (i.e. Python Server Page) language, which refines the familiar ideas of componentized layout and inheritance to produce one of the most straightforward and flexible models available, while also maintaining close ties to Python calling and scoping semantics.
RPMPackage python2-lockfile-0.12.2-1.lbn25.noarch
The lockfile module exports a FileLock class which provides a simple API for locking files. Unlike the Windows msvcrt.locking function, the Unix fcntl.flock, fcntl.lockf and the deprecated posixfile module, the API is identical across both Unix (including Linux and Mac) and Windows platforms. The lock mechanism relies on the atomic nature of the link (on Unix) and mkdir (on Windows) system calls.
RPMPackage python2-linecache2-1.0.0-17.lbn25.py37.noarch
A backport of linecache to older supported Pythons.
RPMPackage python2-ldap-3.1.0-3.lbn25.py37.x86_64
python-ldap provides an object-oriented API for working with LDAP within Python programs. It allows access to LDAP directory servers by wrapping the OpenLDAP 2.x libraries, and contains modules for other LDAP-related tasks (including processing LDIF, LDAPURLs, LDAPv3 schema, etc.).
RPMPackage python2-jsonschema-3.2.0-1.lbn25.noarch
jsonschema is JSON Schema validator currently based on http://tools.ietf.org/html/draft-zyp-json-schema-03
RPMPackage python2-jsonpointer-1.10-8.lbn25.py37.noarch
Library to resolve JSON Pointers according to RFC 6901.
RPMPackage python2-jsonpickle-0.9.4-3.lbn25.py37.noarch
This module allows python objects to be serialized to JSON in a similar fashion to the pickle module. This is the version for Python 3.
RPMPackage python2-isodate-0.6.0-1.lbn25.noarch
This module implements ISO 8601 date, time and duration parsing. The implementation follows ISO8601:2004 standard, and implements only date/time representations mentioned in the standard. If something is not mentioned there, then it is treated as non existent, and not as an allowed option. For instance, ISO8601:2004 never mentions 2 digit years. So, it is not intended by this module to support 2 digit years. (while it may still be valid as ISO date, because it is not explicitly forbidden.) Another example is, when no time zone information is given for a time, then it should be interpreted as local time, and not UTC. As this module maps ISO 8601 dates/times to standard Python data types, like date, time, datetime and timedelta, it is not possible to convert all possible ISO 8601 dates/times. For instance, dates before 0001-01-01 are not allowed by the Python date and datetime classes. Additionally fractional seconds are limited to microseconds. That means if the parser finds for instance nanoseconds it will round it to microseconds.
RPMPackage python2-iso8601-0.1.12-3.lbn25.noarch
This module parses the most common forms of ISO 8601 date strings (e.g. 2007-01-14T20:34:22+00:00) into datetime objects.
RPMPackage python2-iniparse-0.4-20.lbn25.py37.noarch
iniparse is an INI parser for Python 2 which is API compatible with the standard library's configparser, preserves structure of INI files (order of sections & options, indentation, comments, and blank lines are preserved when data is updated), and is more convenient to use.
RPMPackage python2-incremental-17.5.0-3.lbn25.py37.noarch
Incremental is a small library that versions your Python projects.
RPMPackage python2-imagesize-1.1.0-1.lbn25.noarch
The imagesize package parses image file headers and returns the image sizes. * PNG * JPEG * JPEG2000 * GIF This is a pure Python library.
RPMPackage python2-humanize-0.5.1-13.lbn25.noarch
This modest package contains various common humanization utilities, like turning a number into a fuzzy human readable duration ('3 minutes ago') or into a human readable size or throughput.
RPMPackage python2-httpretty-0.9.5-4.lbn25.noarch
Once upon a time a python developer wanted to use a RESTful API, everything was fine but until the day he needed to test the code that hits the RESTful API: what if the API server is down? What if its content has changed? Don't worry, HTTPretty is here for you.
RPMPackage python2-futures-3.3.0-1.lbn25.noarch
The concurrent.futures module provides a high-level interface for asynchronously executing callables.
RPMPackage python2-funcsigs-1.0.2-11.lbn25.py37.noarch
funcsigs is a backport of the PEP 362 function signature features from Python 3.3's inspect module. The backport is compatible with Python 2.6, 2.7 as well as 3.2 and up.
RPMPackage python2-freezegun-0.3.12-1.lbn25.noarch
freezegun is a library that allows your python tests to travel through time by mocking the datetime module. This is the Python 2 library.
RPMPackage python2-forbiddenfruit-0.1.2-1.lbn25.x86_64
This project aims to help you reach heaven while writing tests, but it may lead you to hell if used on production code. It basically allows you to patch built-in objects, declared in C through python. Just like this: `python >>> from forbiddenfruit import curse >>> def words_of_wisdom(self): ... return self * "blah " >>> curse(int, "words_of_wisdom", words_of_wisdom) >>> assert (2).words_of_wisdom() == "blah blah " ` Boom! That’s it, your int class now has the words_of_wisdom method. Do you want to add a classmethod to a built-in class? No problem, just do this: `python >>> from forbiddenfruit import curse >>> def hello(self): ... return "blah" >>> curse(str, "hello", classmethod(hello)) >>> assert str.hello() == "blah" `
RPMPackage python2-entrypoints-0.2.3-9.lbn25.py37.noarch
Entry points are a way for Python packages to advertise objects with some common interface. The most common examples are console_scripts entry points, which define shell commands by identifying a Python function to run. The entrypoints module contains functions to find and load entry points.