Geir Arne Hjelle
Geir Arne Hjelle
See https://github.com/gahjelle/pyplugs/community
Add contributor guidelines to project
Example: ``` >>> from pyconfs import Configuration >>> cfg = Configuration.from_dict({"a": {"b": {"c": 3}, "d": 4}}) >>> Configuration.from_str(cfg.as_str(format="toml", pretty_print=False), format="toml").as_dict() {'a': {'d': 4, 'b': {'c': 3}}} >>> Configuration.from_str(cfg.as_str(format="toml", pretty_print=True), format="toml").as_dict()...
Example: ```python >>> from pyconfs import Configuration >>> cfg = Configuration.from_dict({"a": {"b": 1}}) >>> cfg.a = [cfg.a] ``` This fails with a message `AttributeError: Configuration a has no entry 'update_from_list'`....
This is a draft for a script that can generate the `spherely.pyi` stub file. During the EuroSciPy 2024 sprint, I worked with @jorisvandenbossche on #43 . We realized that we...