├── .github └── workflows │ ├── codecov.yml │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── commons.py ├── constant.py ├── get_insta_insights.py ├── images ├── pip.svg └── python.svg ├── insights ├── __init__.py ├── data │ ├── index.html.template │ └── style.css ├── hashtags.py ├── htmlutils.py └── timings.py ├── instagram ├── __init__.py ├── instagram_data.py └── restmethods.py ├── pyproject.toml ├── requirements-test.txt ├── requirements.txt ├── screenshot.png ├── setup.py └── tests ├── insights_response_101.json ├── insights_response_202.json ├── issues_one_page.json ├── response_101.json ├── response_202.json ├── sample_insights.csv ├── sample_posts_response.json └── tests.py /.github/workflows/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/.github/workflows/codecov.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/README.md -------------------------------------------------------------------------------- /commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/commons.py -------------------------------------------------------------------------------- /constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/constant.py -------------------------------------------------------------------------------- /get_insta_insights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/get_insta_insights.py -------------------------------------------------------------------------------- /images/pip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/images/pip.svg -------------------------------------------------------------------------------- /images/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/images/python.svg -------------------------------------------------------------------------------- /insights/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /insights/data/index.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/insights/data/index.html.template -------------------------------------------------------------------------------- /insights/data/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/insights/data/style.css -------------------------------------------------------------------------------- /insights/hashtags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/insights/hashtags.py -------------------------------------------------------------------------------- /insights/htmlutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/insights/htmlutils.py -------------------------------------------------------------------------------- /insights/timings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/insights/timings.py -------------------------------------------------------------------------------- /instagram/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /instagram/instagram_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/instagram/instagram_data.py -------------------------------------------------------------------------------- /instagram/restmethods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/instagram/restmethods.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | numpy 3 | requests 4 | matplotlib -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/screenshot.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/setup.py -------------------------------------------------------------------------------- /tests/insights_response_101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/tests/insights_response_101.json -------------------------------------------------------------------------------- /tests/insights_response_202.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/tests/insights_response_202.json -------------------------------------------------------------------------------- /tests/issues_one_page.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"pardhu" 3 | 4 | } 5 | -------------------------------------------------------------------------------- /tests/response_101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/tests/response_101.json -------------------------------------------------------------------------------- /tests/response_202.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/tests/response_202.json -------------------------------------------------------------------------------- /tests/sample_insights.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/tests/sample_insights.csv -------------------------------------------------------------------------------- /tests/sample_posts_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/tests/sample_posts_response.json -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PardhuMadipalli/instagram-insights/HEAD/tests/tests.py --------------------------------------------------------------------------------