Axel Örn Sigurðsson

Results 8 issues of Axel Örn Sigurðsson

By places, meaning things such as: - [x] homebrew for macOS with a custom tap - [ ] custom apt repo for ubuntu/debian? - [ ] ???? for windows?

https://pypi.org/project/desert/

```json {"foo": {"foo": 10}} ``` will result in ```python Traceback (most recent call last): File "/usr/local/opt/pyenv/versions/3.8.2/bin/dict-typer", line 8, in sys.exit(cli()) File "/usr/local/opt/pyenv/versions/3.8.2/lib/python3.8/site-packages/click/core.py", line 829, in __call__ return self.main(*args, **kwargs) File...

This "fixes" the issue of having recursive types, such as ```json { "foo": { "bar": { "foo": 10 } } } ``` which resulted in max recursion error. Now it...

Optionally support a naming map, to rename certain types. Mostly useful for pytyper.dev ## Input ```json { "foo": {"count": 1}, "bar": {"count": 2} } ``` ## Current output ```python class...

Minimal example: ```python [{"items": []}, {"items": [1, 2, 3]}] ``` should produce ```python from typing import List class RootTypeItem(TypedDict): items: List[int] RootType = List[RootTypeItem] ``` but now creates ```python from...

When an unknown data type is encountered, try to handle it: - [ ] If it's a class instance, track the `instance.__class__.__name__` and list as a comment in the imports

Some definitions might be annoyingly long, such as ```python itemsTuple: Tuple[Union[Set[Union[float, int]], int]], ``` so support extracting this out in a separate alias, such as ```python ItemsTupleType = Tuple[Union[Set[Union[float, int]],...