├── .coveragerc ├── .github └── workflows │ ├── ci.yml │ ├── coverage.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README_zh.md ├── __init__.py ├── __main__.py ├── pic ├── Pagination_query.png ├── example.gif ├── foreign_tree.png ├── greater_query.png ├── in_query.png ├── join_child.png ├── join_parent.png ├── join_preview_1.png ├── join_preview_2.png ├── less_query.png ├── numeric_query.png ├── page_preview.png ├── string_query.png ├── time_query.png └── upsert_preview.png ├── requirements.txt ├── setup.py ├── src ├── __init__.py └── fastapi_quickcrud │ ├── __init__.py │ ├── crud_router.py │ └── misc │ ├── __init__.py │ ├── abstract_execute.py │ ├── abstract_parser.py │ ├── abstract_query.py │ ├── abstract_route.py │ ├── covert_model.py │ ├── crud_model.py │ ├── exceptions.py │ ├── memory_sql.py │ ├── schema_builder.py │ ├── type.py │ └── utils.py ├── tests ├── __init__.py ├── conf │ ├── __init__.py │ ├── config.py │ ├── dev.docker-compose.yml │ └── dev.env └── test_implementations │ ├── __init__.py │ ├── other │ └── __init__.py │ ├── test_memory_sqlalchemy │ ├── __init__.py │ ├── api_async_test │ │ ├── __init__.py │ │ ├── foreign_tree │ │ │ ├── __init__.py │ │ │ └── test_relationship_m2m.py │ │ ├── test_create_many_api.py │ │ ├── test_create_one_api.py │ │ ├── test_delete_many_api.py │ │ ├── test_delete_one_api.py │ │ ├── test_get_many_api.py │ │ ├── test_get_one_api.py │ │ ├── test_other_default_value.py │ │ ├── test_other_set_description.py │ │ ├── test_other_single_unique.py │ │ ├── test_patch_many_api.py │ │ ├── test_patch_one_api.py │ │ ├── test_post_redirect_get_api.py │ │ ├── test_put_many_api.py │ │ └── test_put_one_api.py │ ├── api_test │ │ ├── __init__.py │ │ ├── foreign_tree │ │ │ ├── __init__.py │ │ │ └── test_relationship_m2m.py │ │ ├── join_relationship │ │ │ ├── __init__.py │ │ │ ├── test_relationship_extra.py │ │ │ ├── test_relationship_m2m.py │ │ │ ├── test_relationship_m2m_back_populates.py │ │ │ ├── test_relationship_m2o.py │ │ │ ├── test_relationship_m2o_back_populates.py │ │ │ ├── test_relationship_m2o_back_refer.py │ │ │ ├── test_relationship_o2m.py │ │ │ ├── test_relationship_o2m_back_populates.py │ │ │ ├── test_relationship_o2m_back_ref.py │ │ │ └── test_relationship_o2o.py │ │ ├── test_create_many_api.py │ │ ├── test_create_one_api.py │ │ ├── test_delete_many_api.py │ │ ├── test_delete_one_api.py │ │ ├── test_get_many_api.py │ │ ├── test_get_one_api.py │ │ ├── test_other_default_value.py │ │ ├── test_other_set_description.py │ │ ├── test_other_single_unique.py │ │ ├── test_patch_many_api.py │ │ ├── test_patch_one_api.py │ │ ├── test_post_redirect_get_api.py │ │ ├── test_put_many_api.py │ │ └── test_put_one_api.py │ └── error_test │ │ ├── __init__.py │ │ ├── test_create_null_type.py │ │ ├── test_create_specific_api_when_no_pk.py │ │ ├── test_create_table_with_more_than_one_unique_but_no_use_composite.py │ │ ├── test_use_blob_type_column.py │ │ ├── test_use_composite_primary.py │ │ ├── test_use_more_than_one_pk.py │ │ ├── test_use_more_than_one_unique.py │ │ ├── test_use_unique_and_composite_unique.py │ │ ├── test_use_unsupported_type_pk.py │ │ ├── test_use_unsupported_type_pk_2.py │ │ ├── test_use_unsupported_type_pk_3.py │ │ └── test_use_unsupported_type_pk_4.py │ ├── test_sqlalchemy │ ├── __init__.py │ ├── api_test │ │ ├── __init__.py │ │ ├── join_relationship │ │ │ ├── __init__.py │ │ │ ├── test_relationship_m2m.py │ │ │ ├── test_relationship_m2m_back_populates.py │ │ │ ├── test_relationship_m2o.py │ │ │ ├── test_relationship_m2o_back_populates.py │ │ │ ├── test_relationship_m2o_back_refer.py │ │ │ ├── test_relationship_o2m.py │ │ │ ├── test_relationship_o2m_back_populates.py │ │ │ ├── test_relationship_o2m_back_ref.py │ │ │ └── test_relationship_o2o.py │ │ ├── test_create_many_api.py │ │ ├── test_create_one_api.py │ │ ├── test_delete_many_api.py │ │ ├── test_delete_one_api.py │ │ ├── test_get_many_api.py │ │ ├── test_get_one_api.py │ │ ├── test_other_default_value.py │ │ ├── test_other_set_description.py │ │ ├── test_other_single_unique.py │ │ ├── test_other_uuid_primary.py │ │ ├── test_patch_many_api.py │ │ ├── test_patch_one_api.py │ │ ├── test_post_redirect_get_api.py │ │ ├── test_put_many_api.py │ │ └── test_put_one_api.py │ ├── api_test_async │ │ ├── __init__.py │ │ ├── test_create_many_api.py │ │ ├── test_create_one_api.py │ │ ├── test_delete_many_api.py │ │ ├── test_delete_one_api.py │ │ ├── test_get_many_api.py │ │ ├── test_get_one_api.py │ │ ├── test_other_default_value.py │ │ ├── test_other_single_unique.py │ │ ├── test_other_uuid_primary.py │ │ ├── test_patch_many_api.py │ │ ├── test_patch_one_api.py │ │ ├── test_post_redirect_get_api.py │ │ ├── test_put_many_api.py │ │ └── test_put_one_api.py │ └── error_test │ │ ├── __init__.py │ │ ├── test_create_null_type.py │ │ ├── test_create_specific_api_when_no_pk.py │ │ ├── test_create_table_with_more_than_one_unique_but_no_use_composite.py │ │ ├── test_use_blob_type_column.py │ │ ├── test_use_composite_primary.py │ │ ├── test_use_more_than_one_pk.py │ │ ├── test_use_more_than_one_unique.py │ │ ├── test_use_unique_and_composite_unique.py │ │ ├── test_use_unsupported_type_pk.py │ │ ├── test_use_unsupported_type_pk_2.py │ │ ├── test_use_unsupported_type_pk_3.py │ │ └── test_use_unsupported_type_pk_4.py │ └── test_sqlalchemy_table │ ├── __init__.py │ ├── api_test │ ├── __init__.py │ ├── test_delete_many_api.py │ ├── test_delete_one_api.py │ ├── test_get_many_api.py │ ├── test_get_one_api.py │ ├── test_other_no_alias.py │ ├── test_other_set_description.py │ ├── test_other_single_unique.py │ ├── test_other_user_default_value.py │ ├── test_other_uuid_primary.py │ ├── test_patch_many_api.py │ ├── test_patch_one_api.py │ ├── test_post_redirect_get_api.py │ ├── test_put_many_api.py │ ├── test_put_one_api.py │ ├── test_upsert_many_api.py │ └── test_upsert_one_api.py │ ├── api_test_async │ ├── __init__.py │ ├── test_create_many_api.py │ ├── test_create_one_api.py │ ├── test_delete_many_api.py │ ├── test_delete_one_api.py │ ├── test_get_many_api.py │ ├── test_get_one_api.py │ ├── test_other_default_value.py │ ├── test_other_no_alias.py │ ├── test_other_single_unique.py │ ├── test_other_uuid_primary.py │ ├── test_patch_many_api.py │ ├── test_patch_one_api.py │ ├── test_post_redirect_get_api.py │ ├── test_put_many_api.py │ └── test_put_one_api.py │ └── error_test │ ├── __init__.py │ ├── test_create_null_type.py │ ├── test_pk_no_default_value.py │ ├── test_use_composite_primary.py │ ├── test_use_more_than_one_pk.py │ ├── test_use_more_than_one_unique.py │ ├── test_use_unique_and_composite_unique.py │ ├── test_use_unsupported_type.py │ ├── test_use_unsupported_type_2.py │ ├── test_use_unsupported_type_3.py │ └── test_use_unsupported_type_4.py └── tutorial ├── __init__.py ├── basic_usage ├── __init__.py ├── depencies_example_auth.py ├── quick_usage_with_async_SQLALchemy_Base.py ├── quick_usage_with_async_SQLALchemy_table.py ├── quick_usage_with_async_SQLALchemy_table_with_out_primary_key.py └── quick_usage_with_sync_SQLAlchemy_Base.py ├── foreign_tree ├── __init__.py ├── async_m2m.py ├── m2m.py └── sample_tree.py ├── relationship ├── __init__.py ├── many_to_many.py ├── many_to_one.py ├── one_to_many.py └── one_to_one.py ├── sample.py ├── sample_case.py └── sample_two_table.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/README_zh.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__main__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pic/Pagination_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/pic/Pagination_query.png -------------------------------------------------------------------------------- /pic/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/pic/example.gif -------------------------------------------------------------------------------- /pic/foreign_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/pic/foreign_tree.png -------------------------------------------------------------------------------- /pic/greater_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/pic/greater_query.png -------------------------------------------------------------------------------- /pic/in_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/pic/in_query.png -------------------------------------------------------------------------------- /pic/join_child.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/pic/join_child.png -------------------------------------------------------------------------------- /pic/join_parent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/pic/join_parent.png -------------------------------------------------------------------------------- /pic/join_preview_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/pic/join_preview_1.png -------------------------------------------------------------------------------- /pic/join_preview_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/pic/join_preview_2.png -------------------------------------------------------------------------------- /pic/less_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/pic/less_query.png -------------------------------------------------------------------------------- /pic/numeric_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/pic/numeric_query.png -------------------------------------------------------------------------------- /pic/page_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/pic/page_preview.png -------------------------------------------------------------------------------- /pic/string_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/pic/string_query.png -------------------------------------------------------------------------------- /pic/time_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/pic/time_query.png -------------------------------------------------------------------------------- /pic/upsert_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/pic/upsert_preview.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fastapi_quickcrud/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/src/fastapi_quickcrud/__init__.py -------------------------------------------------------------------------------- /src/fastapi_quickcrud/crud_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/src/fastapi_quickcrud/crud_router.py -------------------------------------------------------------------------------- /src/fastapi_quickcrud/misc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fastapi_quickcrud/misc/abstract_execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/src/fastapi_quickcrud/misc/abstract_execute.py -------------------------------------------------------------------------------- /src/fastapi_quickcrud/misc/abstract_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/src/fastapi_quickcrud/misc/abstract_parser.py -------------------------------------------------------------------------------- /src/fastapi_quickcrud/misc/abstract_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/src/fastapi_quickcrud/misc/abstract_query.py -------------------------------------------------------------------------------- /src/fastapi_quickcrud/misc/abstract_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/src/fastapi_quickcrud/misc/abstract_route.py -------------------------------------------------------------------------------- /src/fastapi_quickcrud/misc/covert_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/src/fastapi_quickcrud/misc/covert_model.py -------------------------------------------------------------------------------- /src/fastapi_quickcrud/misc/crud_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/src/fastapi_quickcrud/misc/crud_model.py -------------------------------------------------------------------------------- /src/fastapi_quickcrud/misc/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/src/fastapi_quickcrud/misc/exceptions.py -------------------------------------------------------------------------------- /src/fastapi_quickcrud/misc/memory_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/src/fastapi_quickcrud/misc/memory_sql.py -------------------------------------------------------------------------------- /src/fastapi_quickcrud/misc/schema_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/src/fastapi_quickcrud/misc/schema_builder.py -------------------------------------------------------------------------------- /src/fastapi_quickcrud/misc/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/src/fastapi_quickcrud/misc/type.py -------------------------------------------------------------------------------- /src/fastapi_quickcrud/misc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/src/fastapi_quickcrud/misc/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conf/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/conf/config.py -------------------------------------------------------------------------------- /tests/conf/dev.docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/conf/dev.docker-compose.yml -------------------------------------------------------------------------------- /tests/conf/dev.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/conf/dev.env -------------------------------------------------------------------------------- /tests/test_implementations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_implementations/other/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_async_test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_async_test/__init__.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_async_test/foreign_tree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_async_test/foreign_tree/test_relationship_m2m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_async_test/foreign_tree/test_relationship_m2m.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_create_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_create_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_create_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_create_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_delete_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_delete_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_delete_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_delete_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_get_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_get_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_get_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_get_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_other_default_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_other_default_value.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_other_set_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_other_set_description.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_other_single_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_other_single_unique.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_patch_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_patch_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_patch_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_patch_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_post_redirect_get_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_post_redirect_get_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_put_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_put_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_put_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_async_test/test_put_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/__init__.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/foreign_tree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/foreign_tree/test_relationship_m2m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/foreign_tree/test_relationship_m2m.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_extra.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_m2m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_m2m.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_m2m_back_populates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_m2m_back_populates.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_m2o.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_m2o.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_m2o_back_populates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_m2o_back_populates.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_m2o_back_refer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_m2o_back_refer.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_o2m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_o2m.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_o2m_back_populates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_o2m_back_populates.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_o2m_back_ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_o2m_back_ref.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_o2o.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/join_relationship/test_relationship_o2o.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/test_create_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/test_create_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/test_create_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/test_create_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/test_delete_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/test_delete_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/test_delete_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/test_delete_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/test_get_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/test_get_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/test_get_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/test_get_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/test_other_default_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/test_other_default_value.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/test_other_set_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/test_other_set_description.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/test_other_single_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/test_other_single_unique.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/test_patch_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/test_patch_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/test_patch_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/test_patch_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/test_post_redirect_get_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/test_post_redirect_get_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/test_put_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/test_put_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/api_test/test_put_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/api_test/test_put_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/error_test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/error_test/test_create_null_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/error_test/test_create_null_type.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/error_test/test_create_specific_api_when_no_pk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/error_test/test_create_specific_api_when_no_pk.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/error_test/test_create_table_with_more_than_one_unique_but_no_use_composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/error_test/test_create_table_with_more_than_one_unique_but_no_use_composite.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/error_test/test_use_blob_type_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/error_test/test_use_blob_type_column.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/error_test/test_use_composite_primary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/error_test/test_use_composite_primary.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/error_test/test_use_more_than_one_pk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/error_test/test_use_more_than_one_pk.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/error_test/test_use_more_than_one_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/error_test/test_use_more_than_one_unique.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/error_test/test_use_unique_and_composite_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/error_test/test_use_unique_and_composite_unique.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/error_test/test_use_unsupported_type_pk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/error_test/test_use_unsupported_type_pk.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/error_test/test_use_unsupported_type_pk_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/error_test/test_use_unsupported_type_pk_2.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/error_test/test_use_unsupported_type_pk_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/error_test/test_use_unsupported_type_pk_3.py -------------------------------------------------------------------------------- /tests/test_implementations/test_memory_sqlalchemy/error_test/test_use_unsupported_type_pk_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_memory_sqlalchemy/error_test/test_use_unsupported_type_pk_4.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/__init__.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/join_relationship/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/join_relationship/test_relationship_m2m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/join_relationship/test_relationship_m2m.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/join_relationship/test_relationship_m2m_back_populates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/join_relationship/test_relationship_m2m_back_populates.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/join_relationship/test_relationship_m2o.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/join_relationship/test_relationship_m2o.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/join_relationship/test_relationship_m2o_back_populates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/join_relationship/test_relationship_m2o_back_populates.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/join_relationship/test_relationship_m2o_back_refer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/join_relationship/test_relationship_m2o_back_refer.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/join_relationship/test_relationship_o2m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/join_relationship/test_relationship_o2m.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/join_relationship/test_relationship_o2m_back_populates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/join_relationship/test_relationship_o2m_back_populates.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/join_relationship/test_relationship_o2m_back_ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/join_relationship/test_relationship_o2m_back_ref.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/join_relationship/test_relationship_o2o.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/join_relationship/test_relationship_o2o.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/test_create_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/test_create_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/test_create_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/test_create_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/test_delete_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/test_delete_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/test_delete_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/test_delete_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/test_get_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/test_get_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/test_get_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/test_get_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/test_other_default_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/test_other_default_value.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/test_other_set_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/test_other_set_description.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/test_other_single_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/test_other_single_unique.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/test_other_uuid_primary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/test_other_uuid_primary.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/test_patch_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/test_patch_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/test_patch_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/test_patch_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/test_post_redirect_get_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/test_post_redirect_get_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/test_put_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/test_put_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test/test_put_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test/test_put_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test_async/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test_async/__init__.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test_async/test_create_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test_async/test_create_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test_async/test_create_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test_async/test_create_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test_async/test_delete_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test_async/test_delete_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test_async/test_delete_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test_async/test_delete_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test_async/test_get_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test_async/test_get_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test_async/test_get_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test_async/test_get_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test_async/test_other_default_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test_async/test_other_default_value.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test_async/test_other_single_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test_async/test_other_single_unique.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test_async/test_other_uuid_primary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test_async/test_other_uuid_primary.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test_async/test_patch_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test_async/test_patch_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test_async/test_patch_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test_async/test_patch_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test_async/test_post_redirect_get_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test_async/test_post_redirect_get_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test_async/test_put_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test_async/test_put_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/api_test_async/test_put_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/api_test_async/test_put_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/error_test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/error_test/test_create_null_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/error_test/test_create_null_type.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/error_test/test_create_specific_api_when_no_pk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/error_test/test_create_specific_api_when_no_pk.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/error_test/test_create_table_with_more_than_one_unique_but_no_use_composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/error_test/test_create_table_with_more_than_one_unique_but_no_use_composite.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/error_test/test_use_blob_type_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/error_test/test_use_blob_type_column.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/error_test/test_use_composite_primary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/error_test/test_use_composite_primary.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/error_test/test_use_more_than_one_pk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/error_test/test_use_more_than_one_pk.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/error_test/test_use_more_than_one_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/error_test/test_use_more_than_one_unique.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/error_test/test_use_unique_and_composite_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/error_test/test_use_unique_and_composite_unique.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/error_test/test_use_unsupported_type_pk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/error_test/test_use_unsupported_type_pk.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/error_test/test_use_unsupported_type_pk_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/error_test/test_use_unsupported_type_pk_2.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/error_test/test_use_unsupported_type_pk_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/error_test/test_use_unsupported_type_pk_3.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy/error_test/test_use_unsupported_type_pk_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy/error_test/test_use_unsupported_type_pk_4.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test/__init__.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test/test_delete_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test/test_delete_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test/test_delete_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test/test_delete_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test/test_get_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test/test_get_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test/test_get_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test/test_get_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test/test_other_no_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test/test_other_no_alias.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test/test_other_set_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test/test_other_set_description.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test/test_other_single_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test/test_other_single_unique.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test/test_other_user_default_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test/test_other_user_default_value.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test/test_other_uuid_primary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test/test_other_uuid_primary.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test/test_patch_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test/test_patch_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test/test_patch_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test/test_patch_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test/test_post_redirect_get_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test/test_post_redirect_get_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test/test_put_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test/test_put_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test/test_put_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test/test_put_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test/test_upsert_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test/test_upsert_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test/test_upsert_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test/test_upsert_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test_async/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test_async/__init__.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test_async/test_create_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test_async/test_create_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test_async/test_create_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test_async/test_create_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test_async/test_delete_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test_async/test_delete_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test_async/test_delete_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test_async/test_delete_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test_async/test_get_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test_async/test_get_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test_async/test_get_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test_async/test_get_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test_async/test_other_default_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test_async/test_other_default_value.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test_async/test_other_no_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test_async/test_other_no_alias.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test_async/test_other_single_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test_async/test_other_single_unique.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test_async/test_other_uuid_primary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test_async/test_other_uuid_primary.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test_async/test_patch_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test_async/test_patch_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test_async/test_patch_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test_async/test_patch_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test_async/test_post_redirect_get_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test_async/test_post_redirect_get_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test_async/test_put_many_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test_async/test_put_many_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/api_test_async/test_put_one_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/api_test_async/test_put_one_api.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/error_test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/error_test/test_create_null_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/error_test/test_create_null_type.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/error_test/test_pk_no_default_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/error_test/test_pk_no_default_value.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/error_test/test_use_composite_primary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/error_test/test_use_composite_primary.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/error_test/test_use_more_than_one_pk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/error_test/test_use_more_than_one_pk.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/error_test/test_use_more_than_one_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/error_test/test_use_more_than_one_unique.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/error_test/test_use_unique_and_composite_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/error_test/test_use_unique_and_composite_unique.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/error_test/test_use_unsupported_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/error_test/test_use_unsupported_type.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/error_test/test_use_unsupported_type_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/error_test/test_use_unsupported_type_2.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/error_test/test_use_unsupported_type_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/error_test/test_use_unsupported_type_3.py -------------------------------------------------------------------------------- /tests/test_implementations/test_sqlalchemy_table/error_test/test_use_unsupported_type_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tests/test_implementations/test_sqlalchemy_table/error_test/test_use_unsupported_type_4.py -------------------------------------------------------------------------------- /tutorial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tutorial/__init__.py -------------------------------------------------------------------------------- /tutorial/basic_usage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial/basic_usage/depencies_example_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tutorial/basic_usage/depencies_example_auth.py -------------------------------------------------------------------------------- /tutorial/basic_usage/quick_usage_with_async_SQLALchemy_Base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tutorial/basic_usage/quick_usage_with_async_SQLALchemy_Base.py -------------------------------------------------------------------------------- /tutorial/basic_usage/quick_usage_with_async_SQLALchemy_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tutorial/basic_usage/quick_usage_with_async_SQLALchemy_table.py -------------------------------------------------------------------------------- /tutorial/basic_usage/quick_usage_with_async_SQLALchemy_table_with_out_primary_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tutorial/basic_usage/quick_usage_with_async_SQLALchemy_table_with_out_primary_key.py -------------------------------------------------------------------------------- /tutorial/basic_usage/quick_usage_with_sync_SQLAlchemy_Base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tutorial/basic_usage/quick_usage_with_sync_SQLAlchemy_Base.py -------------------------------------------------------------------------------- /tutorial/foreign_tree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial/foreign_tree/async_m2m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tutorial/foreign_tree/async_m2m.py -------------------------------------------------------------------------------- /tutorial/foreign_tree/m2m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tutorial/foreign_tree/m2m.py -------------------------------------------------------------------------------- /tutorial/foreign_tree/sample_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tutorial/foreign_tree/sample_tree.py -------------------------------------------------------------------------------- /tutorial/relationship/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial/relationship/many_to_many.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tutorial/relationship/many_to_many.py -------------------------------------------------------------------------------- /tutorial/relationship/many_to_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tutorial/relationship/many_to_one.py -------------------------------------------------------------------------------- /tutorial/relationship/one_to_many.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tutorial/relationship/one_to_many.py -------------------------------------------------------------------------------- /tutorial/relationship/one_to_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tutorial/relationship/one_to_one.py -------------------------------------------------------------------------------- /tutorial/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tutorial/sample.py -------------------------------------------------------------------------------- /tutorial/sample_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tutorial/sample_case.py -------------------------------------------------------------------------------- /tutorial/sample_two_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisLuii/FastAPIQuickCRUD/HEAD/tutorial/sample_two_table.py --------------------------------------------------------------------------------