@@ -90,7 +90,7 @@ Output: ./cloudfn/target/index.js
90
90
This library works with [ pip] ( https://pypi.python.org/pypi ) OOTB. Just add your ` requirements.txt ` file in the root
91
91
of the repo and you are golden. It obviously needs ` pycloudfn ` to be present.
92
92
93
- ## Autentication
93
+ ## Authentication
94
94
Since this is not really supported by google, there is one thing that needs to be done to
95
95
make this work smoothly: You can't use the default clients directly. It's solvable though,
96
96
just do
@@ -101,11 +101,11 @@ from cloudfn.google_account import get_credentials
101
101
biquery_client = bigquery.Client(credentials = get_credentials())
102
102
```
103
103
104
- And everything is taken care of for you!! no more actions need be done.
104
+ And everything is taken care off for you!! no more actions need be done.
105
105
106
106
### Handling a http request
107
107
108
- look at the [ Request] ( https://github.com/MartinSahlen/cloud-functions-python/blob/master/cloudfn/http.py )
108
+ Look at the [ Request] ( https://github.com/MartinSahlen/cloud-functions-python/blob/master/cloudfn/http.py )
109
109
object for the structure
110
110
111
111
``` python
@@ -209,7 +209,7 @@ handle_bucket_event(bucket_handler)
209
209
210
210
### Handling a pubsub message
211
211
212
- look at the [ Message] ( https://github.com/MartinSahlen/cloud-functions-python/blob/master/cloudfn/pubsub.py )
212
+ Look at the [ Message] ( https://github.com/MartinSahlen/cloud-functions-python/blob/master/cloudfn/pubsub.py )
213
213
for the structure, it follows the convention in the [ Pubsub API] ( https://cloud.google.com/pubsub/docs/reference/rest/v1/PubsubMessage )
214
214
215
215
``` python
@@ -254,7 +254,7 @@ gcloud beta functions deploy my-topic-function --trigger-topic <topic> \
254
254
--stage-bucket < bucket> && cd ../..
255
255
```
256
256
257
- ### Adding support for packages that doesnt work
257
+ ### Adding support for packages that do not work
258
258
259
259
- Look at the build output for what might be wrong.
260
260
- Look for what modules might be missing.
0 commit comments