Hey Taras,

Can you give an example of "all the imports"? Offhand the only ones
you might want to have in every fabfile would be:

    from __future__ import with_statement # on 2.5 only
    from fabric.api import * # "bad practices" but useful for us
    from fabric.contrib.x import y # pretty situational really

Given that the 3rd line isn't part of the real base package, that's
only 2 lines (and only one line on Python 2.6!) :)

If your concern is to avoid the "from anything import *", then the
issue is that best practice vs code generation (a non-best practice
typically) and honestly I'd say code generation loses that particular
battle ;)

Let me know your particular situation, though.

-Jeff

On Wed, Oct 14, 2009 at 6:53 PM, Taras Mankovski <tar...@gmail.com> wrote:
> Hey Jeff,
>
> It would be great to be able to run init and it would generate a
> fabfile.py with all of the imports.
>
> It would save some copy and pasting from other scripts or looking for
> the import statements.
>
> What do you think?
>
> Taras
>
>
> _______________________________________________
> Fab-user mailing list
> Fab-user@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/fab-user
>


_______________________________________________
Fab-user mailing list
Fab-user@nongnu.org
http://lists.nongnu.org/mailman/listinfo/fab-user

Reply via email to