QUESTION: Namespace Packages
See original GitHub issueWith namespace packages, you do not put the __init__.py
in the root of the namespace, does setup.py create one?
Issue Analytics
- State:
- Created 2 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Problem with namespace packages: ModuleNotFoundError
I am using python3.7 and trying to get namespace packages to work, but having some module import issues. It is not clear to...
Read more >PEP 420 – Implicit Namespace Packages
Namespace packages are a mechanism for splitting a single Python package across multiple directories on disk. In current Python versions, an ...
Read more >I don't need `__init__.py`? PEP 420 and namespace ...
today I talk about namespace packages, what PEP 420 is, and why I don't use namespace packagesplaylist: ...
Read more >Python Namespace Packages - YouTube
python #setuptools #packaging #namespacing #django #papermergeIn this screencast we will learn about namespace packaging and few caveats ...
Read more >there's no documentation of how to package namespace ...
txt error: Namespace package problem: jaraco is a namespace package, but its __init__.py does not call declare_namespace()! Please fix it. (See the setuptools ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
It can but only if you use old-fashioned namespacing methods. Also, I don’t remember if you can have the top-level
freesoda
at all. But yes, if some of your namespace packages include it and others don’t, this will likely cause problems.so the parent package can’t have an
__init__.py
? in thefreesoda
namespace?