Originally posted by **impredicative** May 8, 2024
In Python it is considered bad practice to use `from import *`. That's because the imported objects thne clutters the namespace, and it is not clear where the imports are coming from. This issue is manifest in the notebooks. The notebooks should be updated to use proper explicit imports, e.g. `from import foo, bar, etc` or `import `.
@hiohiohio
Discussed in https://github.com/alpacahq/alpaca-py/discussions/451