python - How to add to google app engine flask website the user registration ability if it wasn't scheduled in application architecture -


i created website-app myself , become useful , many peoples wont use it. user management not scheduled in application architecture. there way easy add user registration each user have own google database tables same name? example of 1 "table":

class settings(db.model):     email = db.stringproperty()     link = db.linkproperty()     rating = db.stringproperty() 

how can separate data "table" between different users? search kind of wrapper don't need change current architecture.

you have remember there no concept of tables datastore can't have separate set of tables each user such.

you have few choices, 2 investigate are

  1. create separate app existing code base , each user runs own site. may not need code changes @ all

  2. if want complete separation of data each user in single app @ namespaces (thats how multi-tenancy implemented.)

however haven't provided clear definition of how want separate users etc.. there other approaches can take.


Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -