exe файл psycorg2
print(users3 is users) # False
print(users["+5555555"] is users3["+5555555"]) # True
users["+5555555"]=True
print(users["+5555555"] is users3["+5555555"]) # False
A requirements.txt must be present at the root of your application's repository to deploy.
To specify your python version, you also need a runtime.txt file - unless you are using the default Python runtime version.
Current default Python Runtime: Python 3.6.7
Alternatively, you can provide a setup.py file, or a Pipfile. Using Pipenv will generate runtime.txt based on python-version at build time.