Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

⚡️ Lazy-load rich_utils to reduce startup time #1128

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

oefe
Copy link

@oefe oefe commented Jan 19, 2025

Lazy-load rich_utils (and rich.traceback) to reduce import time.

Fixes #744

There was some discussion in that issue about using lazyasd and if TYPE_CHECKING: in order to make the import known to type checkers and build tools that perform import analysis.

To keep it simple, I didn't go that route.
There are already a few lazy imports, so I think this doesn't change the big picture.
And lazyasd appears to be no longer maintained.

Let me know if you rather would use lazyasd and/or if TYPE_CHECKING:.

Benefit

This cuts down startup overhead by 45%. Below are some measurements (best of 5 runs).
Measured on a Mac mini (M4 pro).

Before

~/R/typer►time uv run docs_src/first_steps/tutorial001.py
Hello World

________________________________________________________
Executed in   94.19 millis    fish           external
   usr time   71.72 millis    0.15 millis   71.57 millis
   sys time   19.54 millis    1.76 millis   17.77 millis

before

After

~/R/typer►time uv run docs_src/first_steps/tutorial001.py
Hello World

________________________________________________________
Executed in   51.99 millis    fish           external
   usr time   37.36 millis    0.10 millis   37.26 millis
   sys time   12.77 millis    1.37 millis   11.39 millis

after

@svlandeg svlandeg added the feature New feature, enhancement or request label Jan 20, 2025
@bonastreyair
Copy link

I am also looking forward for this quick win, CLI should be faster than it is right now...

@svlandeg svlandeg self-assigned this Feb 17, 2025
@svlandeg svlandeg changed the title Lazy-load rich_utils to reduce startup time ⚡️ Lazy-load rich_utils to reduce startup time Feb 20, 2025
@N-Demir
Copy link

N-Demir commented Feb 25, 2025

+1

Copy link

@stinovlas stinovlas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me (I'm not a maintainer though).

I did follow the review process, downloaded and ran the code. Everything seems to be fine. This PR doesn't add any tests and I think that's OK, because the code is already tested and it's not changing behavior, it's just a performance optimization.

@oefe
Copy link
Author

oefe commented Mar 27, 2025

Originally, I thought the same. While the speedup is significant, it would be difficult to test reliably in a unit test, and I didn't want to introduce a flaky test.

But thinking about it again, I realize that it would be possible to assert that rich is not imported. This is deterministic and should be testable.

@oefe
Copy link
Author

oefe commented Mar 29, 2025

OK, added a test

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature New feature, enhancement or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants