Adding bot to repo removing old tmdb

This commit is contained in:
Alex Epstein 2017-08-02 21:04:42 -04:00
parent af797f2225
commit 0e91042a5b
2 changed files with 18 additions and 45 deletions

18
.github/stale.yml vendored Normal file
View File

@ -0,0 +1,18 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 25
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 5
# Issues with these labels will never be considered stale
exemptLabels:
- New Component
# Label to use when marking an issue as stale
staleLabel: Stale
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: >
This issue has been automatically closed because it has been
inactive for 30 days.

45
tmdb
View File

@ -1,45 +0,0 @@
#!/bin/bash
# Author : Navan Chauhan <N3V0N>
#set -x
title=$1
ap=$2
if [ "$1" == "-h" ];
then
echo TMDb Help
echo Usage :
echo -e "tmdb -h \t /Shows Help"
echo -e "tmdb Name_of_the_movie \t \t /Gives Information "
exit
#elif [ "$1" == " "]; #Error message when no data given is under developement
#then
#echo test
#exit
fi
APIKEY="b2f8880475c888056b6207067fbaa197"
clear
FT=$( echo $title | sed 's/ /%20/g' );
echo Fetching Data of $title
curl -s -o raw_data.json "https://api.themoviedb.org/3/search/movie?query="$FT"&language=en-US&api_key="$APIKEY""
jq ".[]" raw_data.json > semi.json
jq '.[] | .id' semi.json > final.txt
id=$( head -n 1 final.txt )
echo "Movie ID= $id "
url=https://api.themoviedb.org/3/movie/"$id"?api_key="$APIKEY"
curl -s $url > movie.json
name=$( jq -r '.original_title' movie.json )
plot=$( jq -r '.overview' movie.json )
language=$( jq -r '.original_language' movie.json )
runtime=$( jq -r '.runtime' movie.json )
clear
echo "=========================================="
echo Title : $name
echo
echo Language : $language
echo
echo Plot : $plot
echo
echo Runtime : $runtime
echo "=========================================="