Is anyone out there* using web2py?
Specifically:
- In production?
- With what database?
With Google Application Engine?
- by "out there" I mean at stackoverflow.
|
Is anyone out there* using web2py? Specifically:
| |||||
feedback
|
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.
|
You are welcome to ask the same question on the google group. You will find more than 500 users there and some of them are development companies building projects for their clients. My impression is that most of them use postgresql (that's what I do to) and some others use the Google App Engine. In fact web2py is the only framework that allows you to write code once and the same code will run on GAE, SQLite, MySQL, PostgreSQL, Oracle, MSSQL and FireBird (with the limitations imposed by GAE). You can find the Reddish (reddit clone) appliance with source code for GAE here Here you can find links to some productions app. Some are running on GAE. @Armin: Nothing is wrong with Django or Pylons. They are excellent frameworks. I have used them before developing web2py. There are a few things you can do with web2py that you cannot with them. For example:
There are many things that web2py does better (using a more coherent API) and faster (processing templates and generating SQL for example). web2py is also very compact (all modules fit in 265K bytes) and therefore it is much easier to maintain than those competing projects. You only have to learn Python and 81 new function/classes (50 of which have the same names and attributes as corresponding HTML tags, Anyway, the most important issue is that web2py is easier than Django, Pylons, PHP and Rails. You will also notice that web2py is hosted on both Google Code and Launchpad and there are not open tickets. All past issues have been resolved in less than 24 hours. You can also check on the google mailing list that all threads (10056 messages today) ended up with an answer from me or one of the other developers within 24 hours. You can find a book on web2py on Amazon. Armin, I know you are the developer of Jinja. I like Jinja but have different design philosophies. Both Django and Jinja define their own template languages (and Jinja in particular has excellent documentation) but I do prefer to use pure Python in templates so that my users do no need to learn a template language at all. I am well aware of the pros and cons of each approach. Let's the users decide what they prefer. No need to criticize each other. @Andre: db.table.field refers to the field object. 'table.field' is a field name. You can always pass a field object when a field name is required because str(db.table.field) is 'table.field'. The only case you are required to use a string instead of an object is when you need to reference by name a field that has not already been defined... perhaps we should move this discussion to the proper place. ;-) I hope you will decide to give web2py a try and, whether you like it or not, I would love to hear your opinion. | |||||||||
feedback
|
|
I started using web2py about 6 month ago. I choose it, because I wanted to move from PHP to Python, to have a more object-oriented approch because of the language featrues of python. The all-in-one approach of web2py is really amazing and makes the start very fast. As a former symfony user I soon started to miss Components and Forms that aren't dependend on table structure. Just with a simple registration form, I could not find a way to do the Form DRY. For me the real bugger was the form validation. I forgot the details, but I ended up with having form validation in the forms itself. Because some thing just didn't work else. Also the naming concept of capitalised words with that lot of repeated chars is just not my thing.
Sometimes the names have to be in quotes, sometimes not ... and if I looked at the examples or sites already made with web2py, I really didn't see that big step forward from using php. I recommend you: Look if web2py works for you. It would be nice, because the community and especially massimo (the creator) are very helpful and nice. Also you have a much quicker start, than with django, easier deployment and less hassle if you change your database models. | |||||
feedback
|
|
I'm using web2py for a small web app... it's running the HITs on a mechanical turk project, and giving me an interface to control and visualize them. I started on google app engine, but then got sick of the little annoyances of not having direct database access and having to wait forever each time I want to upload my code, and moved to a local server with postgres. GAE makes most things harder in order to make a few scaling things easier... stay away from it unless you really need their scaling help. I like web2py a lot. Compared to django and ror, it's WAY easier to learn and get going. Everything is simple. You get stuff done fast. Mossimo is everywhere solving your problems (even on this board haha). | |||
|
feedback
|
|
I am evaluating web frameworks for a long time now. I wrote my own (not open) frameworks in Perl and in PHP. Well, PHP has a builtin deadend and the whole infrastructure is still quite poor, but I did not want to go back to Perl, so I checked Python and the Python Web Frameworks like Django, Turbogears, Pylon and web2py. There are many things to think about, if you want to choose a codestack that is not your own and you will often scratch your head because there is still no "right way" to program things. However, web2py is my current favourite, because the author, despite beeing a "real programmer", keeps things easy! Just look at the comparison on web2py site - I was wondering why python frameworks like django or turbogears had to introduce such redundance and complicated syntax in their code - web2py shows, that it IS in fact possible to keep your syntax clean and easy! @Armin: could you please specify you criticism? Where exactly do you see web2py "bypassing Python semantics"? I can not understand, what you mean. I must admit that I am not that deep into python right now, but I see no problem with the web2py code - in fact, I think it is brilliant and one of the best frameworks available today. | |||
|
feedback
|
|
As Massimo points out above, the team at tenthrow uses web2py for tenthrow.com We did most of our development work during 2009. Our stack uses cherokee, web2py, postgresql, and amazon s3. We had done many python web implementations prior to this on a variety of frameworks and backends. To say that we simply could not have done tenthrow so quickly and easily without web2py is an understatement. It's the best kept secret in web development. | |||
|
feedback
|
|
There are some users listed here: http://mdp.cti.depaul.edu/who. | |||||
|
feedback
|
|
I'm starting to use it with Postgresql. But a long way off production... I've also played with Zope V2 and Ruby on Rails and really love the approach of web2py. | |||
|
feedback
|
|
I am not using web2py. But I had a look at the source code and it's horrible for so many reasons. For one the database definitions as well as the views and models and I don't know what, are evaluated against a global dictionary of values. It feels like PHP in that regard (it's bypassing Python semantics in name behaviour) and is very inefficient and I could imagine that it's hard to maintain. I have no idea where all that fuzz about web2py is coming from lately, but I really can't see a reason why anyone would want to use it. What's wrong with Django or Pylons? What does web2py do that you can't do with Django in a few lines of code with a better performance, code that's easier to read and on an established platform where tons of developers will jump in and fix problems in no time if they appear. (Well, there are exceptions I must admit, but in general the developers fix problems quickly) | |||||||||||||||||||||
feedback
|
|
I vote for Web2py. I only have time to develop small but useful stuff for my own use. Hopefully next month I will have an oppty to create an app that is perfect for Web2py and run on Google app engine. Web2py = breath of fresh air! | |||
|
feedback
|
|
I have been evaluating web frameworks for sometime now. I prefer web2py because it's easy to follow, compact yet powerful. | |||
|
feedback
|
|
Actually it's using MySQL, but it could switch to postgresql at a moments notice as web2py is so diverse :) | |||
|
feedback
|
|
I am using web2py in production with postgres on webfaction, and also on the GAE. | ||||
|
feedback
|
|
I like it because it is so tiny that I can easily distribute with my application. | |||
|
feedback
|
|
We started to use Web2py 7 mouth ago. We already have one application in produccion in El Prado (National Museum in Spain). We developed a app to check and automate all the systems, to make servers statistics, access statistics, etc. | |||
|
feedback
|
|
I used web2py for small projects so far, but I hope to introduce it in my company. It's my favorite web framework. My blog is running on GAE with web2py. I also have a facebook apps running on top of web2py: My Top 10 Gift | ||||
|
feedback
|
|
The Official (3rd Ed.) web2py Book states in Chapter 6, "Record Representation", that: "SQLite does not handle the decimal type so internally we treat it as a double." http://www.web2py.com/book/default/chapter/06#Record-Representation Can anyone confirm whether this applies only to SQLite? It's a bit ambiguous but sounds like it could be a general thing. If so, then it would be inadvisable to use web2py for any application involving processing of monetary transactions or scientific data, due to its internal conversion of decimals into doubles and vice versa as they go to and from the database. Such conversions may cause loss of precision in calculations, giving unexpected or erroneous results. If not then it is only inadvisable if SQLite is being used in a deployment. | |||
|
feedback
|
|
Well, I am using Web2Py professionally, with PostgreSQL, and on linux. I am working on my Social network named "Ourway". You may like some features of it like "Blog" part. | |||
|
feedback
|
|
http://www.noobmusic.com is using the Google App Engine. | |||
|
feedback
|