tmdb

package
v1.9.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 6, 2026 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Overview

Package tmdb implements a client for the TMDB API https://developer.themoviedb.org/docs/getting-started

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

type Client struct {
	*client.Client
}

Client is a profile HTTP client that wraps the base HTTP client

func New

func New(apikey string, opts ...client.ClientOpt) (*Client, error)

New creates a new profile HTTP client with the given base URL and options. The url parameter should point to the profile API endpoint, e.g. "http://localhost:8080/api".

func (*Client) SearchMovies

type Query

type Query struct {
	Name    string
	Year    int // 0 if no year was found
	Season  int // 0 unless Episode is also set
	Episode int // 0 unless this looks like a TV episode
}

Query is a search query extracted from a media file's path: the title to search for, its release year if present, and (for a TV episode) its season/episode number.

func ExtractQuery

func ExtractQuery(path string) Query

ExtractQuery derives a search query - title, year, and (for a TV episode) season/episode - from a media file's path.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL