I profiled the startup time and found out that the library takes about `2.5s` to load. Usage ```py class MyClass: def __init__(self): import inflect super().__init__() self.inflector = inflect.engine() ```
I profiled the startup time and found out that the library takes about
2.5sto load.Usage