A tool which can be used to search and play YouTube music!
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

open.py 808 B

il y a 4 ans
il y a 4 ans
1234567891011121314151617181920212223242526
  1. #!/usr/bin/python3
  2. from youtube_search import YoutubeSearch
  3. import sys, getopt
  4. def main(argv):
  5. inputfile = ''
  6. outputfile = ''
  7. try:
  8. opts, args = getopt.getopt(argv,"hi:o:",["ifile=","ofile="])
  9. except getopt.GetoptError:
  10. print ('spotitube.py -i <Search Keyword>')
  11. sys.exit(2)
  12. for opt, arg in opts:
  13. if opt == '-h':
  14. print ('test.py -i <inputfile> -o <outputfile>')
  15. sys.exit()
  16. elif opt in ("-i", "--ifile"):
  17. inputfile = arg
  18. elif opt in ("-o", "--ifile"):
  19. numberfile = arg
  20. results = YoutubeSearch(inputfile, max_results=int(numberfile)).to_dict()
  21. ans = 'https://youtu.be/' + results[int(numberfile)-1]['url_suffix'][9:]
  22. print(ans)
  23. if __name__ == "__main__":
  24. main(sys.argv[1:])