I'm a software developer. My goal with my opensource work is to help other people to develop better software faster.
My main projects are:
Allows you to write
def test_addition()
assert 5+5==snapshot()
and to change the snapshot to snapshot(10)
when you run pytest --inline-snapshot=create
Helps you to find bugs by minimizing python source files to the minimal amount of code which is necessary to reproduce the bug
Generates random python code, which is useful to test linter, formatter or other tools which work with python code.
Codecrumbs can be used to refactor code across space 🚀 and time ⏰. The idea is to annotate your python code with decorators which describe deprecations. These refactoring can then be applied by some one else in some other project which uses your library.
lazy-imports-lite allows you to use PEP 690 like lazy-imports enabled per package/library. The implementation is based on AST rewriting and can be used for python 3.8+.
Sponsoring allows me to invest more time in my open source projects.
Managing imports is difficult when the project grows in size.
Functions and classes gets moved or renamed.
canonical-imports
follows your imports and finds out where the things you are importing are actually defined. It can change your imports which makes your code cleaner and maybe even faster.
pandas integration for inline-snapshot.
def test_assert_equal():
df = DataFrame({"col0": [1, 2]})
assert_frame_equal(df, snapshot(DataFrame([{"col0": 1}, {"col0": 2}])))
I'm also collecting stars ✨, and your support by starring my projects would be awesome 🤩