It's my firs time trying to create and upload my own package. Here it is -> https://pypi.org/project/testeroozz/0.2/#files
The problem is that when I import testeroozz
and then run dir(testerooz)
on it - I don't see either of: sum_module
(the file holding the class), Summation
(the class) or great_summation
(the method). And so naturally I can't use either of those and get errors of the form:
AttributeError: module 'testeroozz' has no attribute 'sum_module'
AttributeError: module 'testeroozz' has no attribute 'Summation'
AttributeError: module 'testeroozz' has no attribute 'great_summation'
What am I doing wrong?