-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alexander Osipenko
authored
Apr 21, 2017
1 parent
3b27c69
commit 97f89f9
Showing
1 changed file
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
""" | ||
Author: Alexander Osipenko | ||
https://github.com/subpath | ||
""" | ||
# -*- coding: utf-8 -*- | ||
|
||
import requests | ||
import json | ||
from geopy.geocoders import Nominatim | ||
from datetime import datetime | ||
|
||
|
||
def get_all_posts(username): | ||
url0 = ''.join(['https://www.instagram.com/',username,'/media/']) | ||
r = requests.get(url0) | ||
data = json.loads(r.text)['items'] | ||
for i in range(100): | ||
last_id = data[-1]['id'] | ||
url = ''.join(['https://www.instagram.com/', username , '/media?max_id=' , last_id, '?more_available=True']) | ||
r = requests.get(url) | ||
d = json.loads(r.text) | ||
for item in d['items']: | ||
data.append(item) | ||
if last_id == data[-1]['id']: | ||
break | ||
return data | ||
|
||
def update_data_with_coordinates(data): | ||
geolocator = Nominatim() | ||
for i in range(len(data)): | ||
try: | ||
loc = data[i]['location']['name'].decode('utf-8') | ||
location = geolocator.geocode(loc) | ||
lat = location.latitude | ||
lon = location.longitude | ||
data[i]['coordinates'] = [lon, lat] | ||
except: | ||
pass | ||
return data | ||
|
||
|
||
def reshape_for_plotting(data): | ||
locations = [] | ||
lat = [] | ||
lon = [] | ||
created_time = [] | ||
likes = [] | ||
comments = [] | ||
thumbnail = [] | ||
low_resolution = [] | ||
user = {} | ||
for i in data: | ||
try: | ||
locations.append(i['location']['name'].decode('utf-8')) | ||
lat.append(i['coordinates'][1]) | ||
lon.append(i['coordinates'][0]) | ||
except: | ||
pass | ||
for i in data: | ||
created_time.append(datetime.fromtimestamp(float(i['created_time']))) | ||
likes.append(int(i['likes']['count'])) | ||
comments.append(i['comments']['count']) | ||
thumbnail.append(i['images']['thumbnail']['url']) | ||
low_resolution.append(i['images']['low_resolution']['url']) | ||
user['fullname'] = data[0]['user']['full_name'] | ||
user['profile_picture'] = data[0]['user']['profile_picture'] | ||
|
||
|
||
return {"locations": locations, | ||
'lat': lat, | ||
'lon': lon, | ||
'created_time':created_time, | ||
'likes': likes, | ||
'comments': comments, | ||
'thumbnail': thumbnail, | ||
'low_resolution': low_resolution, | ||
'user': user, | ||
} | ||
|