PythonCoderAS

Results 125 comments of PythonCoderAS

I was thinking of adding an option to suppress errors, but then we come to the error where someone tries streaming, e.g. comments of a private subreddit they lost access...

Absolute genius, you just leaked your own tokens to GitHub. Also those are `mfa` tokens, which are used if you have 2FA on I think.

Absolute genius, you just leaked your own tokens to GitHub. Also those are `mfa` tokens, which are used if you have 2FA on I think.

> There exists another folder having same name of the deleted folder in the beginning, under '.virtualenvs' folder. > > ```shell > pipenv --venv > ``` > > This command...

> > I solve this by removing the previous virtualenv. > > Please, add a error msg if pipenv finds a folder in .virtualenvs with the same name of the...

Maybe there could be a way to take an Ormar model and return a Pydantic model (strip out all the database specific stuff and return that). That way, we could...

I think a small note that "`jsk py` uses [import expressions](https://github.com/Gorialis/jishaku/issues/173#:~:text=the%20module%27s%20PyPI%20page)" on the command's doc page wouldn't hurt.

> This is currently the oldest open PR on github... https://github.com/pulls?q=is%3Aopen+is%3Apr+sort%3Acreated-asc Still is even in 2023 and most likely will stay that way indefinitely

I had to modify the original SQL to this: ```py async def upgrade(db: BaseDBAsyncClient) -> str: return """ CREATE UNIQUE INDEX "uid_statistic_channel_f53e9b" ON "statistic" ("channel_id", "thread_id", "author_id", "month"); ALTER TABLE...