Marky
Marky4mo ago

Sub module not working with Python

pip install beem

from beemapi.exceptions import NumRetriesReached
pip install beem

from beemapi.exceptions import NumRetriesReached
Works fine locally, but on Windmill it gets confused as beem is the main module, and beemapi is installed with (along with a few others). All from beem... works fine (like from beem import Hive). It just can't handle the other modules installed with it. https://github.com/windmill-labs/windmill/issues/4015
GitHub
bug: Python Sub Modules cannot be discovered · Issue #4015 · windmi...
Describe the bug When installing a Python package that includes multiple top level classes, the auto importer can't find all of them. To reproduce pip install beem from beemapi.exceptions impor...
5 Replies
antonioalves
antonioalves4mo ago
Dependencies in Python | Windmill
In Windmill standard mode, dependencies in Python are handled directly within their scripts without the need to manage separate dependency files.
Marky
Marky4mo ago
No, I will have a look That didn't help It cannot find beemapi even though it is part of beem
antonioalves
antonioalves4mo ago
No description
antonioalves
antonioalves4mo ago
it works fine here
Marky
Marky4mo ago
Thanks! I was doing this #requirements: #beem #beemapi This actually solves my other question too, thanks! I was able to use this to do a git+github link to a package.