I decided to write a long introduction in order to give you a better idea of what I'm trying to achieve. This will be my first real... commercialy aimed application.

Disclaimer: Even though I've been reading anything I can get my hands on for the past 3 years regarding web dev and for the past year anything python related, I'm still pretty much a newb (alternative noob spelling accepted).

The application revolves around collections. Stamps,cards,coins etc. Users will be able to register, add to their collection from a predefined list of objects, show their collection, flag some of the objects for trading, keep track of trades etc. The predefined list of object will have around 20k objects with around 30-50 properties each.

Disclaimer 2: I could write this in php me thinks being the first tool I learned to web dev in but I'm pretty much in love with python at the moment so, I'm very biased towards it.

  1. Shall I stay with mySQL or dip my toes in noSQL watters? From what I've been reading noSQL might be overkill for what I'm trying to develop but... what do you think?
  2. Django? Or flask? I am leaning towards flask. Main reasoning behind that is that I .. understand it better then django after fiddleing with each for a couple of days.
  3. I'll probably host it on Rackspace to start with since it's the cheapest solution and is able to scale, although I would be really interested to hear opinions from somebody who hosts with VPS or Voxel . CloudHarmony speed tests show that both of them are better then rackspace but then again I don't know much about that service or how it does the testing.
  4. *nix distro? any difference between choices? Anything I should go with as de facto standard?
  5. webserver? middleware wsgi? wohooo way over my head here so if maybe somebody can point me into the direction of a tutorial on how to setup a production server would be awesome (been reading this article and it started to make more sense but still dont understand all of it. why do i need nginx for example)

Some of the questions I'm asking might seem really dumb but if maybe you keep in mind that everybody was in my position one time... :)

Thank you in advance for all your input (answers or comments)

Errata:

3bis. GAE? Amazon? Rackspace? Other cloud VM provider? Which one should I go with keeping in mind that I have a fool's wish to NEED to scale up. Also how easy would it be to switch afterwards? For example from GAE(bigtable) to another cloud vm provider(mySQL)(I understood that web2py DAL could work with both, how easy would it be to switch things around?)

5 I mean twisted,tornado,FAPWS etc. Which one is better?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted
  1. You have a highly structured dataset, with predictable elements. To me, this indicates that a traditional relational database would be a better fit than any of the NoSQL solutions - although they could be made to work.

  2. Flask is a micro-framework. It's best for small apps and web services. I like it a lot, but for you I'd definitely say Django would be better - it includes all the things you will need, like an admin interface, a user-authentication app, and a whole third-party ecosystem.

  3. To be honest you might be better off with a shared-hosting provider like Webfaction to start with. Much easier to get up and running.

  4. No difference, really. Personally I'm happiest with Debian or Ubuntu. I'd stay clear of Red Hat/Centos, since they include very old versions of Python. Whatever the distro, though, I'd recommend installing your framework manually, rather than relying on the distro's packages, since these are likely to be out of date.

  5. Easiest to get running is Apache with mod_wsgi. Not sure what you mean by middleware in this context. As I say though, use shared-hosting and they'll set it up for you.

link|improve this answer
1  
1. COULD be made to work usually means using a spoon to cut a stake. Indeed the data did look to me like it fitted more a relational db. 2. Why would you recomend Django over flask? Really interested in the answer. I look at flask as a base on which I try different approaces (for example sqlalchemy vs DAL from web2py like bob answered lower) 3. webfaction comes at 9$/mo if paid monthly rackspace at 12ish. I might stay with rackspace since I already have an account. 5. I mean twisted,tornado,FAPWS etc. Which one is better? 6. Anyone knows how to enter a new line in comments? :) – InnocentPixel Aug 2 '11 at 14:17
Accepted your answer even though I wish I'd have learned more. – InnocentPixel Aug 4 '11 at 8:40
feedback

web2py.com runs standalone or under various front end webservers is very self contained. \it also has several deployment scenarios documented

The DAL (db abstraction layer not an ORM) migrates well across several engines.

Well worth a look especially if you need a quick result without the django learning curve

link|improve this answer
1  
Blanchet I heard a lot of good things about the DAL from web2py but the framework itself I dont really like(no actual reason just a feeling sorry if it's stupid). Can I use the DAL with flask instead of sqlalchemy? – InnocentPixel Aug 2 '11 at 14:12
the components of web2py can be used separately no problem. The DAL can be used in a standalone fashion groups.google.com/forum/#!topic/web2py/VXv-odOVhHI groups.google.com/forum/#!topic/web2py/jRoYAj0ZGwU – Bob Blanchett Aug 3 '11 at 8:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.