An open API service indexing awesome lists of open source software.

https://github.com/mfussenegger/pipex

Python application launcher with auto virtualenv creation and package installation
https://github.com/mfussenegger/pipex

Last synced: 6 months ago
JSON representation

Python application launcher with auto virtualenv creation and package installation

Awesome Lists containing this project

README

          

=====
pipex
=====

Pipex is a proof of concept application launcher for python. It automatically
creates a virtualenv and installs packages that are specified in the first
couple of lines of a python script::

#!/usr/bin/env pipex
# pipex --pkg crate

from crate.client import connect

conn = connect()
c = conn.cursor()
c.execute('select 1')
print(c.fetchall())