Skip to content
/ eztv Public

EZTV API wrapper written in Go

License

Notifications You must be signed in to change notification settings

odwrtw/eztv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

039613c · Oct 26, 2023

History

25 Commits
Oct 3, 2021
Oct 26, 2023
Nov 19, 2020
Oct 16, 2020
Oct 26, 2023

Repository files navigation

EZTV API client

GoDoc Go Report Card

This is a wrapper around the EZTV API written in go.

Usage

Get all the torrents for a show from its imdb id

torrents, err := eztv.GetShowTorrents("tt2149175")

Get all the torrents of a specific episode

// Get the torrents of the first episode of the second season of tt2085059
torrents, err := GetEpisodeTorrents("tt2085059", 2, 1)

Get the last torrents available

// Get the 20 torrents from the 2 first pages
torrents, err := eztv.GetTorrents(20, 2)