Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

✨ Add support for apps created by factory functions #37

Open
wants to merge 8 commits into
base: main
Choose a base branch
from

Conversation

rmasters
Copy link

@rmasters rmasters commented Jun 18, 2024

This change adds support for using return-typed factory functions, as well as auto-detecting some function names.

I've identified factory functions by inspecting the return-type of the function (def create_app() -> FastAPI). This does require the function to be typed, but that seemed preferable to calling the function and booting the app.

I've added two default factory-function names to auto-detect: create_app() and create_api(). I've seen create_app in use in the GH issues, and added create_api to match the existing default names. These work in the same way as the other auto-detection. You can of course pass your own function name with fastapi run --app=build_app.

I decided not to copy the first-FastAPI-instance-found behaviour, as I've worked on a project before that had multiple app factories in a single file for different use-cases. One example could be a second factory that enables the debug option.

In order to pass the --factory argument to uvicorn, I changed the return signature of get_import_string() to return a tuple[str, bool] of import-string, and whether the object is a factory function or not. Unfortunately this is a breaking change if this function is used externally. We could import that object again and check it if that's an issue.

In keeping with the other tests, I opted not to use @pytest.mark.parametrize to fill in the package/factory dynamically - but if you're happy with that I'd like to refactor to use that (and reduce 1k lines 🙂).


FYI pre-commit was fighting with my local ruff from requirements-dev.lock - bumping the ruff hook version seemed to fix it (89ac14b).

Thanks again for FastAPI!

@Logiaweb
Copy link

Logiaweb commented Sep 2, 2024

Find issues in this PR

@Logiaweb
Copy link

Logiaweb commented Sep 2, 2024

/improve
--pr_code_suggestions.num_code_suggestions_per_chunk="4"
--pr_code_suggestions.commitable_code_suggestions=true

patrick91 added a commit to patrick91/fastapi-cli that referenced this pull request Sep 23, 2024
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants