FabricForked is a fork of the Fabric library, which transplants the existing library functionality to a new typing and corrects some elements WITHOUT STRUCTURALLY CHANGING ANYTHING!
Fabric - is a high level Python library designed to execute shell commands remotely over SSH, yielding useful Python objects in return. It builds on top of Invoke (subprocess command execution and command-line features) and Paramiko (SSH protocol implementation), extending their APIs to complement one another and provide additional functionality.
To find out what's new in this version of Fabric, please see the changelog.
The project maintainer keeps a roadmap on his website.
The Fabric methods have not changed in any way, the only thing you will have to do is redefine the imports on FabricForked:
import os
password = os.environ.get('FABRIC_FORKED_SSH_PASSWORD', None)
import fabric_forked as fabric
from fabric_forked import Connection, Result
with Connection('localhost', port=22, user='fabricforked', connect_kwargs={'password': password}) as connection:
result = connection.run()
if result is not None:
...