Reading a book about Python, the author shows a command in which you can create an Egg and upload of your package at PyPi (official python package repository). Basically using the command below:
python setup.py bdist_egg upload --identity="Jon Snow" --sign --quiet
I did not really understand exactly what this "Egg" would look like. Was it just a module? What is Python Egg? How can it actually be used?