6 lines
193 B
Python
6 lines
193 B
Python
from .client import *
|
|
|
|
def connect(*args, **kwargs):
|
|
"""connect(host, port=0, auth=None, username=None, password=None, protocol='http', path="/")"""
|
|
return Client(*args, **kwargs)
|