mkinit icon indicating copy to clipboard operation
mkinit copied to clipboard

Auto-generate explicit readable __init__.py files without `import *`

Results 8 mkinit issues
Sort by recently updated
recently updated
newest added

Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4.5.0 to 4.7.0. Release notes Sourced from actions/setup-python's releases. v4.7.0 In scope of this release, the support for reading python version from pyproject.toml was added (actions/setup-python#669). -...

dependencies

**Describe the bug** ModuleNotFoundError: No module named 'ordered_set' **To Reproduce** Install module (I use poetry: poetry add mkinit) ```python mkinit -w --black --recursive --relative --nomods src/bot_abuse/api ``` **Desktop (please complete...

I have `.pyi` file with typings and mkinit ignores it and does not import

I use `mkinit` with `--recursive` flag Can I make to `mkinit` ignore some `__init__.py` files? I don't want these files to be generated automatically, I want to control them manually

Hi! First of all, thanks for this nice tool! I think this tool is something rarely perceived but a very common task for Python programmers and it is super welcome!...

enhancement

In ubelt util_const I have to use `__all__ = ['NoParam']` because mkinit does not extract the top level name from the following code: ```python try: NoParam except NameError: # pragma:...

**Describe the bug** Sorry, I did not check the source code, but most likely you parse something like `variable = ...` and do not expect to see `variable: type_hint =...

bug
help wanted

## Describe the bug Depending on the `__ignore__` variable position it can be kept or removed. ## To Reproduce ### :green_circle: No problems (`__ignore__` variable survives in the file): ```py...