Skip to content

Latest commit

 

History

History
59 lines (41 loc) · 1.6 KB

README.md

File metadata and controls

59 lines (41 loc) · 1.6 KB

📸 InstaHashtag

Unofficial Python API wrapper for DisplayPurposes.

Installing

pip install instahashtag

Documentation

Documentation for this module can be found here.

Use

This library is built as a layer-based module and may be used in different ways depending on the use case of the user. In this README file only the wrapper module is documented, but for further use cases please check out the docs above.

Wrapper

A complete Python wrapper around the API.

from instahashtag import Tag, Graph, Maps

tag = Tag(hashtag="instagram")
graph = Graph(hashtag="instagram")
maps = Maps(
    x1=-80.48712034709753,
    y1=25.750749758162012,
    x2=-79.82794065959753,
    y2=25.854604964203453,
    zoom=12,
)

Check out the documentation above to understand how the objects behave, and what attributes are accessible.