sqlalchemy.exc.errno

Here are the examples of the python api sqlalchemy.exc.errno taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

3 Source : core.py
with Apache License 2.0
from CloudmindsRobot

def ensure_path_exists(path: str) -> None:
    try:
        os.makedirs(path)
    except OSError as exc:
        if not (os.path.isdir(path) and exc.errno == errno.EEXIST):
            raise


def get_since_until(  # pylint: disable=too-many-arguments