├── .gitignore ├── LICENSE ├── README.md ├── add_new_table.py ├── add_new_table_foreign_key.py ├── creating_foreign_keys_from_start.py ├── creating_foreign_keys_from_start_JupyterHub_example.py ├── creating_records.py ├── gifs ├── engine_execute.gif └── jupyterhub_example.gif └── model.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leportella/sqlalchemy-basics-post/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leportella/sqlalchemy-basics-post/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # sqlalchemy-basics-post -------------------------------------------------------------------------------- /add_new_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leportella/sqlalchemy-basics-post/HEAD/add_new_table.py -------------------------------------------------------------------------------- /add_new_table_foreign_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leportella/sqlalchemy-basics-post/HEAD/add_new_table_foreign_key.py -------------------------------------------------------------------------------- /creating_foreign_keys_from_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leportella/sqlalchemy-basics-post/HEAD/creating_foreign_keys_from_start.py -------------------------------------------------------------------------------- /creating_foreign_keys_from_start_JupyterHub_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leportella/sqlalchemy-basics-post/HEAD/creating_foreign_keys_from_start_JupyterHub_example.py -------------------------------------------------------------------------------- /creating_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leportella/sqlalchemy-basics-post/HEAD/creating_records.py -------------------------------------------------------------------------------- /gifs/engine_execute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leportella/sqlalchemy-basics-post/HEAD/gifs/engine_execute.gif -------------------------------------------------------------------------------- /gifs/jupyterhub_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leportella/sqlalchemy-basics-post/HEAD/gifs/jupyterhub_example.gif -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leportella/sqlalchemy-basics-post/HEAD/model.py --------------------------------------------------------------------------------