northtree

Results 17 comments of northtree

It works on public repo, but returns HttpError for organization repos.

@tc-imba where to import `is_`?

For `IS NOT NULL`, you could use `is_not` > where(Hero.age.is_not(None))

@angel-langdon did you manage to have `column_property` from select?

@Calvo94 Can you paste your code for multithreading? Maybe I can help to resolve it.

The following example is from https://sqlmodel.tiangolo.com/tutorial/many-to-many/link-with-extra-fields/ ```python from typing import List, Optional from sqlmodel import Field, Relationship, Session, SQLModel, create_engine, select class HeroTeamLink(SQLModel, table=True): team_id: Optional[int] = Field( default=None, foreign_key="team.id",...

The example code should resolve @88Ocelot 's question. @wscullen could you share your model definition

@frostming, https://pipenv.readthedocs.io/en/latest/advanced/#support-for-environment-variables > Pipenv supports the usage of environment variables in place of authentication fragments in your Pipfile. These will only be parsed if they are present in the [[source]]...

@andyneff It seems that `PipfileParser` was only used for testing? I couldn't find other code to import `PipfileParser` (and call `inject_environment_variables`). ``` ➜ pipenv git:(master) rg PipfileParser tests/unit/test_vendor.py 13:from pipfile.api...

I had same issue with you. After reading the source code, I found _input_value_ is deprecated after Sheet API v4. https://github.com/burnash/gspread/blob/c0a5a6d83083c467a647ab91bf1caaa1f829b5c7/gspread/models.py#L867 You could use `b3 = self.sheet.acell('B3', value_render_option='FORMULA')` to grab...