Logo

Instafetch-python

A python package to fetch public data from Instagram

Instafetch ======== A python package to fetch public data from Instagram. Installation ========= $ pip install instafetch Usage ===== Search Users: ------------------- from instafetch import Instafetch I = Instafetch() users = I.users(<keyword>) Get user details: ---------------------- I = Instafetch() user_detail = I.user(<username>) Fetch Hashtags data: ----------------------------- I = Instafetch() I.explore(<Hashtag>, page=<no. of pages>) #number of pages to fetch top_posts = I.top_posts all_posts = I.all_posts +=====================+