Source code for stashy

__version__ = "0.1"

from .client import Stash

[docs]def connect(url, username, password, verify=True): """Connect to a Stash instance given a username and password. This is only recommended via SSL. If you need are using self-signed certificates, you can use verify=False to ignore SSL verifcation. """ return Stash(url, username, password, verify=verify)
__all__ = ['connect']