Chris Dorsman

Results 4 issues of Chris Dorsman

I am trying to use Abstract Base Classes. But I find the documentation lacking on several points that makes the matter too 'abstract'. For example. There is no explanation on...

question

There are multiple references to Python versions that are officially EOL. And there is no support for newer versions yet.

enhancement

According to official Python documentation, setuptools is replaced in favor of pyproject.toml to define and package a Python project. In case of this project, transitioning from setuptools to pyproject.toml: No...

enhancement

Great work. But if I may add a point for improvement: In your __main__ file, I see that you have DB-creds hardcoded: `container.config.from_dict( dict( # DATABASE_URL="sqlite+pysqlite:///:memory:", DATABASE_URL="postgresql://postgres:password@localhost:5432/postgres", DATABASE_ECHO=False, DEBUG=True, )...