Peter Bittner
Peter Bittner
PyClean now has a `--debris` option that allow us to simplify the related Tox configuration section.
The organization I work with uses Nexus as a proxy for downloading installable artifacts and Sonartype Repository Firewall to scan those artifacts. It blocks [html5validator](https://pypi.org/project/html5validator/) v0.4.2 (e.g. when installed using...
The edit form of a submission (talk or workshop) has a "Mastodon handle" input field. As someone becoming less experienced with social media every day, I'm tempted to enter only...
The test examples in the README favor class-based over function-based tests. Clearly, you're inheriting from DRF test classes and go from there. Is this a concious choice or more of...
I have started using [docopt-dispatch](https://pypi.org/project/docopt-dispatch/) and I find it very intriguing. It makes docopt CLI code super-concise and readable. Unfortunately, that package both has [docopt](https://pypi.org/project/docopt/) as a hard dependency and...
As of today, this Django app only provides a way to ensure that a database, configured in your Django project, is reachable. The main use case for this is a...
When [multiple databases](https://docs.djangoproject.com/en/stable/topics/db/multi-db/) are configured Django will verify only the one configured as `'default'`. We should probably loop over all configured databases, check them in parallel, or provide some way...
We're using the Bitbucket+JIRA combo, hence we wouldn't create issues on Bitbucket. However, we'd like to link Sentry entries with the (potentially) **affected line of code** in one of our...
This repository doesn't provide a LICENSE file. Hence, despite the disclaimer in the README, the source code is governed by strict copyright (i.e. it is forbidden to copy, use, modify...
The code base is nice and small enough to run QA tools over it to enforce code quality without a lot of pain. I suggest you try out `flake8`, `pylint`...