Cilantropy 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.
Installing using pip:
$ pip install cilantropy
Upgrading using pip:
$ pip install --upgrade cilantropy
Repository @ DockerHub
Docker Compose excerpt
# Docker Compose excerpt
services:
nginx-ui:
image: fz11/cilantropy:latest
ports:
- 8080:8080
volumes:
- nginx:/etc/nginx
uwsgi --http 0.0.0.0:5000 --wsgi-file wsgi.py --callable app --processes 1 --threads 8
If you're running Linux with systemd
(before edit path and other configs in contrib/systemd/cilantropy.service
)
installed, you can register Cilantropy as a service by copying cilantropy.service
(both in contrib/systemd
) to /etc/systemd/system
.
All standard systemd service management commands (e.g. systemctl enable
and systemctl start
) apply.
$ sudo start cilantropy
$ sudo stop cilantropy
$ sudo status cilantropy
or
$ sudo service cilantropy start
$ sudo service cilantropy stop
$ sudo service cilantropy status
You can use Cilantropy on your android device with Termux:
$ pkg upgrade
$ pkg install python
$ pip install cilantropy
In general, this app does not come with authentication. However, it is easy to setup basic auth to restrict unwanted access. Here is how this can be done when using nginx.
- Verify that
apache2-utils
(Debian, Ubuntu) orhttpd-tools
(RHEL/CentOS/Oracle Linux) is installed - Run the htpasswd utility to create a new user and set a passwort.
- Make sure, that the directory exists
- Remove the
-c
flag, if you have created a user before, since it creates the inital user/passwort file sudo htpasswd -c /etc/apache2/.htpasswd user1
You only need to call the script (the -w option will automatically open your browser):
$ cilantropy -w
$ plp --help
Cilantropy - Python List Packages (PLP)
Usage:
plp list [--compact] [<filter>]
plp show <project_name>
plp check <project_name>
plp scripts [<filter>]
plp paste [list your packages to pastebin service]
plp (-h | --help)
plp --version
Options:
--compact Compact list format
-h --help Show this screen.
--version Show version.
Developers can setup a development environment using the "develop" command from setuptools:
$ git clone git@github.com:foozzi/cilantropy.git && cd cilantropy
$ pip install flit --user
$ flit install
$ cilantropy
Cilantropy uses the following external projects:
A microframework based on Werkzeug, Jinja2 and good intentions
HTML, CSS, and JS toolkit from Bootstrap
Jinja2 (Flask requirement)
The Jinja2 template engine
Werkzeug (Flask requirement)
A flexible WSGI implementation and toolkit
docopt (used by plp)
Command-line interface description language
colorama (used by plp)
Cross-platform colored terminal text.
Docutils is an open-source text processing system for processing plaintext documentation into useful formats, such as HTML or LaTeX.
flit (for build and install package)
Flit is a simple way to put Python packages and modules on PyPI.
Cilantropy is compatible with:
- Python 3
Cilantropy is compatible with:
- Firefox
- Google Chrome
- Internet Explorer 9/10
- Safari
Open an issue in Github with the traceback. To get the traceback, you'll have to run Cilantropy in debugging mode:
$ cilantropy -drvi
Copyright (c) 2020, Tkachenko Igor All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1) Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2) Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3) All advertising materials mentioning features or use of this software must display the following acknowledgement:
"This product includes software developed by the University of California, Berkeley and its contributors."
4) Neither the name of the foozzi nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
See the Contributors.