Skip to content

lukemilby/lichess

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ef8a9e7 · Aug 1, 2021

History

16 Commits
Apr 27, 2021
Apr 9, 2019
Apr 28, 2021
Apr 28, 2021
Apr 29, 2021
Apr 29, 2021
Apr 27, 2021
Apr 27, 2021
Apr 29, 2021
Apr 29, 2021

Repository files navigation

Golang Lichess Package

A Go implementation of Lichess's API

Usage

Create API Token from here

package main

import (
	"fmt"
	"github.com/lukemilby/lichess"
	"log"
	"net/http"
	"net/url"
)

func main() {
	baseURL, err := url.Parse("https://lichess.org")
	if err != nil {
		log.Fatal(err)
	}
	client := new(lichess.Client)

	client.BaseURL = baseURL
	client.APIKey = "<API Key>"
	client.UserAgent = "Golang Client"
	client.HttpClient = new(http.Client)

	user, err := client.GetProfile()
	if err != nil {
		log.Fatal(err)
	}
	fmt.Println(user.ID)
}

Todo

  • Accounts
  • Unit Testing
  • Users
  • Relations
  • Games
  • Teams
  • Challenges
  • Chessbot
  • Tournaments

About

Golang package for lichess

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages