-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstalooterw.py
147 lines (126 loc) · 6.38 KB
/
instalooterw.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
import re
from datetime import datetime
import requests
from instalooter.looters import PostLooter
from tqdm import tqdm
def instalooterw():
# looter = ProfileLooter(username="hoseiniee")
# # looter.download(destination='~/Pictures', media_count=1, timeframe=(datetime.now(), datetime.now()-timedelta(5)))
# looter.download_videos('~/Pictures', media_count=1)
# f = open("/home/smkh_l/projects/instagram_helper/text.txt", "r")
# f1 = f.read()
# count = 0
# f1 = f1.split()
# for i in f1:
# if 'text' in i:
# count += 1
# print(count)
# users = set()
# # for media in looter.medias():
# # post_info = looter.get_post_info(media['shortcode'])
# # break
# post_info = looter.get_post_info('CGSDCgLhNbq')
#
# for comment in post_info['edge_media_to_preview_comment']['edges']:
# user = comment['node']['owner']['username']
# users.add(user)
# print(users)
looter = PostLooter(code="https://www.instagram.com/p/CGW8ClsFRip/?utm_source=ig_web_copy_link")
# looter.download(destination='~/Videos', condition=)
# Function to download an instagram photo or video
def download_image_video():
# url = input("Please enter image URL: ").split()
url = 'https://www.instagram.com/p/CGW8ClsFRip/?utm_source=ig_web_copy_link'
x = re.match(r'^(https:)[/][/]www.([^/]+[.])*instagram.com', url)
try:
if x:
request_image = requests.get(url)
src = request_image.content.decode('utf-8')
check_type = re.search(r'<meta name="medium" content=[\'"]?([^\'" >]+)', src)
check_type_f = check_type.group()
final = re.sub('<meta name="medium" content="', '', check_type_f)
if final == "image":
print("\nDownloading the image...")
extract_image_link = re.search(r'meta property="og:image" content=[\'"]?([^\'" >]+)', src)
image_link = extract_image_link.group()
final = re.sub('meta property="og:image" content="', '', image_link)
_response = requests.get(final).content
file_size_request = requests.get(final, stream=True)
file_size = int(file_size_request.headers['Content-Length'])
block_size = 1024
filename = datetime.strftime(datetime.now(), '%Y-%m-%d-%H-%M-%S')
t = tqdm(total=file_size, unit='B', unit_scale=True, desc=filename, ascii=True)
with open(filename + '.jpg', 'wb') as f:
for data in file_size_request.iter_content(block_size):
t.update(len(data))
f.write(data)
t.close()
print("Image downloaded successfully")
if final == "video":
msg = input("You are trying to download a video. Do you want to continue? (Yes or No): ".lower())
if msg == "yes":
print("Downloading the video...")
extract_video_link = re.search(r'meta property="og:video" content=[\'"]?([^\'" >]+)', src)
video_link = extract_video_link.group()
final = re.sub('meta property="og:video" content="', '', video_link)
_response = requests.get(final).content
file_size_request = requests.get(final, stream=True)
file_size = int(file_size_request.headers['Content-Length'])
block_size = 1024
filename = datetime.strftime(datetime.now(), '%Y-%m-%d-%H-%M-%S')
t = tqdm(total=file_size, unit='B', unit_scale=True, desc=filename, ascii=True)
with open(filename + '.mp4', 'wb') as f:
for data in file_size_request.iter_content(block_size):
t.update(len(data))
f.write(data)
t.close()
print("Video downloaded successfully")
if msg == "no":
exit()
else:
print("Entered URL is not an instagram.com URL.")
except AttributeError:
print("Unknown URL")
# Function to download profile picture of instagram accounts
def pp_download():
url = input("Please enter the URL of the profile: ")
x = re.match(r'^(https:)[/][/]www.([^/]+[.])*instagram.com', url)
if x:
check_url1 = re.match(r'^(https:)[/][/]www.([^/]+[.])*instagram.com[/].*\?hl=[a-z-]{2,5}', url)
check_url2 = re.match(
r'^(https:)[/][/]www.([^/]+[.])*instagram.com$|^(https:)[/][/]www.([^/]+[.])*instagram.com/$', url)
check_url3 = re.match(r'^(https:)[/][/]www.([^/]+[.])*instagram.com[/][a-zA-Z0-9_]{1,}$', url)
check_url4 = re.match(r'^(https:)[/][/]www.([^/]+[.])*instagram.com[/][a-zA-Z0-9_]{1,}[/]$', url)
if check_url3:
final_url = url + '/?__a=1'
if check_url4:
final_url = url + '?__a=1'
if check_url2:
final_url = print("Please enter an URL related to a profile")
exit()
if check_url1:
alpha = check_url1.group()
final_url = re.sub('\\?hl=[a-z-]{2,5}', '?__a=1', alpha)
try:
if check_url3 or check_url4 or check_url2 or check_url1:
req = requests.get(final_url)
get_status = requests.get(final_url).status_code
get_content = req.content.decode('utf-8')
if get_status == 200:
print("\nDownloading the image...")
find_pp = re.search(r'profile_pic_url_hd\":\"([^\'\" >]+)', get_content)
pp_link = find_pp.group()
pp_final = re.sub('profile_pic_url_hd":"', '', pp_link)
file_size_request = requests.get(pp_final, stream=True)
file_size = int(file_size_request.headers['Content-Length'])
block_size = 1024
filename = datetime.strftime(datetime.now(), '%Y-%m-%d-%H-%M-%S')
t = tqdm(total=file_size, unit='B', unit_scale=True, desc=filename, ascii=True)
with open(filename + '.jpg', 'wb') as f:
for data in file_size_request.iter_content(block_size):
t.update(len(data))
f.write(data)
t.close()
print("Profile picture downloaded successfully")
except Exception:
print('error')