-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Search info about a single movie #8
Comments
The main issue here I think is passing the movie name as an argument. It is important to pass a valid movie name that exists on the machine and should match with the respective movie. @dufferzafar thoughts? |
Doing an exact string match for the movie name is easy for the program, but hard for the user. We'll have to implement an approximate search algorithm, so a user can do: This of course is easier said than done. I think there must be some python library that provides this functionality. |
Yeah, something similar to what guessit does. |
Yep @iCHAIT that's it! 😸 |
Have you implemented this? |
No, I haven't yet. PR appreciated 😄 |
Moviemon should provide a way to search for information about an individual movie on my machine.
Example -
When I run -
$ moviemon <movie-name>
It should give me all the relevant information about the movie that I passed in as argument.
An advance feature can be -
$ moviemon <movie-name> -i
Gives IMDB rating for this particular movie only.
or
$ moviemon <movie-name> -r
Gives the runtime for this particular movie only
We can do the same for all switches.
The text was updated successfully, but these errors were encountered: