If searchquery is an integer that I am getting from a form; how do I convert it to string? As far as I understand this is the reason why the following code is not working (it works if searchquery is a string:

p = Pet.all().filter('score =', self.request.get('searchquery')).fetch(10)

Thank you

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Is this Python? I'm assuming so. In which case, use int():

p = Pet.all().filter('score =', int(self.request.get('searchquery'))).fetch(10)
link|improve this answer
Hi, Thanks. But can you explain why this works. Intuitively, I would think to use str()? – Zeynel Oct 17 '10 at 3:27
@Zeynel: int() converts things to ints. str() converts things to strings. What about that doesn't make sense? – Matt Ball Oct 17 '10 at 3:29
This is how I was reasoning: I enter an integer into the search form; but the "searchquery" in the query needs to be string. So I was trying to convert "searchquery" to string. But obviously this is wrong; because int() the way you had it works. Thanks anyway; I appreciated. – Zeynel Oct 17 '10 at 3:38
3  
@Zeynel: when you type anything in, you're entering strings. It's not magically an int just by being a string consisting solely of [0-9]. – Matt Ball Oct 17 '10 at 3:43
What Matt Ball said, request.get returns a string but the filter logic requires an int as I assume you have made 'score' an IntegerProperty in the Pet class. – pthulin Oct 17 '10 at 15:49
feedback

I think you need to convert an Integer to a string as far as i understand therefore use str(int) in this case : p = Pet.all().filter('score =', self.request.get(str('searchquery'))).fetch(10)

link|improve this answer
You've got it backwards, my friend. str() converts things to strings. – Matt Ball Oct 17 '10 at 3:25
And str('searchquery') is a no-op, 'searchquery' is already a string. – Jason Hall Oct 17 '10 at 14:13
@Jason : yes but here in this question Zeynel assumes 'searchquery' is an integer therefore he needs to convert it to a string. – Keshan Oct 17 '10 at 15:05
@Keshan Then you want to do str(self.request.get('searchquery')) – Jason Hall Oct 17 '10 at 17:56
ah ok sorry for the mistake :) Thanks Jason... – Keshan Oct 17 '10 at 18:04
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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