View on GitHub

Stallion

Stallion - A Python Package Manager

Download this project as a .zip file Download this project as a tar.gz file

Stallion

Stallion is a Python Package Manager interface created to provide an "easy-to-use" visual and also a command-line interface for Pythonistas. Today we have many nice distribution utilities like pip, distribute, etc, but we don't have a nice visual approach to inspect current installed packages, show projects metadata, check for PyPI updates, etc.

Screenshots

Screenshot: The home

The home

Screenshot: Installed package information

Installed package information

Screenshot: Package metadata

Package metadata

Screenshot: Check PyPI for updates available

Updates

Updates

Updates

Screenshot: the 'plp' (Python List Packages) utility

Updates

Updates

Updates

Updates

Updates

Updates

Updates

Updates

Updates

How to Install

Installing using pip:

$ pip install stallion

Upgrading using pip:

$ pip install --upgrade stallion

or using easy install:

Installing using easy_install:

$ easy_install stallion

Upgrading using easy_install:

$ easy_install -U stallion

Using Stallion

You only need to call the script (the -w option will automatically open your browser):

$ stallion -w

Using plp

$ plp --help
Stallion - Python List Packages (PLP)

Usage:
  plp list [--compact] [<filter>]
  plp show <project_name>
  plp check <project_name>
  plp scripts [<filter>]

  plp (-h | --help)
  plp --version

Options:
  --compact     Compact list format
  -h --help     Show this screen.
  --version     Show version.

Setting a development environment


Developers can setup a development environment using the "develop" command from setuptools:

$ python setup.py develop
$ stallion

Requirements

Stallion uses the following external projects:

Flask

A microframework based on Werkzeug, Jinja2 and good intentions

Twitter Bootstrap

HTML, CSS, and JS toolkit from Twitter

docutils

Docutils is an open-source text processing system for processing plaintext documentation into useful formats, such as HTML or LaTeX.

Jinja2 (Flask requirement)

The Jinja2 template engine

Werkzeug (Flask requirement)

A flexible WSGI implementation and toolkit

Simplejson (If you use Python 2.5)

Simple, fast, extensible JSON encoder/decoder for Python

docopt (used by plp)

Command-line interface description language

colorama (used by plp)

Cross-platform colored terminal text.

Compatibility

Stallion is compatible with:

Supported browsers

Stallion is compatible with:

What's new in release v0.4

What's new in release v0.3

What's new in release v0.2

Bug fixes

Lot's of bugs were fixed:

 - Unicode problem (https://github.com/perone/stallion/issues/15)
 - Python 2.5 compatibility (https://github.com/perone/stallion/issues/12)
 - Ignored explicit port (https://github.com/perone/stallion/issues/6)
 - Internet Explorer 9 compatibility (https://github.com/perone/stallion/issues/4)
 - Jinja2 version dependency (https://github.com/perone/stallion/issues/1)
 - Other small fixes

Global checking feature

  Many people asked for a global version updates checking, now you have this
  feature under the menu "PyPI Repository". This option is going to check
  updates for all your packages. A new icon will appear on the sidebar
  packages menu warning in case of a new available update.

Classifiers refactoring

  The classifiers of the package are now visually different.

Reporting bug

Open an issue in Github with the traceback. To get the traceback, you'll have to run Stallion in debugging mode:

$ stallion -drvi

License

Copyright 2011 Christian S. Perone

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Contributors

See the Contributors.

Links

Project Site - Github