All Projects → Colstuwjx → Awx Go

Colstuwjx / Awx Go

Licence: mit
AWX SDK for the Go programming language: https://github.com/ansible/awx

Programming Languages

go
31211 projects - #10 most used programming language

Labels

Projects that are alternatives of or similar to Awx Go

Dropbox Sdk Js
The Official Dropbox API V2 SDK for Javascript
Stars: ✭ 756 (+4347.06%)
Mutual labels:  sdk
Botframework Sdk
Bot Framework provides the most comprehensive experience for building conversation applications.
Stars: ✭ 6,673 (+39152.94%)
Mutual labels:  sdk
Sdk
The Dart SDK, including the VM, dart2js, core libraries, and more.
Stars: ✭ 7,539 (+44247.06%)
Mutual labels:  sdk
Alexa Skills Kit Sdk For Java
The Alexa Skills Kit SDK for Java helps you get a skill up and running quickly, letting you focus on skill logic instead of boilerplate code.
Stars: ✭ 758 (+4358.82%)
Mutual labels:  sdk
Compressonator
Tool suite for Texture and 3D Model Compression, Optimization and Analysis using CPUs, GPUs and APUs
Stars: ✭ 785 (+4517.65%)
Mutual labels:  sdk
Chat Sdk Ios
Chat SDK iOS - Open Source Mobile Messenger
Stars: ✭ 813 (+4682.35%)
Mutual labels:  sdk
Auth0.js
Auth0 headless browser sdk
Stars: ✭ 755 (+4341.18%)
Mutual labels:  sdk
Pesdk Ios Examples
A fully customizable photo editor for your app.
Stars: ✭ 837 (+4823.53%)
Mutual labels:  sdk
Sdk Js
Tanker client-side encryption SDK for JavaScript
Stars: ✭ 786 (+4523.53%)
Mutual labels:  sdk
Themoviedb
A node.js module with support for both callbacks and promises to provide access to the TMDb API
Stars: ✭ 5 (-70.59%)
Mutual labels:  sdk
Contentful.js
JavaScript library for Contentful's Delivery API (node & browser)
Stars: ✭ 769 (+4423.53%)
Mutual labels:  sdk
Autoupdateproject
App 内部更新 提供12种更新的样式 适配到Android 9.0 支持自定义UI 断点续传
Stars: ✭ 778 (+4476.47%)
Mutual labels:  sdk
Miniapp
微信小程序服务端 SDK (for Golang)
Stars: ✭ 815 (+4694.12%)
Mutual labels:  sdk
Aliyungo
Go SDK for Aliyun (Alibaba Cloud) - Golang API for ECS, OSS, DNS, SLB, RDS, RAM, MNS, STS, SLS, MQ, Push, OpenSearch, DM, Container Service etc.
Stars: ✭ 756 (+4347.06%)
Mutual labels:  sdk
Sfml
Simple and Fast Multimedia Library
Stars: ✭ 7,316 (+42935.29%)
Mutual labels:  sdk
Cpprestsdk
The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and interact with services.
Stars: ✭ 6,631 (+38905.88%)
Mutual labels:  sdk
Parse Php Sdk
The Parse PHP SDK.
Stars: ✭ 810 (+4664.71%)
Mutual labels:  sdk
Iran Onesignal
Avoid onesignal sanctions for IRAN. (Updated to v2.9.4)
Stars: ✭ 17 (+0%)
Mutual labels:  sdk
Sumologic Python
Sumologic's python api library
Stars: ✭ 6 (-64.71%)
Mutual labels:  sdk
Midiconstants
An unofficial MIDI SDK
Stars: ✭ 5 (-70.59%)
Mutual labels:  sdk

awx-go

Build Status Go Report Card codecov

AWX SDK for the Go programming language.

AWX-GO-ROBOT

Installing

If you are using Go 1.5 with the GO15VENDOREXPERIMENT=1 vendoring flag, or 1.6 and higher you can use the following command to retrieve the SDK. The SDK will be included.

go get -u github.com/Colstuwjx/awx-go

Example

We can simply import awx-go and call its services, such as PingService:

import (
    "log"
    awxGo "github.com/Colstuwjx/awx-go"
)

func main() {
    awx := awxGo.NewAWX("http://awx.your_server_host.com", "your_awx_username", "your_awx_passwd", nil)
    result, err := awx.PingService.Ping()
    if err != nil {
        log.Fatalf("Ping awx err: %s", err)
    }

    log.Println("Ping awx: ", result)
}

More examples can be found at here.

Roadmap

awx-go is still in development, and its roadmap could be found at here.

Contribute

There are many ways to contribute to awx-go.

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].