A Swift Package for The Movie Database (TMDb) https://www.themoviedb.org
Add the TMDb package as a dependency to your Package.swift
file, and add it as a dependency to your target.
// swift-tools-version:5.6
import PackageDescription
let package = Package(
name: "MyPackage",
dependencies: [
.package(url: "https://github.com/adamayoung/TMDb.git", upToNextMajor: "8.0.0")
],
targets: [
.target(name: "MyPackage", dependencies: ["TMDb"])
]
)
Create an API Key from The Movie Database web site https://www.themoviedb.org/documentation/api.
Set your API key before making any calls
TMDbAPI.setAPIKey("<tmdb-api-key>")
Get an up to date list of the officially supported movie certifications on TMDb.
System wide configuration information.
Discover movies by different types of data like average rating, number of votes, genres and certifications.
Discover TV shows by different types of data like average rating, number of votes, genres, the network they aired on and air dates.
Get information about movies.
Get information about people.
Search for movies, TV shows and people.
Get the daily or weekly trending items. The daily trending list tracks items over the period of a day while items have a 24 hour half life. The weekly list tracks items over a 7 day period, with a 7 day half life.
Get information about TV shows.
Get information about TV show seasons.
First, set your TMDb API key.
TMDbAPI.setAPIKey("<tmdb-api-key>")
let discoverService = TMDbAPI.shared.discover
let movieList = try await discoverService.movies()
let movies = movieList.results
let trendingService = TMDbAPI.shared.trending
let tvShowList = try await trendingService.tvShows(inTimeWindow: .week, page: 2)
let tvShows = list.results
let personService = TMDbAPI.shared.person
let personList = try await personService.popular()
let people = personList.results
Combine support is available in version 6.0.0.
The latest documentation for the TMDb APIs is available at https://adamayoung.github.io/TMDb.
This library is licensed under the Apache License 2.0. See LICENSE for details.
link |
Stars: 12 |
Last commit: 1 week ago |
Full Changelog: https://github.com/adamayoung/TMDb/compare/7.1.0...8.0.0
Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics