An open API service indexing awesome lists of open source software.

https://github.com/mizzy/funnel

SSH routing framework based on twisted
https://github.com/mizzy/funnel

Last synced: about 2 months ago
JSON representation

SSH routing framework based on twisted

Awesome Lists containing this project

README

          

# Funnel - SSH routing framework based on twisted

## How to use

```python
import funnel

class MyFunnel(Funnel):
def auth_by_public_key():
# ...

def auth_by_password():
# ...

def getPty():
# ...

def execCommand():
# ...

def openShell():
# ...

if __name__ == '__main__':
MyFunnel.run()
```