README.md
author Mikael Berthe <mikael@lilotux.net>
Wed, 19 Apr 2017 11:11:48 +0200
changeset 139 7145e95b4f57
parent 137 acaea3179f4d
child 141 6068de3675c8
permissions -rw-r--r--
Update README
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
137
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
     1
# madon
2
10ffb25f0ca2 Basic README.
Ollivier Robert <roberto@keltia.net>
parents: 0
diff changeset
     2
137
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
     3
Golang library for the Mastodon API
2
10ffb25f0ca2 Basic README.
Ollivier Robert <roberto@keltia.net>
parents: 0
diff changeset
     4
137
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
     5
[![godoc](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat)](https://godoc.org/github.com/McKael/madon)
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
     6
[![license](https://img.shields.io/badge/license-MIT-red.svg?style=flat)](https://raw.githubusercontent.com/McKael/madon/master/LICENSE)
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
     7
[![build](https://img.shields.io/travis/McKael/madon.svg?style=flat)](https://travis-ci.org/McKael/madon)
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
     8
[![Go Report Card](https://goreportcard.com/badge/github.com/McKael/madon)](https://goreportcard.com/report/github.com/McKael/madon)
2
10ffb25f0ca2 Basic README.
Ollivier Robert <roberto@keltia.net>
parents: 0
diff changeset
     9
137
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
    10
`madon` is a [Go](https://golang.org/) library to access the Mastondon REST API.
2
10ffb25f0ca2 Basic README.
Ollivier Robert <roberto@keltia.net>
parents: 0
diff changeset
    11
10ffb25f0ca2 Basic README.
Ollivier Robert <roberto@keltia.net>
parents: 0
diff changeset
    12
## Installation
10ffb25f0ca2 Basic README.
Ollivier Robert <roberto@keltia.net>
parents: 0
diff changeset
    13
137
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
    14
To install the library:
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
    15
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
    16
    go get github.com/McKael/madon
2
10ffb25f0ca2 Basic README.
Ollivier Robert <roberto@keltia.net>
parents: 0
diff changeset
    17
137
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
    18
You can test it with my CLI tool:
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
    19
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
    20
    go get github.com/McKael/madonctl
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
    21
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
    22
## Usage
2
10ffb25f0ca2 Basic README.
Ollivier Robert <roberto@keltia.net>
parents: 0
diff changeset
    23
137
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
    24
This section has not been written yet (PR welcome).
3
c62478adcd24 Explain gondole.
Ollivier Robert <roberto@keltia.net>
parents: 2
diff changeset
    25
137
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
    26
For now please check [godoc](https://godoc.org/github.com/McKael/madon) and
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
    27
check the [madonctl](https://godoc.org/github.com/McKael/madonctl) project
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
    28
implementation.
32
c28f7e417146 Point to configuration files.
Ollivier Robert <roberto@keltia.net>
parents: 11
diff changeset
    29
137
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
    30
## History
32
c28f7e417146 Point to configuration files.
Ollivier Robert <roberto@keltia.net>
parents: 11
diff changeset
    31
139
7145e95b4f57 Update README
Mikael Berthe <mikael@lilotux.net>
parents: 137
diff changeset
    32
This API implementation was initially submitted as a PR for gondole.
3
c62478adcd24 Explain gondole.
Ollivier Robert <roberto@keltia.net>
parents: 2
diff changeset
    33
139
7145e95b4f57 Update README
Mikael Berthe <mikael@lilotux.net>
parents: 137
diff changeset
    34
The repository is actually a fork of my gondole branch so that
7145e95b4f57 Update README
Mikael Berthe <mikael@lilotux.net>
parents: 137
diff changeset
    35
history and credits are preserved.
3
c62478adcd24 Explain gondole.
Ollivier Robert <roberto@keltia.net>
parents: 2
diff changeset
    36
6
47035af1f167 Add references to docs.
Ollivier Robert <roberto@keltia.net>
parents: 3
diff changeset
    37
## References
47035af1f167 Add references to docs.
Ollivier Robert <roberto@keltia.net>
parents: 3
diff changeset
    38
137
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
    39
- [Mastodon API documentation](https://github.com/tootsuite/documentation/blob/master/Using-the-API/API.md)
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
    40
- [Mastodon Streaming API documentation](https://github.com/tootsuite/documentation/blob/master/Using-the-API/Streaming-API.md)
acaea3179f4d Use my own library name
Mikael Berthe <mikael@lilotux.net>
parents: 62
diff changeset
    41
- [Mastodon repository](https://github.com/tootsuite/mastodon)