Questions tagged [gae-python27]

Google App Engine Python Runtime Environment.

App Engine executes Python application code using a pre-loaded Python interpreter in a safe "sandboxed" environment. The python app receives web requests, performs work, and sends responses by interacting with this environment.

A Python web app interacts with the App Engine web server using the WSGI protocol, so apps can use any WSGI-compatible web application framework. App Engine includes a simple web application framework, called webapp2, to make it easy to get started. For larger applications, mature third-party frameworks, such as Django, work well with App Engine.

33 questions
0
votes
1 answer

Errno 22 invalid mode('U') or filename

I'm facing error [Errno 22] invalid mode('U') or filename:' ' while creating exe file using cx_ Freeze in Python. my code includes some vbs file which are actually require to interact with Windows features. Those .vbs files are located in same…
0
votes
1 answer

Flask DebuggedApplication causing runtime error on Google App Engine

When I use the code app.wsgi_app = DebuggedApplication(app) which is recommended by https://stackoverflow.com/a/13821624/3164117 and a blog post I get a beautifully formatted error that the Flask debugger displays perfectly. Without that line of…
Daniel F
  • 340
  • 1
  • 3
  • 16
-4
votes
2 answers

Seeking Help: python2.7: working on this function; want to get input from "def proceed3()" to "def openChrome()"

How do i pass my website_name which is a URL, https://www.google.com/ for instance; from "def proceed3()" to "def openChrome()" ? Any Suggestions? from Tkinter import * def proceed3(): popup = Toplevel() popup.geometry("350x175+350+180") …
cyber-security47
  • 31
  • 1
  • 1
  • 6
1 2
3