module documentation

Provides the ~sqlalchemy.engine.url.URL class which encapsulates information about a database connection specification.

The URL object is created automatically when ~sqlalchemy.engine.create_engine is called with a string argument; alternatively, the URL is a public-facing construct which can be used directly and is also accepted directly by create_engine().

Class URL Represent the components of a URL used to connect to a database.
Function ​_parse​_keyvalue​_args Undocumented
Function ​_parse​_rfc1738​_args Undocumented
Function ​_rfc​_1738​_quote Undocumented
Function ​_rfc​_1738​_unquote Undocumented
Function make​_url Given a string or unicode instance, produce a new URL instance.
def _parse_keyvalue_args(name):

Undocumented

def _parse_rfc1738_args(name):

Undocumented

def _rfc_1738_quote(text):

Undocumented

def _rfc_1738_unquote(text):

Undocumented

def make_url(name_or_url):

Given a string or unicode instance, produce a new URL instance.

The given string is parsed according to the RFC 1738 spec. If an existing URL object is passed, just returns the object.