Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jiakuan/goamz
https://github.com/jiakuan/goamz
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jiakuan/goamz
- Owner: jiakuan
- License: other
- Created: 2013-06-26T03:33:58.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-06-26T06:41:28.000Z (over 11 years ago)
- Last Synced: 2023-03-23T12:50:16.399Z (over 1 year ago)
- Language: Go
- Size: 316 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# goamz
This is a go library of Amazon web services, which supports Google Appengine and was forked from this repo: [https://code.launchpad.net/~aefalcon/goamz/goamz-client](https://code.launchpad.net/~aefalcon/goamz/goamz-client)
The original goamz library is hosted here: [https://wiki.ubuntu.com/goamz](https://wiki.ubuntu.com/goamz)
## Table of Content
---------------------------------------
* [Installation](#installation)
* [Usage](#usage)
---------------------------------------## Installation
Simply install the package to your [$GOPATH](http://code.google.com/p/go-wiki/wiki/GOPATH "GOPATH") with the [go tool](http://golang.org/cmd/go/ "go command") from shell:
```
$ go get github.com/jiakuan/goamz/aws
$ go get github.com/jiakuan/goamz/ec2
```Make sure [Git is installed](http://git-scm.com/downloads) on your machine and in your system's `PATH`.
## Usage
Just import the library into your source code, and it's ready to use.
```
import (
"github.com/jiakuan/goamz/aws"
"github.com/jiakuan/goamz/ec2"
)
```