Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #97215
| Path | csiph.com!news.mixmin.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!nzpost1.xs4all.net!not-for-mail |
|---|---|
| Return-Path | <facundobatista@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.001 |
| X-Spam-Evidence | '*H*': 1.00; '*S*': 0.00; 'subject:: [': 0.03; 'url:pypi': 0.03; 'subject:ANN': 0.07; 'scripts': 0.09; 'script,': 0.09; 'similar,': 0.09; 'url:github': 0.09; 'python': 0.10; 'file,': 0.15; 'interpreter': 0.15; 'fly.': 0.16; 'virtualenv.': 0.16; 'wrote:': 0.16; 'runs': 0.18; 'subject:] ': 0.19; '2015': 0.20; 'to:2**1': 0.21; 'sep': 0.22; 'am,': 0.23; 'comment:': 0.23; 'header:In-Reply-To:1': 0.24; 'script': 0.25; 'installed': 0.26; 'parameters': 0.27; 'to:no real name:2**1': 0.27; 'message- id:@mail.gmail.com': 0.27; 'twitter:': 0.30; 'creating': 0.30; 'blog:': 0.30; 'version,': 0.30; 'embedded': 0.32; 'run': 0.33; 'url:python': 0.33; 'open': 0.33; 'tue,': 0.34; 'file': 0.34; 'running': 0.34; 'requirements': 0.35; 'received:google.com': 0.35; 'something': 0.35; 'comment': 0.35; 'supports': 0.35; 'but': 0.36; 'project': 0.36; 'url:org': 0.36; 'to:addr:python-list': 0.36; 'anything': 0.38; 'does': 0.39; 'to:addr:python.org': 0.40; 'url:ar': 0.72; 'forced': 0.84 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=GL8ax5SW4Had2Ver5z03ZtT/vufolBRQfAf4i6+N6wY=; b=rg2YQ9tSCSkbC7hnXTy3hNILRu6yzgzEK5GhRDk+5tNV+H4nndF6JMqmojjQe51bbD T1TGJs363zc4Rl7qs8b9nHSnGfoR6kkWybK67DB4L3Wf2KDIur1lIgm8ZKIHVLFe59vH NwGv7LeCMrB+MeyjFV5xQ84wtO6ilbVfoz2NHVHmPAECFQMaVA5RKbsbcTdVTATG55y5 Dw1mvfnOTyZTS+J/4NtgrIayfHIxjsfm4hoENp5b7L2iyEpA2lgqNBJdGQeNxjWrpD3k 9yU1QFOT/5t00QzMy1qWC8RvwpLfk6rt2S+gzow3Roc58V5XuBBmQO4YvW38lUCKETQH vNKQ== |
| MIME-Version | 1.0 |
| X-Received | by 10.140.202.204 with SMTP id x195mr30653732qha.7.1443549976809; Tue, 29 Sep 2015 11:06:16 -0700 (PDT) |
| In-Reply-To | <38be4fa0-ca14-48aa-9411-1c3a7facba82@googlegroups.com> |
| References | <38be4fa0-ca14-48aa-9411-1c3a7facba82@googlegroups.com> |
| Date | Tue, 29 Sep 2015 15:06:16 -0300 |
| Subject | Re: [ANN] pythenv |
| From | Facundo Batista <facundobatista@gmail.com> |
| To | python-list@python.org, michel.casabianca@gmail.com |
| Content-Type | text/plain; charset=UTF-8 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.20+ |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.245.1443549979.28679.python-list@python.org> (permalink) |
| Lines | 34 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1443549979 news.xs4all.nl 23862 [2001:888:2000:d::a6]:60294 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:97215 |
Show key headers only | View raw
On Tue, Sep 29, 2015 at 10:14 AM, <michel.casabianca@gmail.com> wrote: > Pythenv runs a Python script creating a virtualenv on the fly. Requirements may be passed as a requirements file or embedded in the Python script in a dedicated comment: > > # requirements: foo==1.2.3, bar > > This project is on Github: > > https://github.com/c4s4/pythenv Hi Michel! You may be interested in fades: https://pypi.python.org/pypi/fades fades does something similar, but also support receivng the parameters one by one in comand line, or through a requirements.txt file, or in a comment in the script, or in the scripts docstring. It also supports running any installed python version, even ipython. And you're not forced to run a python script! you can open an interactive interpreter inside the virtualenv, or directly execute anything inside the virtualenv. Regards, -- . Facundo Blog: http://www.taniquetil.com.ar/plog/ PyAr: http://www.python.org/ar/ Twitter: @facundobatista
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: [ANN] pythenv Facundo Batista <facundobatista@gmail.com> - 2015-09-29 15:06 -0300
csiph-web