The Movie API App is a Windows Forms (WinForms) application developed to interact with the OMDB API for movie search functionality. Users can search for movies using the search bar and view detailed information about the films retrieved from the API.
This project was developed on 4 December 2023 as a homework assignment from IT Step Academy. It is a Windows Forms application designed to practice integrating with external APIs and handling user input in C#.
For security reasons, the API key used for accessing the OMDB API has been removed from the source code. You must replace the placeholder in the Form1.cs
file on line 9 with your own API key:
private string ApiKey = "[yourApiKey]";
- Clone the repository:
git clone https://github.com/zabavb/Movie-API-app.git
- Navigate to the project directory:
cd Movie-API-app
- Open the solution file (
.sln
) in Visual Studio. - Build and run the application by pressing
F5
.
- Movie Search: Search for movies using the search bar.
- Movie Details: View detailed information about the movies retrieved from the OMDB API.
To use the application, clone the repository, open the solution file in Visual Studio, and run the project. Enter the name of the movie you want to search for in the search bar, and click the search button to see the movie details.
Contributions are welcome! If you have suggestions or improvements, please fork the repository and submit a pull request.
- Fork the Repository: Click the "Fork" button at the top-right of this page.
- Create a Branch: Create a new branch for your changes.
- Commit Changes: Make your changes and commit them with a descriptive message.
- Push to Your Fork: Push your changes to your forked repository.
- Submit a Pull Request: Go to the "Pull Requests" tab and submit a new pull request.
If you have any questions or suggestions, feel free to reach out to me via email or connect with me on LinkedIn.
- .NET Documentation
- Microsoft Visual Studio Documentation
- WinForms Documentation
- OMDB API Documentation
- Special thanks to IT Step Computer Academy for the educational support and providing the platform for this project.
- Thanks to the OMDB API for providing access to movie data.
Feel free to modify or extend this README to fit your needs better. Happy coding!