This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
fabric /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Sat Apr 25 15:40:36 -0700 2009 | |
| |
ALPHA_NOTES | Sun Apr 26 16:03:52 -0700 2009 | |
| |
AUTHORS | Thu Apr 30 07:21:25 -0700 2009 | |
| |
INSTALL | Wed Feb 06 04:07:02 -0800 2008 | |
| |
LICENSE | Sat Apr 18 12:54:51 -0700 2009 | |
| |
MAGIC-REMOVAL_TODO | Thu Apr 30 10:18:02 -0700 2009 | |
| |
MANIFEST | Wed Feb 06 04:08:36 -0800 2008 | |
| |
README | Sat Apr 25 15:40:36 -0700 2009 | |
| |
TODO | Fri Apr 17 12:57:03 -0700 2009 | |
| |
docs/ | ||
| |
fabfile.py | ||
| |
fabric/ | ||
| |
old-doc/ | Sat Apr 25 15:40:36 -0700 2009 | |
| |
requirements.txt | Sat Apr 25 15:40:36 -0700 2009 | |
| |
setup.py | Tue Apr 28 07:53:12 -0700 2009 | |
| |
tests/ | Tue Apr 28 07:53:12 -0700 2009 |
README
Fabric is a Python library and command-line tool designed to streamline deploying applications or performing system administration tasks via the SSH protocol. It provides tools for running arbitrary shell commands (either as a normal login user, or via ``sudo``), uploading and downloading files, and so forth. Typical use involves defining a "fabfile" (a Python module) containing one or more functions or tasks which may then be executed by the ``fab`` command-line tool. Fabric provides extra functionality related to this mode of use, such as prompting for user input, ensuring certain variables are present in order for tasks to run, and specifying which host or hosts a specific task connects to by default. Fabric may also be used as a standalone library, so that other Python programs needing a simple API on top of SSH or SCP may import and utilize specific pieces of functionality.








