-
python-extjs-devel-3.3.1-2.lbn19.noarch
JSBuilder compiler
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
python-extractmsg-0.2-1.lbn19.noarch
Extracts emails and attachments saved in Microsoft Outlook's .msg files
The python script ExtractMsg.py automates the extraction of key email data (from, to, cc, date, subject, body) and the email's attachments.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
python-extremes-1.1.1-2.lbn19.noarch
Production-quality 'Min' and 'Max' objects (adapted from PEP 326)
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
python-fastkml-0.11-1.lbn19.noarch
fastkml is a library to read, write and manipulate kml files. The aims are to keep it simple
and fast (using lxml if available). Fast refers to the time you spend to write and read KML
files as well as the time you spend to get aquainted to the library or to create KML objects.
It provides a subset of KML and is aimed at documents that can be read from multiple clients
such as openlayers and google maps rather than to give you all functionality that KML on
google earth provides.
Geometries are handled as pygeoif or shapely (if installed) objects.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
python-flake8-2.1.0-3.lbn19.noarch
Flake8 is a wrapper around these tools:
- PyFlakes - pep8 - Ned's McCabe script
Flake8 runs all tools by launching the single 'flake8' script, but ignores
pep8 and PyFlakes extended options and just uses defaults. It displays the
warnings in a per-file, merged output.
It also adds a few features:
- files that contains with this header are skipped::
- lines that contains a "# NOQA" comment at the end will not issue a
warning. - a Mercurial hook.
- a McCabe complexity checker.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
python-ftw-1.4.0-2.lbn25.noarch
ftw module
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
python-geojson-1.0.6-1.lbn19.noarch
This library contains:
* Functions for encoding and decoding GeoJSON_ formatted data
* Classes for all GeoJSON Objects
* An implementation of the Python __geo_interface__ Specification
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
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.
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
python-gocept-0.1-3.lbn25.noarch
gocept python module
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19
-
python-gocept.munin-0.1-3.lbn25.noarch
This package provides base classes for defining Munin graphs and a main
function to handle munin-typical symlinked scripts.
Munin plugin scripts
====================
A single plugin file defines (multiple) graphs by subclassing the bases as mentioned in
the next section. The main function uses the called script's filename to
determine which of the defined graphs is relevant.
Data for each graph is determined by retrieving a text file from a URL (with
possibly given basic authentication data).
The format for the data is plain/text wich each line having key/value pairs
split by ':'. The values are expected to be floats.
All graph bases expect two environment variables to be set:
URL
The URL at which to retrieve data from. Must include a '%s' which encodes
the graph name.
AUTH
HTTP basic authentication information. Either empty or in the form of
'username:password'.
The environment variables can be configured using munin's `plugin-conf.d` like
this:
The plugin is called `prefix_something_1`::
[prefix_*]
env.URL http://foo:8900/myapp/munin?data=%s
env.AUTH admin:admin
Graph bases
===========
The following base classes are currently defined:
SimpleGraph
A simple graph with a single value that is plotted as an absolute value.
SimpleMultiGraph
Multiple absolute values plotted on the same graph and scale.
more bases will be added as needed.
Main function
=============
The main function handles munin-typical `type_option_index` symlink scripts by
looking at the name from which the main script was called.
Example script
==============
Here's a sample script that you could symlink into the `plugins` directory::
from gocept.munin.client import SimpleGraph, main
class people(SimpleGraph):
name = key = 'people'
title = 'How many people are there?'
category = 'Office'
main()
[root@mistress gocept.munin-0.1]# cat README.txt
==========================================
Utilities for writing munin client scripts
==========================================
This package provides base classes for defining Munin graphs and a main
function to handle munin-typical symlinked scripts.
Munin plugin scripts
====================
A single plugin file defines (multiple) graphs by subclassing the bases as mentioned in
the next section. The main function uses the called script's filename to
determine which of the defined graphs is relevant.
Data for each graph is determined by retrieving a text file from a URL (with
possibly given basic authentication data).
The format for the data is plain/text wich each line having key/value pairs
split by ':'. The values are expected to be floats.
All graph bases expect two environment variables to be set:
URL
The URL at which to retrieve data from. Must include a '%s' which encodes
the graph name.
AUTH
HTTP basic authentication information. Either empty or in the form of
'username:password'.
The environment variables can be configured using munin's `plugin-conf.d` like
this:
The plugin is called `prefix_something_1`::
[prefix_*]
env.URL http://foo:8900/myapp/munin?data=%s
env.AUTH admin:admin
Graph bases
===========
The following base classes are currently defined:
SimpleGraph
A simple graph with a single value that is plotted as an absolute value.
SimpleMultiGraph
Multiple absolute values plotted on the same graph and scale.
more bases will be added as needed.
Main function
=============
The main function handles munin-typical `type_option_index` symlink scripts by
looking at the name from which the main script was called.
Example script
==============
Here's a sample script that you could symlink into the `plugins` directory::
from gocept.munin.client import SimpleGraph, main
class people(SimpleGraph):
name = key = 'people'
title = 'How many people are there?'
category = 'Office'
main()
Located in
LBN
/
…
/
Plone and Zope
/
BastionLinux 19