PHP 8.0.30
Preview: engines.py Size: 766 B
/opt/alt/python37/lib/python3.7/site-packages/alembic/testing/engines.py

# testing/engines.py
# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
# <see AUTHORS file>
#
# This module is part of SQLAlchemy and is released under
# the MIT License: http://www.opensource.org/licenses/mit-license.php
"""NOTE:  copied/adapted from SQLAlchemy master for backwards compatibility;
   this should be removable when Alembic targets SQLAlchemy 1.0.0.
"""

from __future__ import absolute_import

from . import config


def testing_engine(url=None, options=None):
    """Produce an engine configured by --options with optional overrides."""

    from sqlalchemy import create_engine

    url = url or config.db.url
    if options is None:
        options = config.db_opts

    engine = create_engine(url, **options)

    return engine

Directory Contents

Dirs: 2 × Files: 14

Name Size Perms Modified Actions
plugin DIR
- drwxr-xr-x 2023-12-06 03:19:41
Edit Download
- drwxr-xr-x 2023-12-06 03:19:41
Edit Download
5.77 KB lrw-r--r-- 2015-10-16 19:18:36
Edit Download
310 B lrw-r--r-- 2015-10-16 19:18:36
Edit Download
2.32 KB lrw-r--r-- 2015-10-16 19:18:36
Edit Download
766 B lrw-r--r-- 2015-10-16 19:18:36
Edit Download
7.58 KB lrw-r--r-- 2015-10-16 19:18:36
Edit Download
12.49 KB lrw-r--r-- 2015-10-16 19:18:36
Edit Download
4.41 KB lrw-r--r-- 2015-10-16 19:18:36
Edit Download
791 B lrw-r--r-- 2015-10-16 19:18:36
Edit Download
4.94 KB lrw-r--r-- 2015-10-16 19:18:36
Edit Download
2.99 KB lrw-r--r-- 2015-10-16 19:18:36
Edit Download
1.56 KB lrw-r--r-- 2015-10-16 19:18:36
Edit Download
477 B lrw-r--r-- 2015-10-16 19:18:36
Edit Download
1.35 KB lrw-r--r-- 2015-10-16 19:18:36
Edit Download
253 B lrw-r--r-- 2015-10-16 19:18:36
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).