I am getting an rss feed and storing it in my db as TextProperty
MY DB:
class myFeedDB(db.Model):
content = db.TextProperty(required=True)
date = db.DateTimeProperty(auto_now=True)
this is my storing code:
newFeed = myFeedDB(content=db.Text(feed_data,
encoding="utf_8"))
When I get the data using:
feed_data = storedFeed.content.encode('utf-8')
It prints:
http://someurl.html%3F44bf6d3feed
instead of:
http://someurl.html?44bf6d3feed
The ? in the url is being replaced by its equivalent %3F
How do I fix it ?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
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
-~----------~----~----~----~------~----~------~--~---