Insighttful

Results 9 comments of Insighttful

In regards to street suffix expansion, [this gist in Python](https://gist.github.com/Insighttful/67454d5156dd3cb1c3e3cdff8ab95cbb) is helpful if translated to libpostal, the concept remains the same.

Confirming same bug in `sqlacodegen = "^2.3.0.post1"` Works with 3.9.9rc2 with poetry also: ``` poetry remove sqlacodegen poetry add [email protected] ```

Having the same issue. Will anyone be assigned to this issue? ![image](https://github.com/facebook/prophet/assets/116014557/cebe283d-32eb-454a-8c48-7f6c6991d4fa)

> Fwiw I end up doing poetry export for chalice in my poetry projects @kapilt @mcsheehan Could you give a step by step of this workflow? Do you simply issue...

If an existing database has already been reflected into MetaData, how can create_model be used to dynamically create a SQLModel model? ```python from sqlmodel import Field, Session, SQLModel, create_engine, MetaData,...

Relevant: [How to dynamically define an SQLModel class](https://stackoverflow.com/a/74186459/1663382) > The create_model function has the optional __base__ parameter (as mentioned in the [docs](https://pydantic-docs.helpmanual.io/usage/models/#dynamic-model-creation)), which accepts any subclass (or sequence of subclasses)...

The following is a proof of concept that dynamically creates SQLModel models in-memory or to the file system which leverages [sqlacodegen](https://github.com/agronholm/sqlacodegen) and [sqlalchemy](https://docs.sqlalchemy.org/en/20/orm/extensions/automap.html#module-sqlalchemy.ext.automap) under the hood. #### Installs `pip install...

Maybe be related. When running a bash script from pre-commit that includes the export command with the latest plugin installed also receiving the warning message. ```yaml # pre-commit-config.yaml ... -...