Tagged Questions

A python egg is a file used for distributing python projects as bundles; it is usually compressed with the zip algorithm. Egg files normally include some metadata; the file extension is ".egg". The concept is very similar to a Java .jar file.

learn more… | top users | synonyms

29
votes
4answers
13k views

What is a Python egg?

Doing a quick search of SO, I didn't find anything, but feel free to just redirect me. Basically, I'm new to Python and just trying to understand how it's packages work. Presumably "eggs" are some ...
26
votes
3answers
4k views

Is there a python equivalent of Ruby's 'rvm'?

Q: Do we have anything functionally equivalent in Python to the Ruby version manager 'rvm'? (RVM lets you easily switch completely between different versions of the ruby interpreter and different ...
25
votes
2answers
12k views

How to create Python egg file

I have questions about egg files in Python. I have much Python code organized by package and I'm trying to create egg files. I'm following instructions, but they are very common. According to that, ...
18
votes
6answers
2k views

What are the advantages of packaging your python library/application as an .egg file?

I've read some about .egg files and I've noticed them in my lib directory but what are the advantages/disadvantages of using then as a developer?
13
votes
3answers
277 views

Do I have any obligations if I upload an egg to the CheeseShop?

Suppose I'd like to upload some eggs on the Cheese Shop. Do I have any obligation? Am I required to provide a license? Am I required to provide tests? Will I have any obligations to the users of this ...
11
votes
2answers
6k views

How to run Python egg files directly without installing them?

Is it possible to run Python egg files directly as you can run jar files with Java? example: java -jar jar-file
10
votes
3answers
8k views

How do I install an .egg file without easy_install in Windows?

I have Python 2.6 and I want to install easy _ install module. The problem is that the only available installation package of easy _ install for Python 2.6 is an .egg file! What should I do?
8
votes
1answer
645 views

Easy_install cache downloaded files

Is there a way to configure easy_install to avoid having to download the files again when an installation fails?
8
votes
1answer
4k views

Python packages and egg-info directories

Can someone explain how egg-info directories are tied to their respective modules? For example, I have the following: /usr/local/lib/python2.5/site-packages/quodlibet/ ...
7
votes
0answers
80 views

Adding man pages to a Python egg [closed]

Possible Duplicate: Python: Installing man pages in distutils based project I have a Python package which is a collection of scripts. Each script comes with its own command-line syntax, and ...
7
votes
2answers
386 views

Disadvantage of Python eggs?

Are there any disadvantages about using eggs through easy-install compared to the "traditional" packages/modules/libs?
7
votes
5answers
2k views

Python Code Organization Question : Eggs + Packages + Buildout + Unit Tests + SVN

I have several python projects that share common modules. Until now, I've been ... ahem ... keeping multiple copies of the common code and synchronizing by hand. But I'd clearly prefer to do something ...
7
votes
3answers
670 views

How do I turn a python program into an .egg file?

How do I turn a python program into an .egg file?
6
votes
1answer
2k views

How do I uninstall a Python module (“egg”) that I installed with easy_install?

I’ve installed a couple of Python modules using easy_install. How do I uninstall them? I couldn’t see an uninstall option listed in easy_install --help.
6
votes
2answers
971 views

Why does easy_install extract some python eggs and not others?

Looking in my /usr/local/lib/python.../dist-package directory, I have .egg directories and .egg files. Why does the installer choose to extra packages to the .egg directory, yet leave other files ...
6
votes
5answers
1k views

How can I make setuptools ignore subversion inventory?

When packaging a Python package with a setup.py that uses the setuptools: from setuptools import setup ... the source distribution created by: python setup.py sdist not only includes, as usual, ...
5
votes
2answers
1k views

How do I manage third-party Python libraries with Google App Engine? (virtualenv? pip?)

What's the best strategy for managing third-party Python libraries with Google App Engine? Say I want to use Flask, a webapp framework. A blog entry says to do this, which doesn't seem right: $ cd ...
5
votes
1answer
260 views

How to easy_install egg plugin and load it without restarting application?

I'm creating an app that downloads and installs its own egg plugins, but I have a problem loading the egg after easy_install extracts it into place. This is how it works now: App downloads egg into ...
5
votes
2answers
262 views

I created a Python egg; now what?

I've finally figured out how to create a Python egg and gotten it to work. Now... what do I do with it? How do I use it? How do I ensure that everything was correctly included? (Simple steps please... ...
5
votes
1answer
775 views

How to tell Buildout to install a egg from a URL (w/o pypi)

I have some egg accessible as a URL, say http://myhosting.com/somepkg.egg . Now I don't have this somepkg listed on pypi. How do I tell buildout to fetch and install it for me. I have tried a few ...
4
votes
2answers
396 views

How does Python keep track of modules installed with eggs?

If I have a module, foo, in Lib/site-packages, I can just import foo and it will work. However, when I install stuff from eggs, I get something like blah-4.0.1-py2.7-win32.egg as a folder, with the ...
4
votes
2answers
273 views

Python: Why do some packages get installed as eggs and some as “egg folders”?

I maintain a few Python packages. I have a very similar setup.py file for each of them. However, when doing setup.py install, one of my packages gets installed as an egg, while the others get ...
4
votes
1answer
747 views

Install python egg in buildout environment including data files

This question assumes that the python package I want to install is a django app that includes templates and media files. But the question is valid for any python package that does not only contain .py ...
3
votes
1answer
92 views

Does zc.buildout offer a lot more than pip when dealing with packages/eggs

We're all development team working on a Django site. Recently we've begun using zc.buildout inside a virtualenv. I can see how vritualenv helps you by making a sandboxed environment. After creating a ...
3
votes
2answers
103 views

Override a module in plone's eggs?

I want to override a method (assignment_mapping_from_key) in: eggs/plone.app.portlets-1.1.5.1-py2.4.egg/plone/app/portlets/utils.py ...because when I set a portlet in portlets.xml, I have to use a ...
3
votes
2answers
730 views

Where can I download binary eggs with psycopg2 for Windows?

I'm looking for binary eggs with psycopg2's binaries for Windows but can't find any. On http://initd.org/psycopg/download/ there's only source package and link to Windows port of Psycopg which ...
3
votes
1answer
144 views

Python Finding all packages inside a package, even when in an egg

Given a Python package, how can I automatically find all its sub-packages? I used to have a function that would just browse the file system, looking for folders that have an __init__.py* file in ...
3
votes
2answers
2k views

How to include a python .egg library that is in a subdirectory (relative location)?

How do you import python .egg files that are stored in a relative location to the .py code? For example, My Application/ My Application/library1.egg My Application/libs/library2.egg My ...
3
votes
4answers
5k views

Install MySQLdb (for python) as non-compressed egg

The install instructions are: $ python setup.py build $ sudo python setup.py install # or su first This gives me an .egg file. How do I tell the install to dump the files as a normal, uncompressed ...
3
votes
3answers
742 views

apache user can not write to .python-eggs

I have read that I need to set the PYTHON_EGG_CACHE environment variable, or install the python library as an uncompressed .egg Which do you suggest?
2
votes
1answer
56 views

Can Launch4J be set so that the exe files it creates cannot show its contents through zip/egg/rar file when right click on/ open with it?

Launch4J is a jar to exe converter. I used Launch4J to convert jar to exe but when I right click on that exe file Launch4J created, it shows the contents in the jar file (class, etc files) from which ...
2
votes
2answers
80 views

What is the difference between an 'sdist' .tar.gz distribution and an python egg?

I am a bit confused. There seem to be two different kind of Python packages, source distributions (setup.py sdist) and egg distributions (setup.py bdist_egg). Both seem to be just archives with the ...
2
votes
1answer
271 views

Emacs git plugin - egg

I have emacs egg plugin version 1.0.0 with me. I have git 1.7.4 version installed. I would like know how to push/pull changes to/from the repository. Any idea how to do that?
2
votes
1answer
141 views

Can I create a single egg for multiple versions of python?

We have a local system which runs via a series of eggs. At the moment this means everyone must have a copy of Python 2.5 installed. Is it possible to create an egg which can be used by Python 2.5, ...
2
votes
2answers
231 views

plone.app.jquerytools Bad version error while installing PloneFormGen

I am trying to install zettwerk.ui theme , i have added zettwerk.ui to eggs = then ran buildout and restarted plone but i didn't find the theme on the Addon page. here is buildout output ...
2
votes
1answer
203 views

How to fix a python egg?

I added a jabber support to my python bot by importing the xmppy library. However calling "import xmpp" attracts a few warnings: /usr/lib/python2.6/site-packages/xmpp/auth.py:24: ...
2
votes
3answers
373 views

What is the point of Python egg files?

When I run python setup.py install django, it generates an egg file. What is the usefulness of Python egg files?
2
votes
2answers
222 views

What is a good computer vision library for Python that will allow me to me to find faces in a Flash/HTML5 video?

I need to develop a script utilizing computer vision that will: Scan all frames of an Flash/HTML5 video for people's faces Identify the video frames that shows the faces looking directly at the ...
2
votes
2answers
260 views

Problem accessing config files within a Python egg

I have a Python project that has the following structure: package1 class.py class2.py ... package2 otherClass.py otherClass2.py ... config dev_settings.ini prod_settings.ini I wrote ...
2
votes
1answer
171 views

Override DEFINEs in setup.cfg in source eggs

The source egg of PySQLite 2.6.0 contains a file setup.cfg that looks like this: [build_ext] #define= #include_dirs=/usr/local/include #library_dirs=/usr/local/lib libraries=sqlite3 ...
2
votes
4answers
603 views

egg git interface for emacs, commit message empty

I'm using egg (emacs got git) as git interface in emacs. Whenever I try to achieve a commit --amend, I receive a "GIT-COMMIT-AMEND> Aborting commit due to empty commit message". This is what i do: ...
2
votes
2answers
2k views

How to unzip python eggs?

I'm trying to bundle some egg dependencies when using py2exe and as stated on the py2exe site, it doesn't work with those and I need to unzip them first. I've tried to first run easy_install -m lxml ...
2
votes
3answers
590 views

force unpacking of certain egg directories

I have an egg distribution of a PyQt application which i build myself, and it contains sphinx generated documentation. When i call the help file from the application it opens the sphinx index.html in ...
2
votes
3answers
157 views

I'd like some advice on packaging this as an egg and uploading it to pypi

I wrote some code that I'd like to package as an egg. This is my directory structure: src/ src/tests src/tests/test.py # this has several tests for the movie name parser src/torrent ...
2
votes
1answer
996 views

How to install a module as an egg under IronPython?

Maybe, it is a stupid question but I can't use python eggs with IronPython. I would like to test with IronPython 2.0.2 one module that I've developped. This modules is pure python. It works ok with ...
2
votes
1answer
451 views

How to make easy_install expand a package into directories rather than a single egg file?

How exactly do I configure my setup.py file so that when someone runs easy_install the package gets expanded into \site-packages\ as a directory, rather than remaining inside an egg. The issue I'm ...
2
votes
1answer
1k views

How do I deactivate an egg?

I've installed cx_Oracle (repeatedly) and I just can't get it to work on my Intel Mac. How do I deactivate/uninstall it?
1
vote
0answers
48 views

How to share platform dependent python packages using source control?

Currently we keep project related python packages in a subversion directory, so when someone adds or removes one it will directly be available to others. Still, this method works well with Python ...
1
vote
2answers
83 views

How to distribute / access data files in Python egg?

I'm writing a Django application that is using pip & virtualenv to manage its development environment. One of the dependencies, pkgme, comes with many data files which are its "backends" and are ...
1
vote
1answer
59 views

Python eggs and module as plugin

I have these eggs: ~/test/lib/ ├── a-1.0-py2.7.egg │   ├── a │   │   ├── __init__.py │   │   └── __init__.pyc │   └── EGG-INFO │   └── ... ├── a.b-1.0-py2.7.egg │   ├── a │   │   └── b │   │   ...

1 2 3