sqlmodel icon indicating copy to clipboard operation
sqlmodel copied to clipboard

SQL databases in Python, designed for simplicity, compatibility, and robustness.

Results 350 sqlmodel issues
Sort by recently updated
recently updated
newest added

Bumps [mypy](https://github.com/python/mypy) from 1.4.1 to 1.11.2. Changelog Sourced from mypy's changelog. Mypy Release Notes Next release Mypy 1.11 We’ve just uploaded mypy 1.11 to the Python Package Index (PyPI). Mypy...

dependencies
python
internal

For users new to SQLModel, the documentation might be confusing. It is recommended to focus on explanations for Python 3.10+ or to include additional parenthetical notes explaining differences from earlier...

docs

### Privileged issue - [X] I'm @tiangolo or he asked me directly to create an issue here. ### Issue Content class SemanticChuck(SQLModel, table=True): """ """ id: int = Field(default=None, primary_key=True)...

### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....

question
investigate

Fixes the issue described in https://github.com/tiangolo/sqlmodel/discussions/982

bug

Bumps [pillow](https://github.com/python-pillow/Pillow) from 10.1.0 to 10.4.0. Release notes Sourced from pillow's releases. 10.4.0 https://pillow.readthedocs.io/en/stable/releasenotes/10.4.0.html Changes Raise FileNotFoundError if show_file() path does not exist #8178 [@​radarhere] Improved reading 16-bit TGA images...

dependencies
python

Updates the requirements on [pytest](https://github.com/pytest-dev/pytest) to permit the latest version. Release notes Sourced from pytest's releases. 8.2.2 pytest 8.2.2 (2024-06-04) Bug Fixes #12355: Fix possible catastrophic performance slowdown on a...

dependencies
python

Previously, when validating instance when a session was open and the model instance had a related object a new instance of this related object was created and added to the...

bug

### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....

question

I found that when `table=True` is set, pydantic becomes invalid for usage like `hero = Hero(name="Deadpond", secret_name="Dive Wilson", age="test")`. As [the document](https://sqlmodel.tiangolo.com/features/#based-on-pydantic) says `you get all of Pydantic's features, including...

feature