404

[ Avaa Bypassed ]




Upload:

Command:

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

import os


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


def is_appengine_sandbox():
    return is_appengine() and not is_prod_appengine_mvms()


def is_local_appengine():
    return ('APPENGINE_RUNTIME' in os.environ and
            'Development/' in os.environ['SERVER_SOFTWARE'])


def is_prod_appengine():
    return ('APPENGINE_RUNTIME' in os.environ and
            'Google App Engine/' in os.environ['SERVER_SOFTWARE'] and
            not is_prod_appengine_mvms())


def is_prod_appengine_mvms():
    return os.environ.get('GAE_VM', False) == 'true'

Filemanager

Name Type Size Permission Actions
__pycache__ Folder 0755
_securetransport Folder 0755
__init__.py File 0 B 0644
_appengine_environ.py File 717 B 0644
appengine.py File 10.66 KB 0644
ntlmpool.py File 4.35 KB 0644
pyopenssl.py File 15.48 KB 0644
securetransport.py File 29.6 KB 0644
socks.py File 6.24 KB 0644