A golang wrapper for animeschedule's API.

go-animeschedule

⚠️ BOTH THE API AND THIS WRAPPER ARE EXPERIMENTAL. DO NOT USE THEM IN PRODUCTION.

How to install:

go get github.com/er-azh/go-animeschedule

Usage example:

package main

import (
	"fmt"
	"github.com/er-azh/go-animeschedule"
)

func main() {
    timetable, err := animeschedule.GetCurrentTimetable(nil, nil)
    if err != nil {
        panic(err)
    }
    
    fmt.Println(timetable)
}

Methods:

There are more endpoints but I don't know them. If you know one that isn't listed here open an issue or submit a PR.
// GetCurrentTimetable gets the current timetable or the timetable in a specific week
// when timetableTime is specified it tries to get that week's timetable.
// timezone can be set to return times in a different time zone.
func GetCurrentTimetable(timetableTime *TimetableTime,timezone *time.Location) (*Timetable, error)

// GetShow gets a show by its slug
func GetShow(slug string) (*ShowDetail, error) 
Owner
weeb | I don't use github a lot
null
Similar Resources

A RESTful API Reservation App using Golang

A RESTful API Reservation App using Golang

Project-2 Project#2 "AirBnb" Reservation App Projek Kedua Pembangunan RESTful API Program Immersive Back End Batch 4 Kunjungi kami » 🛠 Build App & Da

Jan 12, 2022

A tools web api bases golang

1. tools-api 一个基于golang的开源web服务,专注于提供各类API以便在日常开发中提高生产效率 2. 部署 下载二进制程序后直接运行即可 ./go-tools-api 3. 二次开发 3.1. 环境依赖 Go版本 go version go1.15.2 linux/amd64 环境

Jun 13, 2022

A Simple Note API For Golang

Simple Note API Start up run go run main.go Endpoints GET localhost:8080/notes - gets all of the notes in the database POST localhost:808/note - cre

Dec 15, 2021

Nano API Implementation in Golang

nanoapi Nano API Implementation in GO TL;DR The idea is to create a very simple

Jan 9, 2022

Windows API to hide console window by golang

Doge-Hide windows API to hide console window by golang ShowWindow ShowWindowAsy

Nov 7, 2022

google indexing api example (golang)

gindex google indexing api example (golang) 動機 search console のカバレージを見ると、除外が 170 ほどあった。 検出 - インデックス未登録が 84 件 クロール済み - インデックス未登録が 72 件 URL 検査で「インデックス登録

Nov 15, 2021

Simple and complete API for building command line applications in Go

Simple and complete API for building command line applications in Go Module cli provides a simple, fast and complete API for building command line app

Nov 23, 2022

Go library for accessing the Reddit API.

Go library for accessing the Reddit API.

Overview Featured in issues 327 and 347 of Golang Weekly 🎉 go-reddit is a Go client library for accessing the Reddit API. You can view Reddit's offic

Jan 7, 2023

Make any Go function into a API (FaaS)

faas Make any (Go) function into an API with one HTTP request. This is a FaaS: functions as a service. But, in actuality, its more of a FaaSSS: functi

Dec 30, 2022
A go1.18 wrapper to provide simple generics based API for defining command line flags.

gflag A go1.18 wrapper to provide simple generics based API for defining command line flags. Example package main import ( "flag" "fmt" "time" "

Dec 20, 2021
A wrapper around cd and xdg-open to use aliases to directory paths in terminal

CDD - Change directories Dynamically I am a lazy linux user and turns out that basic tab completion wasn't enough for me to navigate through my direct

Dec 15, 2022
Elegant CLI wrapper for kubeseal CLI

Overview This is a wrapper CLI ofkubeseal CLI, specifically the raw mode. If you just need to encrypt your secret on RAW mode, this CLI will be the ea

Jan 8, 2022
Simple, lightweight, and easy to use gopacket wrapper cli

gniffer Simple, lightweight, and easy to use gopacket wrapper cli Explore the docs » View Demo · Report Bug · Request Feature Table of Contents About

Dec 25, 2021
A wrapper of aliyun-cli subcommand alidns, run aliyun-cli in Declarative mode.

aliyun-dns A wrapper of aliyun-cli subcommand alidns, run aliyun-cli in Declarative mode. Installation Install aliyun-cli. Usage $ aliyun-dns -h A wra

Dec 21, 2021
Simplest possible GH CLI wrapper around rhysd/actionlint

Simplest possible GH CLI wrapper around rhysd/actionlint

Dec 2, 2022
Envp - ENVP is cli wrapper that sets environment variables by profile when you execute the command line

ENVP ENVP is cli wrapper that sets environment variables by profile based config

Nov 7, 2022
Godbolt console wrapper for easily execute local file without any security risk and compiler.

Godbolt CLI Godbolt console wrapper for easily execute local file without any security risk and compiler. Install Compile the source code and add to y

May 22, 2022
Simple to do list API with Gin and Gorm (with Postgres)Simple to do list API with Gin and Gorm (with Postgres)

go-todo Simple to do list API with Gin and Gorm (with Postgres) Docker Clone this repository and run: docker-compose up You can then hit the followin

Aug 29, 2022
Go-api-cli - Small CLI to fetch data from an API sync and async

Async API Cli CLI to fetch data on "todos" from a given API in a number of ways.

Jan 13, 2022