12
Reading a book about Python, the author shows a command in which it is possible to create a Egg and make upload of your package on Pypi (python official package repository). Basically using the command below:
python setup.py bdist_egg upload --identity="Jon Snow" --sign --quiet
Actually I didn’t understand exactly what this "Egg" would be. Would it just be a module? What is Python Egg? How can it actually be used?
It is basically equivalent to
.jar
java?– Bruno Costa
@Brunocosta, yes, basically this.
– Jhonathan