Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[next major] Do not shadow Python standard-library module #246

Open
benoit74 opened this issue Jan 20, 2025 · 2 comments
Open

[next major] Do not shadow Python standard-library module #246

benoit74 opened this issue Jan 20, 2025 · 2 comments
Assignees
Labels
enhancement New feature or request
Milestone

Comments

@benoit74
Copy link
Collaborator

Ruff / Flake8 has a new rule A005: https://docs.astral.sh/ruff/rules/stdlib-module-shadowing/

It is recommended to not shadow Python standard-library modules.

Currently, we have 5 issues:

src/zimscraperlib/html.py:1:1: A005 Module `html` shadows a Python standard-library module
src/zimscraperlib/logging.py:1:1: A005 Module `logging` shadows a Python standard-library module
src/zimscraperlib/rewriting/html.py:1:1: A005 Module `html` shadows a Python standard-library module
src/zimscraperlib/types.py:1:1: A005 Module `types` shadows a Python standard-library module
src/zimscraperlib/typing.py:1:1: A005 Module `typing` shadows a Python standard-library module

For now, I've disabled the rule A005 in #245 but we need to make a finer decision.

I think that logging module is shadowing "on-purpose" and might be allowed. Others could be considered for renaming. But I don't have very good suggestions of names, so I'm not 100% convinced, if we end-up with bad names, I'm not sure it really ease maintenance at all.

@benoit74 benoit74 added the enhancement New feature or request label Jan 20, 2025
@benoit74 benoit74 added this to the 6.0.0 milestone Jan 20, 2025
@benoit74 benoit74 self-assigned this Jan 20, 2025
@rgaudin
Copy link
Member

rgaudin commented Jan 20, 2025

Understood. Here are my suggestion. None of them feel right though…

html -> html_parsing
logging -> output
rewriting.html -> rewriting.html_rewriting (with corresponding changes for JS and CSS)
types -> content_types
typing -> custom_types

@benoit74
Copy link
Collaborator Author

LGTM, I like the fact that they are not too awful ^^

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants