[web2py] Using cxfreeze for creating web2py exe with custom libraries

2011-09-20 Thread Praneeth Bodduluri
Hello all, I have been looking at using cxfreeze to create a web2py standalone exe with custom libraries added in. Attached is the script used - Can be used if you want to repackage web2py's windows exe adding in custom libraries. One of the major advantages of using cxfreeze for creating the sta

Re: [web2py] Building web2py binary for windows with extra libs

2011-08-05 Thread Praneeth Bodduluri
Hello Syed, It is possible for you to rebuild the web2py exe adding in your required libraries. The following links might be of help: 1) http://eden.sahanafoundation.org/browser/static/scripts/tools/standalone_exe.py 2) https://groups.google.com/d/topic/web2py/Lirvj_J8q1U/discussion Regards,

Re: [web2py] web2py 1.96.2 is OUT & security warning

2011-06-03 Thread Praneeth Bodduluri
Updated on pypi -- Praneeth IRC: lifeeth On Fri, Jun 3, 2011 at 8:53 PM, Massimo Di Pierro wrote: > We fixed a few more bugs (strangely most of them preexisting 1.96.1). > We also addressed two security issues as I will explain later in this > email: > > here is am reporting the 1.96.1 changel

Re: [web2py] web2py 1.96.1 is OUT

2011-06-02 Thread Praneeth Bodduluri
Also available on pypi, get it while it's hot. On Jun 2, 2011 1:41 PM, "Miguel Lopes" wrote: > On Wed, Jun 1, 2011 at 7:40 PM, Jason Brower wrote: > >> Me does a dance. Thanks! >> And yes it makes rain :-) >>

Re: [web2py] Add gluon to global python path

2011-04-29 Thread Praneeth Bodduluri
You can do a "pip install web2py" that should put gluon in the global path. Try it in a virtualenv. -- Praneeth IRC: lifeeth On Fri, Apr 29, 2011 at 11:06 AM, luckysmack wrote: > Pretty much like the title says. This is also for things like when i > open up a i/b/python shell, it would be cool

Re: [web2py] web2py 1.95.1 and open issues

2011-04-25 Thread Praneeth Bodduluri
Also available at the cheese shop To install: pip install web2py To upgrade: pip install web2py --upgrade -- Praneeth IRC: lifeeth On Mon, Apr 25, 2011 at 7:49 PM, Stifan Kristi wrote: > great job, massimo n the others, i've download n test it. thank you so much. > > On Mon, Apr 25, 2011

Re: [web2py] MySQL, migration, and lower()

2011-04-20 Thread Praneeth Bodduluri
1) If you have no other schema changes a simpler solution would be to just change all your table names manually to lower. 2) Hook the new version to a blank db and let it generate a dummy sql table. swap the table with the one you changed the table names in step 1 -> after turning off web2py i.e.

Re: [web2py] Re: Python Message Queue

2011-04-07 Thread Praneeth Bodduluri
I was planning to, making web2py pip installable was a step towards this but got side tracked with academic work. Hoping to hack in DAL support for celery next month. -- Praneeth IRC: lifeeth On Wed, Apr 6, 2011 at 8:45 AM, pbreit wrote: > Was anyone able to make any progress with Celery? I am

Re: [web2py] web2py 1.94.6

2011-03-27 Thread Praneeth Bodduluri
Hello Massimo, I can help maintain the PyPI uploading for every new revision. -- Praneeth IRC: lifeeth On Sun, Mar 27, 2011 at 11:17 PM, Massimo Di Pierro wrote: > I can do it. Do you want to be in charge of it? > > Massimo > > On Mar 27, 2011, at 12:43 PM, Praneeth

Re: [web2py] web2py 1.94.6

2011-03-27 Thread Praneeth Bodduluri
Massimo, Now that we have a setup.py in the tree could you also upload the package to PyPI? http://pypi.python.org/pypi/web2py/ python setup.py sdist upload Should do it. Thanks, Praneeth IRC: lifeeth On Sun, Mar 27, 2011 at 10:52 PM, Massimo Di Pierro wrote: > Fixes some minor issues, incl

Re: [web2py] Re: setup.py to install web2py globally into the python env/virtualenv

2011-03-21 Thread Praneeth Bodduluri
ode to make > sure this is tracked. > > Massimo > > On Mar 20, 4:34 pm, Praneeth Bodduluri wrote: >> Hello all, >> >> In an attempt to make web2py pip installable, so that I can use gluon >> as a module in other python programs, I created a setup.py that ca

Re: [web2py] Re: How to build windows binary yourself?

2011-03-20 Thread Praneeth Bodduluri
We have used http://bazaar.launchpad.net/~flavour/sahana-eden/trunk/view/head:/static/scripts/tools/standalone_exe.py To build custom exes of web2py with certain modules added in. The above works with py2exe. Recently I have been using cxfreeze with my other projects - It appears to be way more s

[web2py] setup.py to install web2py globally into the python env/virtualenv

2011-03-20 Thread Praneeth Bodduluri
Hello all, In an attempt to make web2py pip installable, so that I can use gluon as a module in other python programs, I created a setup.py that can be used to create a source dist for PyPI. Attached are the files that need to be placed in the web2py root directory. To create the source distribut