Kirk Strauser
Kirk Strauser
As of the most recent bridge software update (and perhaps earlier but I can't confirm), usernames seem to require 10 characters. ``` python >>> from bulby.client import HueBridgeClient >>> client...
The drupalmigrate.py controller (and post_build hook) ease migration from Drupal to Blogofile (as per [my writeup on how I did it](http://honeypot.net/2011/11/07/migrating-drupal-to-blogofile/). It has two parts: 1. makeindex() builds an index...
Hi gang! It's been a while! Python 2 is dead and Python 3 is the present. This PR removes Python 2 compatibility and starts adopting Python 3 features. It: -...
Python packaging is moving toward using [pyproject.toml](https://www.python.org/dev/peps/pep-0631/) to replace setup.py, requirements.txt, and other related files. This PR makes that change by: - Using [Poetry](https://python-poetry.org) to create a new pyproject.toml -...
I wanted to make the code prettier and more editor-friend. This PR: - Uses [Black](https://pypi.org/project/black/) to format the code - Uses [isort](https://pypi.org/project/isort/) to sort the imports at the top of...
Python 2 has less than a year of official support left. There's momentum toward dropping support for it from many major projects, with some coordination such as https://python3statement.org Is it...
This allows model-instantion-type overrides of strictness settings so that use cases like this work: ``` python class Inner(Model): expected_key = StringType() class Outer(Model): """docstring""" inner = ModelType(Inner) doc = {...
Based on the contents of `schematics/types/__init__.py` and `docs/api/types.rst`, I expected to be able to run `from schematics.types import ModelType`. However, that doesn't work and I have to explicitly `from schematics.types.compound...
We've learned a lot along the way. Knowing what you know now, if you were implementing Schematics from scratch, what would you do differently? I'm _not_ suggest we do this...
### Is there an existing issue for this? - [X] I have searched the existing issues ### Current Behavior On my iPad Pro 12.9”, both with and without a hardware...