получение ошибки - AttributeError: модуль «json» не имеет атрибута «load» при запуске программы pytube в cmd - PullRequest
0 голосов
/ 20 апреля 2020

получение ошибки - AttributeError: модуль 'json' не имеет атрибута «load» при запуске программы pytube в cmd, хотя код верный, он корректно работает в pycharm '' '

from pytube import YouTube
from time import sleep
link = input("Enter the link here:::")
yt = YouTube(link)
title = yt.title
s = yt.streams.filter(progressive=True,file_extension='mp4')
print("Available formats for >>>",title,"youtube video")
a=1
for i in s:
    print(a,end=".")
    print(i.resolution)
    a+=1
resol = input("Enter any resolution from above>>")
if "p" in resol:
    userentry = resol
else:
    userentry = str(resol)+"p"
# x is the stream which user want to download
x = yt.streams.get_by_resolution(userentry)
if x==None:
    print("No resolution like this try again")
else:
    print("Please wait your video is being downloading",end="")
    for i in range(4):
        print(".",end="")
        sleep(1)
    x.download()
    print("\nYour video is downloaded")
    sleep(1)

    print("Thanks for visiting us")

' ''

...