You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python-robotframework-imaplibrary-0.3.0-1.lbn25.noarch
Setup in the robotframework Settings section: Setting Value Library ImapLibrary These keyword actions are available: Open Mailbox: Open the mailbox on a mail server with a valid authentication: Arguments: - server: the server name (e.g. imap.googlemail.com) - user: the user name (e.g. me@googlemail.com) - password: the user's password Wait for Mail: Wait for an incoming mail. Check the mailbox every 10 seconds for incoming mails until a matching email is received or the timeout is exceeded. Returns the mail number of the latest matching email. Arguments: - fromEmail: the email address of the sender (not required) - toEmail: the email address of the receiver (not required) - timeout: the timeout how long the mailbox shall check emails in seconds (defaults to 60 seconds) Get Links From Email: Finds all links in an email body and returns them Arguments: - mailNumber: is the index number of the mail to open Open Link from Mail: Find a link in an email body and open the link. Returns the links' html. Arguments: mailNumber: the number of the email to check for a link linkNumber: the index of the link to open (defaults to 0, which is the first link) Get Email body: Returns an email body Arguments: mailNumber: the number of the email to check for a link Mark as read: Mark all received mails as read Close Mailbox: Close the mailbox after finishing all mail activities of a user.
RPMPackage python-robotframework-difflibrary-0.1.0-3.lbn25.noarch
Robot Framework keyword library that will provide keyword functionality to diff two fules together .
RPMPackage python-robotframework-databaselibrary-0.8.1-1.lbn25.noarch
Database utility library for Robot Framework
RPMPackage python-robotframework-3.0.2-1.lbn25.noarch
Robot Framework is a generic test automation framework for acceptance testing and acceptance test-driven development (ATDD). It has easy-to-use tabular test data syntax and utilizes the keyword-driven testing approach. Its testing capabilities can be extended by test libraries implemented either with Python or Java, and users can create new keywords from existing ones using the same syntax that is used for creating test cases.
RPMPackage python-rdflib-4.1.2-7.fc25.noarch
RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information. The library contains parsers and serializers for RDF/XML, N3, NTriples, Turtle, TriX, RDFa and Microdata. The library presents a Graph interface which can be backed by any one of a number of Store implementations. The core rdflib includes store implementations for in memory storage, persistent storage on top of the Berkeley DB, and a wrapper for remote SPARQL endpoints. A SPARQL 1.1 engine is also included.
RPMPackage python-qrcode-5.1-4.lbn25.py37.noarch
This module uses the Python Imaging Library (PIL) to allow for the generation of QR Codes.
RPMPackage python-psycopg2-doc-2.8.4-1.lbn25.x86_64
Documentation and example files for the psycopg python PostgreSQL database adapter.
RPMPackage python-psycopg2-doc-2.8.4-1.lbn25.x86_64
Documentation and example files for the psycopg python PostgreSQL database adapter.
RPMPackage python-profilehooks-1.8.0-3.fc25.noarch
Profilehooks is a collection of decorators for profiling functions.
RPMPackage python-mechanize-0.2.5-11.fc25.noarch
Stateful programmatic web browsing, after Andy Lester's Perl module WWW::Mechanize. The library is layered: mechanize.Browser (stateful web browser), mechanize.UserAgent (configurable URL opener), plus urllib2 handlers. Features include: ftp:, http: and file: URL schemes, browser history, high-level hyperlink and HTML form support, HTTP cookies, HTTP-EQUIV and Refresh, Referer [sic] header, robots.txt, redirections, proxies, and Basic and Digest HTTP authentication. mechanize's response objects are (lazily-) .seek()able and still work after .close(). Much of the code originally derived from Perl code by Gisle Aas (libwww-perl), Johnny Lee (MSIE Cookie support) and last but not least Andy Lester (WWW::Mechanize). urllib2 was written by Jeremy Hylton.
RPMPackage python-matplotlib-data-fonts-2.2.3-3.lbn25.noarch
Fonts used by python-matplotlib
RPMPackage python-matplotlib-data-2.2.3-3.lbn25.noarch
Data used by python-matplotlib
RPMPackage python-martian-0.14-6.fc25.noarch
A library that allows the embedding of configuration information in Python code. Martian can then grok the system and do the appropriate configuration registrations. One example of a system that uses Martian is the system where it originated: Grok
RPMPackage python-ldap-2.4.25-4.lbn25.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 python-icalendar-4.0.4-1.lbn25.noarch
iCalendar specification (RFC 2445) defines calendaring format used by many applications (Zimbra, Thunderbird and others). This module is a parser/generator of iCalendar files for use with Python. It follows the RFC 2445 (iCalendar) specification. The aim is to make a package that is fully compliant with RFC 2445, well designed, simple to use and well documented.
RPMPackage python-html5lib-0.999-9.fc25.noarch
A python based HTML parser/tokenizer based on the WHATWG HTML5 specification for maximum compatibility with major desktop web browsers.
RPMPackage python-gettext-3.0-1.lbn25.noarch
This implementation of Gettext for Python includes a Msgfmt class which can be used to generate compiled mo files from Gettext po files and includes support for the newer msgctxt keyword. The idea for this project had been rather ambitious, but never lived up to what is was supposed to do. Look at Babel (http://pypi.python.org/pypi/Babel) for a project more worthy of this projects name.
RPMPackage python-ftw-1.4.0-2.lbn25.noarch
ftw module
RPMPackage python-empy-3.3.2-8.lbn25.py37.noarch
EmPy is a system for embedding Python expressions and statements in template text; it takes an EmPy source file, processes it, and produces output.
RPMPackage python-dtopt-0.1-20.lbn25.py37.noarch
dtopts adds options to doctest examples while they are running. When using the doctest module it is often convenient to use the ELLIPSIS option, which allows you to use ... as a wildcard. But you either have to setup the test runner to use this option, or you must put #doctest: +ELLIPSIS on every example that uses this feature. dtopt lets you enable this option globally from within a doctest, by doing: >>> from dtopt import ELLIPSIS