CLI to fetch data from The Movie Database (TMDB) and display it in the terminal.
Simple command line interface (CLI) to fetch data from The Movie Database (TMDB) and display it in the terminal using Java.
- Java 21
- Jackson
- Lombok
Make sure to have an API key from TMDB. You can get one by creating an account on TMDB and following the instructions in their API documentation.
- Clone the repository
- Open the project in your favorite IDE
- Add your TMDB API key in the
src/main/resources/api.propertiesfile - Run the project
- Or build the project with Maven and run the generated jar.
mvn clean installjava -jar tmdb-cli-tool-1.0-SNAPSHOT.jar <command> [options]# Show help
java -jar tmdb-cli-tool-1.0-SNAPSHOT.jar --h
# Playing
java -jar tmdb-cli-tool-1.0-SNAPSHOT.jar --type playing
# Popular
java -jar tmdb-cli-tool-1.0-SNAPSHOT.jar --type popular
# Top
java -jar tmdb-cli-tool-1.0-SNAPSHOT.jar --type top
# Upcoming
java -jar tmdb-cli-tool-1.0-SNAPSHOT.jar --type upcomingDistributed under the MIT License. See LICENSE for more information.
Jordi Ayala - @ASJordi
Project Link: https://github.com/ASJordi/tmdb-cli-tool
Reference: https://roadmap.sh/projects/tmdb-cli

