Posts by julien nascimento • 33 points
2 posts
-
0
votes2
answers324
viewsQ: Singleton pattern in Python
I was watching this article on how to create Singleton classes in Python (among many others), I found unnecessary so much programming technique for a really simple thing. Of course I could be wrong.…
-
2
votes1
answer107
viewsQ: How to import packages within other subpackages in Python?
I have the following structure on a project PacoteRaiz/ __init__.py Pacote1/ __init__.py Modulo1.py Pacote2/ __init__.py Modulo2.py If I want to use some function that is inside Modulo1.py in…