Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Google Cloud Functions Python Runtime Demo

License

NotificationsYou must be signed in to change notification settings

simonprickett/google-cloud-functions-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Demo Google Cloud Function showing use of the Python 3 runtime.Read my tutorial on Medium.

Deployment

$ gcloud components update$ gcloud components install beta$ gcloud beta functions deploy getUserDetails --runtime python37 --trigger-http --project <projectId>

Where<projectId> is your Google Cloud project ID.

Testing

Point a browser at:

https://<region>-<projectId>.cloudfunctions.net/getUserDetails

Where:

  • <region> is the Google Cloud region that you deployed to (e.g.us-central1)
  • <projectId> is your Google Cloud project ID

(the full URL that you need will be displayed in the output of thegcloud command when deploying the function).

You should see JSON representing a random user object pulled from the API that looks something like:

{  "cell": "0911-857-4769",   "dob": {    "age": 64,     "date": "1954-01-11T01:37:49Z"  },   "email": "محمدامين.پارسا@example.com",   "gender": "male",   "generator": "google-cloud-function",   "id": {    "name": "",     "value": null  },   "location": {    "city": "ایلام",     "coordinates": {      "latitude": "32.1895",       "longitude": "-138.2377"    },     "postcode": 41995,     "state": "کرمانشاه",     "street": "206 دکتر مفتح",     "timezone": {      "description": "Ekaterinburg, Islamabad, Karachi, Tashkent",       "offset": "+5:00"    }  },   "login": {    "md5": "c83471713279d94cb2a33a4b03a456cd",     "password": "lacrosse",     "salt": "B9vhBXeE",     "sha1": "09ff43c271437499467aab431df1bc522e1574a9",     "sha256": "f39c50bf339b6dd973e3dfdea0ddee451fc90cc5adb7580c8f386a2c9f2ff304",     "username": "orangeelephant750",     "uuid": "bcb042d5-7f52-47c1-b883-b296268bec07"  },   "name": {    "first": "محمدامين",     "last": "پارسا"",     "title": "mr"  },   "nat": "IR",   "phone": "014-57870431",   "picture": {    "large": "https://randomuser.me/api/portraits/men/40.jpg",     "medium": "https://randomuser.me/api/portraits/med/men/40.jpg",     "thumbnail": "https://randomuser.me/api/portraits/thumb/men/40.jpg"  },   "registered": {    "age": 6,     "date": "2011-10-26T06:05:55Z"  }}

Releases

No releases published

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp