Dan Norman

Results 87 comments of Dan Norman

Two clarifying questions: 1. You don't need `.\.meltano\run\bin` explicitly just the ability for `MeltanoInvoker.invoke()` to call `meltano`? 2. In a simple single shared production server scenario (multiple people logging in...

Looking at the airflow-files meltano.py it checks for the presence of the `.\.meltano\run\bin` file and then has a fallback of `meltano` being present in the PATH. ``` if not Path(PROJECT_ROOT).joinpath(MELTANO_BIN).exists():...

The upgrade completes in the background at least in a new python virtual environment and newly initialized project. Once the button is pushed and the upgrade is kicked off the...

I created a new issue #6467 for the `Win32 application` error and submitted a PR to fix the issue #6468 .

@edgarrmondragon I ran across `rapidjson` it isn't as fast as `msgspec` it is close to `ujson`. The neat thing is it handles `decimals.Decimals` just like `simplejson`. ### rapidjson ``` >>>...

> If rapidjson is a main stream library going forward and it support decimal correctly unlike orjson I would advocate picking that. I really like how `python-rapidjson` works but the...

I have been playing with the three JSON libraries mentioned in this issue and thought it might be good to publish my somewhat working versions of the SDK utilizing them...

> I'd be happy to push a fix upstream for this, supporting string subclasses as keys in a dict seems like a fine thing to support builtin. I've opened https://github.com/jcrist/msgspec/issues/450...

> > One nice touch was the json.format and option indent=0 which returns JSON on one line and adds a single space between items. > > While this works, it...

> > I'd be happy to push a fix upstream for this, supporting string subclasses as keys in a dict seems like a fine thing to support builtin. I've opened...