Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aaronvan/moviola
IMDB-inspired movie application
https://github.com/aaronvan/moviola
c cli curl json ncurses
Last synced: 14 days ago
JSON representation
IMDB-inspired movie application
- Host: GitHub
- URL: https://github.com/aaronvan/moviola
- Owner: aaronvan
- Created: 2024-09-24T18:20:37.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-11-17T21:26:24.000Z (3 months ago)
- Last Synced: 2024-11-17T22:23:57.494Z (3 months ago)
- Topics: c, cli, curl, json, ncurses
- Language: C
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Moviola Film Database Application
Statement of Goals: The user enters the name of the movie and the app will return the requested information (i.e. films, biographical information, etc.) The app retrieves the information the open-source Open Movie Database (OMDb), a free movie information database.
Functional Description: The ncurses UI will be relatively simple and self-explanatory for the user. When the application opens the user is presented with a text box (for entering the movie name) and several check boxes for the type of information requested. The user enters the name of the movie, selects from several checkboxes the data that they want returned (i.e., “Year”, “Actors”, “Director”, etc). Pressing the search button results in the information queried from the OMDb and displayed for the user.
Milestones:
Initial design.
Establish connectivity.
Responds to queries.
ncurses functionality.
Technical Breakdown:
User enters the movie title.
convert the movie title into a OMDb search string URL.
Creates a URL connection to the database and opens the connection.
Creates an input stream to the data file
Writes to the data file in JSON format for eventual parsing