mirror of
https://github.com/believethehype/nostrdvm.git
synced 2025-06-04 08:29:16 +02:00
Update media_scrapper.py
This commit is contained in:
parent
4756440b43
commit
9507c160c4
@ -493,14 +493,14 @@ def InstagramDownload(url, name, path) -> str:
|
|||||||
print(video_url)
|
print(video_url)
|
||||||
if video_url:
|
if video_url:
|
||||||
response = requests.get(video_url)
|
response = requests.get(video_url)
|
||||||
with open(path + "/" + name + ".mp4", "wb") as f:
|
with open(path + "\\" + name + ".mp4", "wb") as f:
|
||||||
f.write(response.content)
|
f.write(response.content)
|
||||||
return path + "/" + name + ".mp4"
|
return path + "\\" + name + ".mp4"
|
||||||
elif photo_url:
|
elif photo_url:
|
||||||
response = requests.get(photo_url)
|
response = requests.get(photo_url)
|
||||||
with open(path + name + "/" + ".jpg", "wb") as f:
|
with open(path + name + "\\" + ".jpg", "wb") as f:
|
||||||
f.write(response.content)
|
f.write(response.content)
|
||||||
return path + "/" + name + ".jpg"
|
return path + "\\" + name + ".jpg"
|
||||||
|
|
||||||
|
|
||||||
def InstagramDownloadAll(linklist, path) -> str:
|
def InstagramDownloadAll(linklist, path) -> str:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user