[google-appengine] how to add data content kept in two csv files and store them in a new entry

2009-05-14 Thread Nikhar Agarwal
how to add data content kept in two csv files and store them in a new entry Regards Nikhar Agarwal --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to

[google-appengine] how to add data content kept in two csv files and store them in a new entry

2009-05-14 Thread Nikhar
how to add data content kept in two csv files and store them in a new entry --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to

[google-appengine] csv files

2009-05-14 Thread Nik
Hi All, ::programming code has to be in python :: I have a problem in the task : i have two Csv files A B which has following contents: A file.csvB file.csv label a(4labels)3 users label b (7labels) 10 users label c (8labels)

[google-appengine] How to get Form values in Python code..

2009-05-14 Thread S K
Hi All, i am using one form in HTML that form contains First Name and Second Name fields and Submit Button, tell me that once user enter details and click on Submit Button, in back end Python code how can i get those two values, give me some sample code

[google-appengine] Re: Datastore usage ~ 80 times more than expected (Add your vote to a datastore usage accounting feature)

2009-05-14 Thread Paul Kinlan
Hi, The whole thing about datastore size is ***really*** frustating. I am using 30.94 GB for my app (twitterautofollow) and 1) I don't know where it is being consumed and 2) I don't trust the figures, I delete data and the size of the datastore never goes down, so effectively I feel like am

[google-appengine] Re: How to get Form values in Python code..

2009-05-14 Thread Nick Johnson (Google)
Hi S K, Please see Handling Forms with webapp in the getting started documentation: http://code.google.com/appengine/docs/python/gettingstarted/handlingforms.html For a more in depth reference, the WebOb documentation is helpful: http://pythonpaste.org/webob/reference.html#id1 -Nick Johnson

[google-appengine] Re: Application Identifiers

2009-05-14 Thread Nick Johnson (Google)
On Thu, May 14, 2009 at 12:36 AM, Sri sri.pan...@gmail.com wrote: Hi Nick, Asking an email-user to transfer an app name would work if email- users were that savvy (ok gmail users are a bit more techier than non- gmail users, but still asking them to log into appspot is a bit of a

[google-appengine] Re: Billing Invoices

2009-05-14 Thread George Moschovitis
Perhaps this forum is for developers only. Where should I ask this question? -g. On May 13, 1:21 pm, George Moschovitis george.moschovi...@gmail.com wrote: Does Google provide invoices for billed resources? Are these invoices compatible with EU regulations? The following fields are

[google-appengine] Re: Billing Invoices

2009-05-14 Thread Nick Johnson (Google)
Hi George, App Engine uses Google Checkout for billing. After taking your credit card details, it will send you a weekly receipt via email; but it does not send invoices. The receipts don't include VAT numbers. If you need further help, the people in the Google Checkout Merchants Forum are

[google-appengine] Re: Neat URLs for developing multiple applications on same development machine

2009-05-14 Thread kRON
Thanks, that worked like a charm! On May 13, 11:27 pm, Barry Hunter barrybhun...@googlemail.com wrote: Can you use ProxyPass? Pseudo apache config: VirtualHost ServerName myapp1 ProxyPass /http://localhost:8080/ /VirtualHost VirtualHost ServerName myapp2 ProxyPass

[google-appengine] Re: use of Django's forms.Form on GAE

2009-05-14 Thread Waldemar Kornewald
Hi Neal, On May 13, 8:36 pm, Neal nwalt...@sprynet.com wrote: I seemed to solved that problem by changing one import: from django import newforms as forms Now I'm trying to get a field from the form: TaskLog1.taskCode = form.cleaned_data['taskCode']; which is giving this error:

[google-appengine] Re: Cost of large inserts

2009-05-14 Thread Nick Johnson (Google)
On Wed, May 13, 2009 at 11:07 PM, GNS appeng...@gnsdm.com wrote: I would like to have it the sooner the better. I see free daily limit is 10 million requests, but since it's 1 billion rows I can't wait 3 months for it to complete. Has anyone experience of inserting way more than 10m in a

[google-appengine] Re: Customizing sender name when sending out emails

2009-05-14 Thread Nick Johnson (Google)
Hi Oliver, We currently have no plans to allow changing the sender address of emails to anything other than the signed in user or one of the app administrators. The reason for this is to help prevent abuse of the email functionality (for example, to send spam). -Nick Johnson On Wed, May 13,

[google-appengine] Anonymous Logging

2009-05-14 Thread Pancho
Hello, I would like to enable users to access and use my service even if they don't register. For that purpose I would like to put in a cookie a randomly generated userID that will used to access the service and re- use configurations and settings from previous sessions. If the user decides to

[google-appengine] Re: SMS Verification Help Form Broken

2009-05-14 Thread Nick Johnson (Google)
Hi David, Your personal account should now be activated. -Nick Johnson On Wed, May 13, 2009 at 9:41 AM, David david.fauth...@gmail.com wrote: Hi, I cannot succeed in using the sms issue form, even if I remove all the newline characters from my comment... I always have There were errors:

[google-appengine] Re: Unable to upload

2009-05-14 Thread Nick Johnson (Google)
Hi webclimber, This error is returned when you have signed up to App Engine, but have not yet received your invite to the Java preview. You should receive an email to that effect shortly, if you haven't already -Nick Johnson On Wed, May 13, 2009 at 3:36 PM, webclimber rgiud...@perinola.net

[google-appengine] Storing and Querying GPS Coordinates Effectively

2009-05-14 Thread mscwd01
I want to create a large database of GPS coordinates that can be queried by saying Return all coordinates that are within 'n' metres of [this coordinate]. I need it to be as efficient as possible so looping through all the coordinates in the datastore and calculating whether a coordinate is

[google-appengine] Re: Storing and Querying GPS Coordinates Effectively

2009-05-14 Thread Barry Hunter
try searching the archives for mutiny and/or geohash On 14/05/2009, mscwd01 mscw...@gmail.com wrote: I want to create a large database of GPS coordinates that can be queried by saying Return all coordinates that are within 'n' metres of [this coordinate]. I need it to be as efficient

[google-appengine] Re: Datastore usage ~ 80 times more than expected (Add your vote to a datastore usage accounting feature)

2009-05-14 Thread Sri
Howdy I agree with you paul. I just deleted the contents of my datastore (which took about 2 days - as if that amount of time is not wierd in itself, let alone 2 months), and at the end it was showing 130 meg (or 13% usage). What the? Sorry but what was the originaly argument against a

[google-appengine] Re: Datastore usage ~ 80 times more than expected (Add your vote to a datastore usage accounting feature)

2009-05-14 Thread Sri
Just to be fair, when I recently checked all the data had returned to 0% usage. But that doesnt explain the 3 entities i had uploaded 12 hours ago On May 14, 10:43 pm, Sri sri.pan...@gmail.com wrote: Howdy     I agree with you paul.  I just deleted the contents of my datastore

[google-appengine] Re: Datastore usage ~ 80 times more than expected (Add your vote to a datastore usage accounting feature)

2009-05-14 Thread Paul Kinlan
My main issue is that I can't account for the data, and I don't know how to trust the value that I am getting billed for. Paul 2009/5/14 Sri sri.pan...@gmail.com Just to be fair, when I recently checked all the data had returned to 0% usage. But that doesnt explain the 3 entities i had

[google-appengine] Re: csv files

2009-05-14 Thread djidjadji
Write a python script that does the following # Afile = open(Afile.csv) Alines = Afile.readlines() Afile.close() Bfile = open(Afile.csv) Blines = Bfile.readlines() Bfile.close() for lineA,lineB in zip(Alines,Blines): # convert the lines to

[google-appengine] Url Fetch

2009-05-14 Thread Paul Kinlan
Hi Guys, My Site www.twollo.com is having some issues connection to Twitter. I am just emailing to ask is anyone else on the App engine experiencing problems connecting to Twitter? I have test some of my other sites that use urllib and all appear to be able to make successful connections to

[google-appengine] Google app engine issues

2009-05-14 Thread Paul Kinlan
Hi Guys, My Site www.twollo.com is having some issues connection to Twitter. It is hosted on the Google App Engine. I am just emailing to ask is anyone else on the App engine experiencing problems connecting to Twitter? I have tested some of my other sites that use urllib on the Google App

[google-appengine] Re: how to add data content kept in two csv files and store them in a new entry

2009-05-14 Thread Jyoti Shete-Javadekar
If you have unique identifiers in both the csv files then you can insert entities using the data from one csv and then update those entities using the data from other csv file. If you don't have any unique identifier but all rows in the csv files have one on one association and are in the same

[google-appengine] SELECT __key__ costs more than SELECT *, what's reason?

2009-05-14 Thread oqhost
I have model: class Artist1(db.Model): album_id = db.IntegerProperty() artist_id = db.IntegerProperty() genre_id = db.IntegerProperty() name = db.StringProperty() price = db.FloatProperty() year = db.IntegerProperty() Simple code for fetching: def get(self): num =

[google-appengine] Re: SELECT __key__ costs more than SELECT *, what's reason?

2009-05-14 Thread Nick Johnson (Google)
Hi oqhost, You have your 'k' and 'a' arguments backwards - the 'k' queries are returning the full entities, while the 'a' queries are only returning keys! -Nick Johnson On Thu, May 14, 2009 at 5:52 PM, oqhost oqh...@gmail.com wrote: I have model: class Artist1(db.Model):  album_id =

[google-appengine] Re: SELECT __key__ costs more than SELECT *, what's reason?

2009-05-14 Thread oqhost
Ups... Sorry, end of working day, it's time to relax, not for study... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com

[google-appengine] Re: Determine IP or Country of request..?

2009-05-14 Thread Andrew Badera
You can use all the javascript you'd like to target window.parent and harvest the typical analytical info that's available client-side, and to generate requests against a server-side resource. As far as geolocating, there are services available that offer approximation, but not guarantees.

[google-appengine] Re: Determine IP or Country of request..?

2009-05-14 Thread codingGirl
Thanks Andy. so I can find out this info about 1.) info about the visitor of websiteXYZ which embeds our iframe AND 2.) info about websiteXYZ who embeds our iframe the visitor is watching ??? Sorry, I am a total beginner. Can you explain in a little more detail how this is possible...also I

[google-appengine] Re: google apps how to make a test url...

2009-05-14 Thread Aaron
I know that but the company had a previous programmer that made the site. He made some app that will test the site it's for testing purposes. For example the url would be dev.mydomain.com that would be the url where I can go to and check out how the site looks and test the functions of it.

[google-appengine] Using boolean information in the URL string..?

2009-05-14 Thread astrid.thuec...@googlemail.com
hi, I just want to tell me appengine that something is there or not - thus typically a boolean information. I want to tell the appengine by using an URL string that is either: http://example.appspot.com?propect=22isthere http://example.appspot.com?propect=22 isthere shall communicate to the

[google-appengine] help with python url mapping/script handlers to create queries

2009-05-14 Thread loopymonkey
Any help much appreciated. Looking for any guidance or links to tutorials/examples. If my handler is: handlers: - url: /profile/(.*?)/(.*) script: /employee/\2/\1.py what is needed in my employee.py script to make it so a url that inlcuded /profile/edit/manager would allow me to use edit

[google-appengine] Re: help with python url mapping/script handlers to create queries

2009-05-14 Thread Adam
I don't know that it can be done in the app.yaml definition, but you can define your handler as is and have the handler map the variables. If your app.yaml is: handlers: - url: /profile/* script: /employee.py and your main function in employee.py is: def main(): application =

[google-appengine] Re: Using boolean information in the URL string..?

2009-05-14 Thread Adam
leaving off the =value part of the name=value pair will not prevent name from being included in your dictionary of GET query parameters. You should be able to use something like: if isthere in request.params.keys(): # isthere is present else: # isthere is not present to check for it.

[google-appengine] Re: Url Fetch

2009-05-14 Thread Emil Kjer
Some restrictions is made to the urllib running in app engine due to security reasons. eg. urllib.fetch() is restricted to common HTTP ports like 80 and 443. On May 14, 5:47 pm, Paul Kinlan paul.kin...@gmail.com wrote: Hi Guys, My Sitewww.twollo.comis having some issues connection to Twitter.

[google-appengine] Re: Url Fetch

2009-05-14 Thread Emil Kjer
Some restrictions is made to the urllib running in app engine due to security reasons. eg. urllib.fetch() is restricted to common HTTP ports like 80 and 443. On May 14, 5:47 pm, Paul Kinlan paul.kin...@gmail.com wrote: Hi Guys, My Sitewww.twollo.comis having some issues connection to Twitter.

[google-appengine] Re: Url Fetch

2009-05-14 Thread Paul Kinlan
Hi Emil, The requests where plain http requests to port 80 on twitter. I am just trying to work out if it is related to Twitter's problems today, Google's problem's or something else. One of the devs at twitter suggested it was a rate limiting issue, but I have never seen these problems before

[google-appengine] Re: Neat URLs for developing multiple applications on same development machine

2009-05-14 Thread Emil Kjer
This is an alternative: VirtualHost *:80 ServerName myapp1 RewriteEngine On RewriteRule ^/(.*) http://localhost:8080/$1 [P,L] /VirtualHost VirtualHost *:80 ServerName myapp2 RewriteEngine On RewriteRule ^/(.*) http://localhost:8081/$1

[google-appengine] Re: Using boolean information in the URL string..?

2009-05-14 Thread Sylvain
or do this http://example.appspot.com/?propect=22isthere=0 or http://example.appspot.com/?propect=22isthere=1 then you do something like that isthere = req.get('isthere','1') == '1' Then you can get a boolean true (default)/false On 14 mai, 22:04, Adam adam.crossl...@gmail.com wrote: leaving

[google-appengine] Re: google apps how to make a test url...

2009-05-14 Thread Emil Kjer
You can manage your app engine apps via. the dashboard for google apps for your domain. I think it requires you to be an admin of the domain but you can give it a shot at: https://www.google.com/a/cpanel/REPLACE WITH YOUR DOMAIN/Dashboard Or, if you is added as an developer of the project you

[google-appengine] Re: Using boolean information in the URL string..?

2009-05-14 Thread codingGirl
I already happy if I do not violate any URL syntax specifications by just writing ishere Where can I find the specification that says I do it correctly? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App

[google-appengine] Re: Url Fetch

2009-05-14 Thread djidjadji
As discussed in this group: All twitter apps on GAE together are viewed by twitter.com as one app and are thus limited as a group. 2009/5/14 Paul Kinlan paul.kin...@gmail.com: Hi Emil, The requests where plain http requests to port 80 on twitter.  I am just trying to work out if it is

[google-appengine] Re: Using boolean information in the URL string..?

2009-05-14 Thread Nick Johnson (Google)
You want RFC 1738 (Uniform Resource Locators): http://www.faqs.org/rfcs/rfc1738.html and section 3.2 of RFC 2616 (HTTP): http://www.faqs.org/rfcs/rfc2616.html Neither spec actually requires that the query string take a particular form, other than specifying what characters are valid in that part

[google-appengine] Re: Url Fetch

2009-05-14 Thread Paul Kinlan
I would agree with that statement if weren't that every request is authenticated and in the past I have passed many thousand per hour. Only just today have I seen this error occur. Paul On 14 May 2009, at 22:47, djidjadji djidja...@gmail.com wrote: As discussed in this group: All

[google-appengine] Re: Url Fetch

2009-05-14 Thread Paul Kinlan
Also ( I forgot to put in my last reply ), the majority of my requests are posts, which aren't/rarely rate limited. Paul On 14 May 2009, at 22:47, djidjadji djidja...@gmail.com wrote: As discussed in this group: All twitter apps on GAE together are viewed by twitter.com as one app and

[google-appengine] Re: repoze.bfg web framework runs on GAE

2009-05-14 Thread Myroslav Opyr
Hi, I'd add up that we've Zope3 framework running at GAE with persistency and DatastoreStorage for ZODB. We've even managed to run sample Grok apps on GAE. More about an effort at http://talk.quintagroup.com/blogs/myroslav/zope-at-gae and

[google-appengine] Re: repoze.bfg web framework runs on GAE

2009-05-14 Thread Carlos de la Guardia
Hello, this is great. I tried to look into your svn repository, but it's restricted. Do you plan to make the code public? Congratulations, Carlos de la Guardia On Thu, May 14, 2009 at 5:54 PM, Myroslav Opyr myros...@quintagroup.comwrote: Hi, I'd add up that we've Zope3 framework running at

[google-appengine] API to get updated of app engine status

2009-05-14 Thread Coonay
is there api to get updated of app engine status: 1:when a new app is deployed to app engine(we can only search the registered app on gallery) 2:when an app is disabled. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[google-appengine] Re: Datastore usage ~ 80 times more than expected (Add your vote to a datastore usage accounting feature)

2009-05-14 Thread WeatherPhilip
Yeah -- I just checked this evening, and my database size has now dropped by 10% -- roughly in line with the number of entities that I had deleted. Maybe there is some cleanup process that only runs occasionally However, it is *really* frustrating not to know what aspect of your application

[google-appengine] Bulkloader and Preserving Key_Names

2009-05-14 Thread Devel63
What is best practice (or any way) to download and later upload key_names when using BulkLoader? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to

[google-appengine] Re: HOW to create label and filters using api ...can you provide me the code for it ...

2009-05-14 Thread Nik
tnx i have got the result .. On May 13, 5:25 am, Jason (Google) apija...@google.com wrote: I'm sorry, I don't follow. Are you trying to replicate labels and filters in your App Engine application? - Jason On Thu, May 7, 2009 at 11:32 PM, Nikhar nikhar...@gmail.com wrote: HOW to

[google-appengine] Assign id while doing appcfg upload.

2009-05-14 Thread newbie
hey guys n gals...i still haven't received any reply to ma question...i know it must be simple.so an explanation with an example wound be great.or u could guide me to a tutorial. the complete description of my problem is given in this link.

[google-appengine] Re: csv files

2009-05-14 Thread Nik
tnx...i am working on this task n hope ur idea cn be helpful... On May 14, 8:03 pm, djidjadji djidja...@gmail.com wrote: Write a python script that does the following # Afile = open(Afile.csv) Alines = Afile.readlines() Afile.close()

[google-appengine] Re: Creating a filter using google api

2009-05-14 Thread Nik
tnxi have managed to complete my task .. On May 13, 5:04 pm, Big Stu stu.dohe...@gmail.com wrote: What is a filter in this context?  Is this a Java thing?  I've been listening in on the group conversation as a python developer.  I'm not following you guys. Thanks Stu On May 12,