SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 

python-ansicolors rpm build for : OpenSuSE. For other distributions click python-ansicolors.

Name : python-ansicolors
Version : 1.0.2 Vendor : obs://build_opensuse_org/home:mschnitzer
Release : 3.16 Date : 2014-03-18 13:00:00
Group : Development/Languages/Python Source RPM : python-ansicolors-1.0.2-3.16.src.rpm
Size : 0.01 MB
Packager : (none)
Summary : ANSI colors for Python
Description :
ANSI colors for Python
======================

A simple module to add ANSI colors and decorations to your strings.

Example Usage
-------------

You can choose one of the 8 basic ANSI colors: black, red, green, yellow, blue,
magenta, cyan, white.

::

from colors import red, green, blue
print red(\'This is red\')
print green(\'This is green\')
print blue(\'This is blue\')

Optionally you can specify a background color.

::

print red(\'red on blue\', bg=\'blue\')
print green(\'green on black\', bg=\'black\')

You can additionally specify one of the supported styles: bold, faint, italic,
underline, blink, blink2, negative, concealed, crossed. Not all styles are
supported by all terminals.

::

from colors import bold, underline
print bold(\'This is bold\')
print underline(\'underline red on blue\', fg=\'red\', bg=\'blue\')
print green(\'bold green on black\', bg=\'black\', style=\'bold\')

You can also use more than one styles at once.

::

print red(\'This is very important\', style=\'bold+underline\')

xterm-256 colors are supported as well, to use them give an integer instead of
a color name.

::

from colors import color
for i in range(256):
print color(\'Color #%d\' % i, fg=i)


License
-------

colors is licensed under the ISC license.

RPM found in directory: /packages/linux-pbone/ftp5.gwdg.de/pub/opensuse/repositories/home:/mschnitzer/openSUSE_Factory_ARM/noarch

Content of RPM  Changelog  Provides Requires

Hmm ... It's impossible ;-) This RPM doesn't exist on any FTP server

Provides :
python-ansicolors

Requires :
python(abi) = 2.7
rpmlib(CompressedFileNames) <= 3.0.4-1
rpmlib(FileDigests) <= 4.6.0-1
rpmlib(PayloadFilesHavePrefix) <= 4.0-1
rpmlib(PayloadIsXz) <= 5.2-1


Content of RPM :
/usr/lib/python2.7/site-packages/ansicolors-1.0.2-py2.7.egg-info
/usr/lib/python2.7/site-packages/ansicolors-1.0.2-py2.7.egg-info/PKG-INFO
/usr/lib/python2.7/site-packages/ansicolors-1.0.2-py2.7.egg-info/SOURCES.txt
/usr/lib/python2.7/site-packages/ansicolors-1.0.2-py2.7.egg-info/dependency_links.txt
/usr/lib/python2.7/site-packages/ansicolors-1.0.2-py2.7.egg-info/top_level.txt
/usr/lib/python2.7/site-packages/colors.py
/usr/lib/python2.7/site-packages/colors.pyc
/usr/share/doc/packages/python-ansicolors
/usr/share/doc/packages/python-ansicolors/LICENSE
/usr/share/doc/packages/python-ansicolors/README.rst

 
ICM