Metadata-Version: 2.1
Name: insta-meter
Version: 0.0.1
Summary: library for gathering any instagram account statistic
Home-page: https://github.com/kricha/insta_meter
Author: Aleksej Krichevsky
Author-email: krich.al.vl@gmail.com
License: MIT
Download-URL: https://github.com/kricha/insta_meter/archive/0.0.1.tar.gz
Keywords: instagram,statistic,analytic
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP :: Browsers
Requires-Dist: tqdm
Requires-Dist: requests

Insta Meter
===========

`Build Status <https://travis-ci.org/kricha/insta_meter>`__
`PyPI <https://pypi.org/pypi/insta_meter>`__

Gather statistic for any open instagram account 📈

Examples
~~~~~~~~

-  Example of using package for getting account statistic:

   .. code:: python

      from insta_meter import InstaMeter   
      im = InstaMeter(username='al_kricha')   
      im.analyze_profile()   
      im.print_account_statistic()
      im.print_top_liked()   

   result:

   .. code:: bash

      +-- https://instagram.com/al_kricha/ --------------------------+
      |   counter                    |             value             |
      +------------------------------+-------------------------------+
      |   followed                   |              402              |
      |   posts                      |              397              |
      |   comments                   |             1602              |
      |   likes                      |             20429             |
      |   following                  |              211              |
      |   video views                |             6138              |
      |                                                              |
      +--------- https://github.com/kricha/insta_browser ------------+
      +--------------------------------------------------------------+
      |                       top liked posts                        |
      +--------------------------------------------------------------+
      |       https://instagram.com/p/BVIUvMkj1RV/ - 139 likes       |
      |       https://instagram.com/p/BTzJ38-DkUT/ - 132 likes       |
      |       https://instagram.com/p/BI8rgr-gXKg/ - 129 likes       |
      |       https://instagram.com/p/BW-I6o6DBjm/ - 119 likes       |
      |       https://instagram.com/p/BM4_XSoFhck/ - 118 likes       |
      |       https://instagram.com/p/BJVm3KIA-Vj/ - 117 likes       |
      |       https://instagram.com/p/BIhuQaCgRxI/ - 113 likes       |
      |       https://instagram.com/p/BM6XgB2l_r7/ - 112 likes       |
      |       https://instagram.com/p/BMHiRNUlHvh/ - 112 likes       |
      |       https://instagram.com/p/BLmMEwjlElP/ - 111 likes       |
      +--------------------------------------------------------------+


