Dict-typer

Latest version: v0.1.15

Safety actively analyzes 619038 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 3

0.1.13

0.1.12

Support base types other than list and dicts in the root

0.1.11

* Use TypeDict with `pass` body for empty dicts
* Various other fixes

0.1.10

Each TypedDict would have the `Type` postfix, which is now dropped (but still optional in code)

Before
python
class RootItem0Type(TypedDict):
Foo: str


RootType = List[RootItem0Type]


After
python
class RootItem0(TypedDict):
Foo: str


Root = List[RootItem0]

0.1.9

Add support for rich output with the rich library

![image](https://user-images.githubusercontent.com/3537289/81081309-a5e51780-8ee9-11ea-93af-d45b5d21a093.png)

0.1.8

Page 1 of 3

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.