from prsaw import RandomStuff
rs = RandomStuffV2()
During import at the first line there is NameError: name 'RandomStuffV2' is not defined.
That error is noticed on the page https://pypi.org/project/prsaw/
from prsaw import RandomStuffV2
rs = RandomStuffV2()
from prsaw import RandomStuff
rs = RandomStuffV2()
During import at the first line there is NameError: name 'RandomStuffV2' is not defined.
That error is noticed on the page https://pypi.org/project/prsaw/
from prsaw import RandomStuffV2
rs = RandomStuffV2()