How can you bundle all your python code into a single zip file?
You can automate most of the work with regular python tools. Let’s start with clean virtualenv. [zart@feena ~]$ mkdir ziplib-demo [zart@feena ~]$ cd ziplib-demo [zart@feena ziplib-demo]$ virtualenv . New python executable in ./bin/python Installing setuptools………….done. Installing pip……………done. Now let’s install set of packages that will go into zipped library. The trick is to force installing … Read more