├── case.py ├── db.sql ├── db_relation.sql ├── infra ├── __init__.py ├── configs │ ├── __init__.py │ ├── base.py │ └── connection.py ├── entities │ ├── __init__.py │ ├── atores.py │ └── filmes.py └── repository │ ├── __init__.py │ ├── atores_repository.py │ └── filmes_repository.py ├── run.py └── sqlalchemy_raw.py /case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programadorLhama/sqlalchemy/HEAD/case.py -------------------------------------------------------------------------------- /db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programadorLhama/sqlalchemy/HEAD/db.sql -------------------------------------------------------------------------------- /db_relation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programadorLhama/sqlalchemy/HEAD/db_relation.sql -------------------------------------------------------------------------------- /infra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/configs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programadorLhama/sqlalchemy/HEAD/infra/configs/base.py -------------------------------------------------------------------------------- /infra/configs/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programadorLhama/sqlalchemy/HEAD/infra/configs/connection.py -------------------------------------------------------------------------------- /infra/entities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programadorLhama/sqlalchemy/HEAD/infra/entities/__init__.py -------------------------------------------------------------------------------- /infra/entities/atores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programadorLhama/sqlalchemy/HEAD/infra/entities/atores.py -------------------------------------------------------------------------------- /infra/entities/filmes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programadorLhama/sqlalchemy/HEAD/infra/entities/filmes.py -------------------------------------------------------------------------------- /infra/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/repository/atores_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programadorLhama/sqlalchemy/HEAD/infra/repository/atores_repository.py -------------------------------------------------------------------------------- /infra/repository/filmes_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programadorLhama/sqlalchemy/HEAD/infra/repository/filmes_repository.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programadorLhama/sqlalchemy/HEAD/run.py -------------------------------------------------------------------------------- /sqlalchemy_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/programadorLhama/sqlalchemy/HEAD/sqlalchemy_raw.py --------------------------------------------------------------------------------