Skip to content

utkarshdbodake/InstagramBestTimePost

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

InstagramBestTimePost

Finds out best time to post on Instagram

To manually call the API

  1. Start the service locally.
  2. Then Go to ipython & type below code:
import  requests, json

headers = { 'content-type':'application/json' }
url = 'http://127.0.0.1:8000/find/best-time-to-post/'
data = { "id": "deepak365" }
params = { 'content': json.dumps(data) }

response = requests.get(url, headers=headers, params=params)

if response.status_code == 200:
    print json.dumps(response.json(), indent=4, sort_keys=True)
else:
    print response

About

Finds out best time to post on Instagram.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published