[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.218.149.167: ~ $
"""
This module provides means to detect the App Engine environment.
"""

import os


def is_appengine():
    return is_local_appengine() or is_prod_appengine()


def is_appengine_sandbox():
    """Reports if the app is running in the first generation sandbox.

    The second generation runtimes are technically still in a sandbox, but it
    is much less restrictive, so generally you shouldn't need to check for it.
    see https://cloud.google.com/appengine/docs/standard/runtimes
    """
    return is_appengine() and os.environ["APPENGINE_RUNTIME"] == "python27"


def is_local_appengine():
    return "APPENGINE_RUNTIME" in os.environ and os.environ.get(
        "SERVER_SOFTWARE", ""
    ).startswith("Development/")


def is_prod_appengine():
    return "APPENGINE_RUNTIME" in os.environ and os.environ.get(
        "SERVER_SOFTWARE", ""
    ).startswith("Google App Engine/")


def is_prod_appengine_mvms():
    """Deprecated."""
    return False

Filemanager

Name Type Size Permission Actions
__pycache__ Folder 0755
_securetransport Folder 0755
.__init__.pyo.40009 File 172 B 0644
._appengine_environ.pyo.40009 File 1.91 KB 0644
.appengine.pyo.40009 File 9.38 KB 0644
.ntlmpool.pyo.40009 File 3.91 KB 0644
.pyopenssl.pyo.40009 File 18.76 KB 0644
.socks.pyo.40009 File 6.46 KB 0644
__init__.py File 0 B 0644
__init__.pyc File 172 B 0644
__init__.pyo File 172 B 0644
_appengine_environ.py File 957 B 0644
_appengine_environ.pyc File 1.91 KB 0644
_appengine_environ.pyo File 1.91 KB 0644
appengine.py File 10.78 KB 0644
appengine.pyc File 9.38 KB 0644
appengine.pyo File 9.38 KB 0644
ntlmpool.py File 4.06 KB 0644
ntlmpool.pyc File 3.91 KB 0644
ntlmpool.pyo File 3.91 KB 0644
pyopenssl.py File 16.19 KB 0644
pyopenssl.pyc File 18.76 KB 0644
pyopenssl.pyo File 18.76 KB 0644
securetransport.py File 31.64 KB 0644
securetransport.pyc File 24.53 KB 0644
securetransport.pyo File 24.44 KB 0644
socks.py File 6.87 KB 0644
socks.pyc File 6.46 KB 0644
socks.pyo File 6.46 KB 0644