Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lbrulet/epitechfetcher

Golang package that fetch informations from the epitech intranet with the autolink
https://github.com/lbrulet/epitechfetcher

autologin epitech epitech-intra golang information library

Last synced: about 6 hours ago
JSON representation

Golang package that fetch informations from the epitech intranet with the autolink

Awesome Lists containing this project

README

        

# EPITECHFETCHER

## Description
EpitechFetcher is a golang library that fetch the user informations with his autologin
## Installation

Use the package manager [go get](https://golang.org/cmd/go/) to install EpitechFetcher.

```bash
go get -v github.com/lbrulet/EpitechFetcher
```

## Usage

```golang
package main

import (
"fmt"

"github.com/lbrulet/EpitechFetcher"
)

func main() {
if user, notes, err := EpitechFetcher.Link("auth-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", "[email protected]"); err != nil {
fmt.Println(err)
} else {
fmt.Println(user, notes)
}
}
```
## Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**.

1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request

## License
[MIT](https://choosealicense.com/licenses/mit/)