Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/goblet/goblet
Goblet is an easy-to-use framework that enables developers to quickly spin up fully featured REST APIs with python on GCP
https://github.com/goblet/goblet
api-gateway cloudfunctions gcp goblet python
Last synced: about 1 month ago
JSON representation
Goblet is an easy-to-use framework that enables developers to quickly spin up fully featured REST APIs with python on GCP
- Host: GitHub
- URL: https://github.com/goblet/goblet
- Owner: goblet
- License: apache-2.0
- Created: 2020-02-24T23:23:56.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-06-18T20:50:05.000Z (6 months ago)
- Last Synced: 2024-08-13T00:22:29.961Z (4 months ago)
- Topics: api-gateway, cloudfunctions, gcp, goblet, python
- Language: Python
- Homepage: https://goblet.github.io/goblet
- Size: 8.59 MB
- Stars: 116
- Watchers: 6
- Forks: 29
- Open Issues: 42
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-google-cloud - Goblet - An open source library for serverless Python application development using Google Cloud functions. (Compute / Cloud Functions)
README
# GOBLET
![PyPI](https://img.shields.io/pypi/v/goblet-gcp?color=blue&style=plastic)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/goblet-gcp?style=plastic)
![Tests](https://github.com/goblet/goblet/actions/workflows/main.yml/badge.svg)
[![codecov](https://codecov.io/gh/goblet/goblet/branch/main/graph/badge.svg?token=g8TL6Sc0P5)](https://codecov.io/gh/goblet/goblet)Goblet is a framework for writing serverless rest apis in python in google cloud. It allows you to quickly create and deploy python apis backed by [Cloud Functions](https://cloud.google.com/functions) and [Cloud Run](https://cloud.google.com/run) as well as other GCP serverless services.
It provides:
* A command line tool for creating, deploying, and managing your api
* A decorator based API for integrating with GCP API Gateway, Storage, Cloudfunctions, PubSub, Scheduler, Cloudrun Jobs, BQ remote functions, Redis, Monitoring alerts and other GCP services.
* Local environment for testing and running your api endpoints
* Dynamically generated openapispec
* Support for multiple stagesYou can create Rest APIs:
```python
from goblet import Goblet, jsonify, goblet_entrypointapp = Goblet(function_name="goblet_example")
goblet_entrypoint(app)@app.route('/home')
def home():
return {"hello": "world"}@app.route('/home/{id}', methods=["POST"])
def post_example(id: int) -> List[int]:
return jsonify([id])
```You can also create other GCP resources that are related to your REST api:
```python
from goblet import Goblet, jsonify, goblet_entrypointapp = Goblet(function_name="goblet_example")
goblet_entrypoint(app)# Scheduled job
@app.schedule("5 * * * *")
def scheduled_job():
return jsonify("success")# Pubsub subscription
@app.pubsub_subscription("test")
def pubsub_subscription(data):
app.log.info(data)
return# Example Redis Instance
app.redis("redis-test")# Example Metric Alert for the cloudfunction metric execution_count with a threshold of 10
app.alert("metric",conditions=[MetricCondition("test", metric="cloudfunctions.googleapis.com/function/execution_count", value=10)])
```Once you've written your code, you just run goblet deploy and Goblet takes care of deploying your app.
```sh
$ goblet deploy -l us-central1
...
https://api.uc.gateway.dev$ curl https://api.uc.gateway.dev/home
{"hello": "world"}
```> Note: Due to breaking changes in Cloudfunctions you will need to wrap your goblet class in a function. See [issue #88](https://github.com/goblet/goblet/issues/88). In the latest goblet version (0.5.0) there is a helper function `goblet_entrypoint` that can be used as well.
> `goblet_entrypoint(app)`
## Resources Supported
#### Infrastructure
* vpc connector
* redis
* api gateway
* cloudtaskqueue
* pubsub topics
* bq spark stored procedures#### Backends
* cloudfunction
* cloudfunction V2
* cloudrun#### Routing
* api gateway
* http#### Handlers
* pubsub
* scheduler
* storage
* eventarc
* cloudrun jobs
* bq remote functions
* cloudtask target
* uptime checks#### Alerts
* Backend Alerts
* Uptime Alerts
* PubSub DLQ Alerts## Data Typing Frameworks Supported
* pydantic
* marshmallow## Installation
To install goblet, open an interactive shell and run:
```pip install goblet-gcp```
Make sure to have the correct services enabled in your gcp project depending on what you want to deploy
`api-gateway`, `cloudfunctions`, `storage`, `pubsub`, `scheduler`
You will also need to install [gcloud cli](https://cloud.google.com/sdk/docs/install) for authentication
## QuickStart
In this tutorial, you'll use the goblet command line utility to create and deploy a basic REST API. This quickstart uses Python 3.10. You can find the latest versions of python on the Python download page.
To install Goblet, we'll first create and activate a virtual environment in python3.10:
```sh
$ python3 --version
Python 3.10.10
$ python3 -m venv venv310
$ . venv37/bin/activate
```Next we'll install Goblet using pip:
```sh
python3 -m pip install goblet-gcp
```You can verify you have goblet installed by running:
```sh
$ goblet --help
Usage: goblet [OPTIONS] COMMAND [ARGS]...
...
```### Credentials
Before you can deploy an application, be sure you have credentials configured. You should run `gcloud auth application-default login` and sign in to the desired project.
### Creating Your Project
create your project directory, which should include an main.py and a requirements.txt. Make sure requirements.txt includes `goblet-gcp`
```sh
$ ls -la
drwxr-xr-x .goblet
-rw-r--r-- main.py
-rw-r--r-- requirements.txt
```You can ignore the .goblet directory for now, the two main files we'll focus on is app.py and requirements.txt.
Let's take a look at the main.py file:
```python
from goblet import Goblet, goblet_entrypointapp = Goblet(function_name="goblet_example")
goblet_entrypoint(app)@app.route('/home')
def home():
return {"hello": "world"}
```This app will deploy an api with endpoint `/home`.
### Running Locally
Running your functions locally for testing and debugging is easy to do with goblet.
```python
from goblet import Gobletapp = Goblet(function_name="goblet_example")
goblet_entrypoint(app)@app.route('/home')
def home():
return {"hello": "world"}
```Then run `goblet local`
Now you can hit your functions endpoint at `localhost:8080` with your routes. For example `localhost:8080/home`### Building and Running locally using Docker
Make sure Docker Desktop and Docker CLI is installed, more information located here:
Refresh local credentials by running: `gcloud auth application-default login`
Set the GOOGLE_APPLICATION_CREDENTIALS variable by running: `export GOOGLE_APPLICATION_CREDENTIALS=~/.config/gcloud/application_default_credentials.json`
To build container run: `docker build . -t `
To start container run:
```zsh
docker run -p 8080:8080 \
-v ~/.config/gcloud/application_default_credentials.json:/tmp/application_default_credentials.json:ro \
-e GOOGLE_APPLICATION_CREDENTIALS=/tmp/application_default_credentials.json \
-e GCLOUD_PROJECT= :latest
```#### Installing private packages during Docker Build
To install a private package located with GCP Artifact Registry, credentials will need to be mounted during the build process. Add this line to Dockerfile before requirements install:
```Dockerfile
RUN --mount=type=secret,id=gcloud_creds,target=/app/google_adc.json export GOOGLE_APPLICATION_CREDENTIALS=/app/google_adc.json \
&& pip install -r requirements.txt
```To build container run: `docker build . --secret id=gcloud_creds,src="$GOOGLE_APPLICATION_CREDENTIALS" -t `
### Deploying
Let's deploy this app. Make sure you're in the app directory and run goblet deploy making sure to specify the desired location:
```sh
$ goblet deploy -l us-central1
INFO:goblet.deployer:zipping function......
INFO:goblet.deployer:uploading function zip to gs......
INFO:goblet.deployer:function code uploaded
INFO:goblet.deployer:creating cloudfunction......
INFO:goblet.deployer:deploying api......
INFO:goblet.deployer:api successfully deployed...
INFO:goblet.deployer:api endpoint is goblet-example-yol8sbt.uc.gateway.dev
```You now have an API up and running using API Gateway and cloudfunctions:
```sh
$ curl https://goblet-example-yol8sbt.uc.gateway.dev/home
{"hello": "world"}
```Try making a change to the returned dictionary from the home() function. You can then redeploy your changes by running `golet deploy`.
### Next Steps
You've now created your first app using goblet. You can make modifications to your main.py file and rerun goblet deploy to redeploy your changes.
At this point, there are several next steps you can take.
Docs - [Goblet Documentation](https://goblet.github.io/goblet/build/html/index.html)
If you're done experimenting with Goblet and you'd like to cleanup, you can use the `goblet destroy` command making sure to specify the desired location, and Goblet will delete all the resources it created when running the goblet deploy command.
```sh
$ goblet destroy -l us-central1
INFO:goblet.deployer:destroying api gateway......
INFO:goblet.deployer:api configs destroying....
INFO:goblet.deployer:apis successfully destroyed......
INFO:goblet.deployer:deleting google cloudfunction......
INFO:goblet.deployer:deleting storage bucket......
```## Docs
[Goblet Documentation](https://goblet.github.io/goblet/build/html/index.html)
## Blog Posts
[Building Python Serverless Applications on GCP](https://austennovis.medium.com/building-python-serverless-applications-on-gcp-141a806eb7a5)
[Serverless APIs made simple on GCP with Goblet backed by Cloud Functions and Cloud Run](https://engineering.premise.com/serverless-apis-made-simple-on-gcp-with-goblet-backed-by-cloud-functions-and-cloud-run-730db2da04ba)
[Tutorial: Publishing GitHub Findings to Security Command Center](https://engineering.premise.com/tutorial-publishing-github-findings-to-security-command-center-2d1749f530bc)
[Tutorial: Cost Spike Alerting](https://engineering.premise.com/tutorial-cost-spike-alerting-for-google-cloud-platform-gcp-46fd26ae3f6a)
[Tutorial: Setting Up Approval Processes with Slack Apps](https://engineering.premise.com/tutorial-setting-up-approval-processes-with-slack-apps-d325aee31763)
[Tutorial: API Deployments with Traffic Revisions and Centralized Artifact Registries in Google Cloud Run](https://engineering.premise.com/traffic-revisions-and-artifact-registries-in-google-cloud-run-made-easy-with-goblet-1a3fa86de25c)
[Tutorial: Deploying Cloud Run Jobs](https://engineering.premise.com/tutorial-deploying-cloud-run-jobs-9435466b26f5)
[Tutorial: Connecting Cloudrun and Cloudfunctions to Redis and other Private Services using Goblet](https://engineering.premise.com/tutorial-connecting-cloudrun-and-cloudfunctions-to-redis-and-other-private-services-using-goblet-5782f80da6a0)
[Tutorial: Deploying BigQuery Remote Functions](https://engineering.premise.com/tutorial-deploying-bigquery-remote-functions-9040316d9d3e)
[GCP Alerts the Easy Way: Alerting for Cloudfunctions and Cloudrun using Goblet](https://engineering.premise.com/gcp-alerts-the-easy-way-alerting-for-cloudfunctions-and-cloudrun-using-goblet-62bdf2126ef6)
[Tutorial: Deploy CloudTaskQueues, enqueue CloudTasks and handle CloudTasks](https://engineering.premise.com/deploy-and-handle-gcp-cloudtasks-with-goblet-in-minutes-ee138e9dd2c5)
[Tutorial: Low Usage Alerting On Slack for Google Cloud Platform](https://engineering.premise.com/tutorial-low-usage-alerting-on-slack-for-google-cloud-platform-gcp-cc68ac8ca4d)
[Easily Manage IAM Policies for Serverless REST Applications in GCP with Goblet](https://engineering.premise.com/easily-manage-iam-policies-for-serverless-rest-applications-in-gcp-with-goblet-f1580a97b74)
[Serverless Data Pipelines in GCP using Dataform and BigQuery Remote Functions](https://engineering.premise.com/serverless-data-pipelines-in-gcp-using-dataform-and-bigquery-remote-functions-9ee235d0cb18)
## Examples
[Goblet Examples](https://github.com/goblet/goblet/blob/main/examples/main.py)
## Issues
Please file any issues, bugs or feature requests as an issue on our [GitHub](https://github.com/goblet/goblet/issues) page.
## Github Action
[Goblet Github Action](https://github.com/marketplace/actions/goblet-deploy)
## Roadmap
☑ Integration Tests \
☑ [Api Gateway Auth](https://cloud.google.com/api-gateway/docs/authenticate-service-account) \
☑ Configuration Options (function names, ...) \
☑ Use checksum for updates \
☑ Cloudrun Backend \
☑ [Scheduler](https://cloud.google.com/scheduler) trigger \
☑ [Pub Sub](https://cloud.google.com/pubsub/docs/overview) trigger \
☑ [Cloud Storage](https://cloud.google.com/functions/docs/calling/storage) trigger \
☑ [Cloudrun Jobs](https://cloud.google.com/run/docs/quickstarts/jobs/create-execute) trigger \
☐ [Firestore]( https://cloud.google.com/functions/docs/calling/cloud-firestore) trigger \
☐ [Firebase](https://cloud.google.com/functions/docs/calling/realtime-database) trigger \
☑ [CloudTask and CloudTask Queues](https://cloud.google.com/tasks/docs/dual-overview) \
☐ [Cloud Endpoints](https://cloud.google.com/endpoints/docs/openapi/get-started-cloud-functions) trigger \
☑ [EventArc](https://cloud.google.com/eventarc/docs) trigger \
☑ [Redis](https://cloud.google.com/memorystore) infrastructure \
☑ [BQ Remote Functions](https://cloud.google.com/bigquery/docs/reference/standard-sql/remote-functions) \
☑ Deploy API Gateway from existing openapi spec \
☑ Deploy arbitrary Dockerfile to Cloudrun \
☑ [Multi Container Deployments](https://cloud.google.com/blog/products/serverless/cloud-run-now-supports-multi-container-deployments) \
☑ Create Deployment Service Accounts \
☑ Automatically add IAM invoker bindings on the backend based on deployed handlers \
☑ [Uptime Checks](https://cloud.google.com/monitoring/uptime-checks)## Want to Contribute
If you would like to contribute to the library (e.g. by improving the documentation, solving a bug or adding a cool new feature) please follow the [contribution guide](CONTRIBUTING.md) and submit a [pull request](https://github.com/goblet/goblet/pulls).
## Want to Support
___
Based on [chalice](https://github.com/aws/chalice)