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
- Host: GitHub
- URL: https://github.com/mfussenegger/pipex
- Owner: mfussenegger
- Created: 2018-02-12T22:40:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-12T22:41:15.000Z (over 7 years ago)
- Last Synced: 2025-04-14T11:03:13.795Z (6 months ago)
- Language: Python
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
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 cratefrom crate.client import connect
conn = connect()
c = conn.cursor()
c.execute('select 1')
print(c.fetchall())