All Projects → digitalocean → Godo

digitalocean / Godo

Licence: other
DigitalOcean Go API client

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Godo

Droplet kit
DropletKit is the official DigitalOcean API client for Ruby.
Stars: ✭ 482 (-56.06%)
Mutual labels:  api, digitalocean, hacktoberfest
Active Forks
Find active github forks of a repo https://git.io/vSnrC
Stars: ✭ 879 (-19.87%)
Mutual labels:  api, hacktoberfest
Apispec
A pluggable API specification generator. Currently supports the OpenAPI Specification (f.k.a. the Swagger specification)..
Stars: ✭ 831 (-24.25%)
Mutual labels:  api, hacktoberfest
Axios Module
Secure and easy axios integration with Nuxt.js
Stars: ✭ 998 (-9.02%)
Mutual labels:  api, hacktoberfest
Kroki
Creates diagrams from textual descriptions!
Stars: ✭ 774 (-29.44%)
Mutual labels:  api, hacktoberfest
Ftl
The Pi-hole FTL engine
Stars: ✭ 776 (-29.26%)
Mutual labels:  api, hacktoberfest
Innovative Hacktober
Make a pull request. Let's hack the ocktober in an innovative way.
Stars: ✭ 34 (-96.9%)
Mutual labels:  digitalocean, hacktoberfest
Do Agent
Collects system metrics from DigitalOcean Droplets
Stars: ✭ 552 (-49.68%)
Mutual labels:  digitalocean, hacktoberfest
Spongeapi
A Minecraft plugin API
Stars: ✭ 1,043 (-4.92%)
Mutual labels:  api, hacktoberfest
Dns Tool
A set of browser-based DNS tools for DigitalOcean Community.
Stars: ✭ 50 (-95.44%)
Mutual labels:  digitalocean, hacktoberfest
Js Api Client
Typeform API js client
Stars: ✭ 51 (-95.35%)
Mutual labels:  api, hacktoberfest
Stein
Use Google Sheets as your no-setup database
Stars: ✭ 726 (-33.82%)
Mutual labels:  api, hacktoberfest
Hacktoberfest 2020
Welcome to Open-source! Simply add your details to contributors | Repo for Hacktoberfest 2020 ✅
Stars: ✭ 621 (-43.39%)
Mutual labels:  digitalocean, hacktoberfest
Pizzly
The simplest, fastest way to integrate your app with an OAuth API 😋
Stars: ✭ 796 (-27.44%)
Mutual labels:  api, hacktoberfest
Client
DigitalOcean API v2 client for PHP
Stars: ✭ 604 (-44.94%)
Mutual labels:  api, digitalocean
Tiktok Api
The Unofficial TikTok API Wrapper In Python
Stars: ✭ 940 (-14.31%)
Mutual labels:  api, hacktoberfest
Goa
Design-based APIs and microservices in Go
Stars: ✭ 4,493 (+309.57%)
Mutual labels:  api, hacktoberfest
Githubapi
Swift implementation of Github REST API v3
Stars: ✭ 55 (-94.99%)
Mutual labels:  api, hacktoberfest
Hacktoberfest Simple Practice Programmes
A beginner-friendly open source repository to create your pull request.
Stars: ✭ 42 (-96.17%)
Mutual labels:  digitalocean, hacktoberfest
Json Api Dart
JSON:API client for Dart/Flutter
Stars: ✭ 53 (-95.17%)
Mutual labels:  api, hacktoberfest

Godo

Build Status GoDoc

Godo is a Go client library for accessing the DigitalOcean V2 API.

You can view the client API docs here: http://godoc.org/github.com/digitalocean/godo

You can view DigitalOcean API docs here: https://developers.digitalocean.com/documentation/v2/

Install

go get github.com/digitalocean/[email protected]

where X.Y.Z is the version you need.

or

go get github.com/digitalocean/godo

for non Go modules usage or latest version.

Usage

import "github.com/digitalocean/godo"

Create a new DigitalOcean client, then use the exposed services to access different parts of the DigitalOcean API.

Authentication

Currently, Personal Access Token (PAT) is the only method of authenticating with the API. You can manage your tokens at the DigitalOcean Control Panel Applications Page.

You can then use your token to create a new client:

package main

import (
    "github.com/digitalocean/godo"
)

func main() {
    client := godo.NewFromToken("my-digitalocean-api-token")
}

If you need to provide a context.Context to your new client, you should use godo.NewClient to manually construct a client instead.

Examples

To create a new Droplet:

dropletName := "super-cool-droplet"

createRequest := &godo.DropletCreateRequest{
    Name:   dropletName,
    Region: "nyc3",
    Size:   "s-1vcpu-1gb",
    Image: godo.DropletCreateImage{
        Slug: "ubuntu-20-04-x64",
    },
}

ctx := context.TODO()

newDroplet, _, err := client.Droplets.Create(ctx, createRequest)

if err != nil {
    fmt.Printf("Something bad happened: %s\n\n", err)
    return err
}

Pagination

If a list of items is paginated by the API, you must request pages individually. For example, to fetch all Droplets:

func DropletList(ctx context.Context, client *godo.Client) ([]godo.Droplet, error) {
    // create a list to hold our droplets
    list := []godo.Droplet{}

    // create options. initially, these will be blank
    opt := &godo.ListOptions{}
    for {
        droplets, resp, err := client.Droplets.List(ctx, opt)
        if err != nil {
            return nil, err
        }

        // append the current page's droplets to our list
        list = append(list, droplets...)

        // if we are at the last page, break out the for loop
        if resp.Links == nil || resp.Links.IsLastPage() {
            break
        }

        page, err := resp.Links.CurrentPage()
        if err != nil {
            return nil, err
        }

        // set the page we want for the next request
        opt.Page = page + 1
    }

    return list, nil
}

Versioning

Each version of the client is tagged and the version is updated accordingly.

To see the list of past versions, run git tag.

Documentation

For a comprehensive list of examples, check out the API documentation.

For details on all the functionality in this library, see the GoDoc documentation.

Contributing

We love pull requests! Please see the contribution guidelines.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].