1
vote
2answers
153 views
What is the simplest URL shortener application one could write in python for the Google App Engine?
Services like bit.ly are great for shortening URL’s that you want to include in tweets and other conversations. What is the simplest URL shortener application one could write in python for the Google …
1
vote
4answers
40 views
Automate interaction with a webpage in python
I want to automate interaction with a webpage. I've been using pycurl up til now but eventually the webpage will use javascript so I'm looking for alternatives . A typical interaction is "open the …
0
votes
2answers
216 views
Could not import Django settings into Google App Engine
Hello all you Google App Engine experts,
I have used Django a little before but am new to Google App Engine and
am trying to use it's development web server with Django for the first time.
I …
1
vote
2answers
105 views
GAE load data into datastore without using CSV
I've used bulkloader.Loader to load stuff into the GAE dev and live datastore, but my next thing to to create objects from non-CSV data and push it into the datastore.
So say my object is something …
1
vote
2answers
295 views
Use Google AppEngine datastore outside of AppEngine project
For my little framework Pyxer I would like to to be able to use the Google AppEngine datastores also outside of AppEngine projects, because I'm now used to this ORM pattern and for little quick hacks …
0
votes
3answers
107 views
Python syntax highlighting / Intellisense?
I've started messing around with Google App Engine, writing Java.
I love Visual Studio for many reasons, but currently my .py files just look like text.
I've searched the web looking for a way to …
0
votes
1answer
52 views
Django tagging migration to GAE
I have a Django app that use a django-tagging. I need to port this application to GAE. So, the main problem is to migrate tagging part. It has a complicated model, that should be rewritten to work …
0
votes
2answers
26 views
Can I find all of a certain base model in App Engine?
Given a class-like relationship:
class A(db.Model):
pass
class B(A):
pass
Can I get all of the base class? The query:
models.A.all().fetch(1)
returns an empty list.
1
vote
3answers
111 views
How can I make images so that appengine doesn’t make transparent into black on resize?
I'm on the google appengine, and trying to resize images. I do :
from google.appengine.api import images
image = images.resize(contents, w, h)
And for some images I get a nice transparent resize, …
1
vote
1answer
95 views
Dynamic URL’s inside Google’s AppEngine
Good Afternoon,
I'm currently trying to build something incredibly simple inside of the Google AppEngine. The goal is to build a simple photo sharing application that will connect back to my iPhone …
0
votes
3answers
37 views
GAE Image Posting to Datastore through Django Form
I'm working on a little side project that involves posting an avatar to a users profile page, seems straight forward enough. I'm following the instructions from the "Using the Images Python API" on …
1
vote
2answers
88 views
Puzzling App Engine Datastore Issue (ListProperty)
Ok so I have the same python code locally and in the gae cloud.
when I store an entity locally, the ListProperty field of set element type datetime.datetime looks like so in the Datastore Viewer:
…
1
vote
2answers
54 views
How do I create a unique property in python on google app engine?
In some database technologies, for a attribute in a record, you can guarantee uniqueness of that attribute within the entire database. An example of this might be a email_address attribute in a User …
2
votes
2answers
656 views
Django Custom Template Tags In Google App Engine
I am trying to include the following Tag In Google App Engine Web Application:
http://www.djangosnippets.org/snippets/1357/
Is there any configuration of this file to make it work with Google App …
2
votes
3answers
66 views
python script optimization for app engine
i have the following script i am using to scrap data from my uni website and insert into a GAE Db
from mechanize import Browser
from BeautifulSoup import BeautifulSoup
import re
import datetime
…
