0 votes
in Python by
recategorized by
How do you identify a package uniquely in python

1 Answer

0 votes
by

__init__.py helps the Python interpreter to recognise the folder as package. It also specifies the resources to be imported from the modules. If the __init__.py is empty this means that all the functions of the modules will be imported. We can also specify the functions from each module to be made available

Related questions

0 votes
asked Aug 21, 2022 in JAVA by sharadyadav1986
0 votes
asked Jul 14, 2022 in Go Semantics Supplemental by john ganales
...