# sqlalchemy-sqlite-session **Repository Path**: tensorflows/sqlalchemy-sqlite-session ## Basic Information - **Project Name**: sqlalchemy-sqlite-session - **Description**: sqlalchemy 工具:获取sqlite session、engine。 - **Primary Language**: Python - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-15 - **Last Updated**: 2023-09-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Sqlalchemy Sqlite Session This is tools to get session and engine for Sqlalchemy Sqlite. ### install package ``` pip install sqlalchemy-sqlite-session -i https://pypi.org/simple ### update package ``` pip install -U sqlalchemy-sqlite-session -i https://pypi.org/simple ``` ### example ``` from sqlalchemy_sqlite_session.adapters import get_sqlite_session session = get_sqlite_session('C:\sqlite_path.db') engine = get_sqlite_engine('C:\sqlite_path.db') ``` ### Packaging project ``` py -m pip install twine py -m pip install build py -m build --sdist ``` ### Uploading Project to PyPI ``` twine check dist/* twine upload dist/* ```