Hi, First, I'm new to python & GAE so sorry if this questions sounds simple.
I have a little desktop app, which answer user queries. The answers to the queries are based of a CSV file. My intention is to have users querying the system online. There are NO writes to these data source, just reads. The CSV looks like that: A, 1,2,3 B, 2,3 C, 5,6,7,8,9 D, 1. etc... One thing to keep in mind is that every row has it own number of elements (and we are talking about 100s of elements in each row). This is the flow of the desktop program: ----- 1. load the CSV file into OBJ 2. while user input 2.1 query OBJ 2.2 write response ----- I'm using Google guest book tutorial <https://developers.google.com/appengine/docs/python/gettingstarted/>and would like to: - Load the data into OBJ which will be a "static" (static - java meaning, not sure what the python equivalent lingo) parameter Then I will use OBJ as part of a webapp.RequestHandler What is the best way to do it? Good advice will be appreciated! -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/wYNKl_0UYosJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
