A Swift Package for The Movie Database (TMDb) https://www.themoviedb.org
- Swift 5.7+
- OS
- macOS 11+
- iOS 14+
- watchOS 7+
- tvOS 14+
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.7
import PackageDescription
let package = Package(
name: "MyProject",
dependencies: [
.package(url: "https://github.com/adamayoung/TMDb.git", from: "10.0.0")
],
targets: [
.target(name: "MyProject", dependencies: ["TMDb"])
]
)
Add the TMDb package to your Project's Package dependencies.
Create an API key from The Movie Database web site https://www.themoviedb.org/documentation/api.
Documentation and examples of usage can be found at https://adamayoung.github.io/TMDb/documentation/tmdb/
This library is licensed under the Apache License 2.0. See LICENSE for details.