Metadata-Version: 2.1
Name: django-iglink
Version: 1.3.0
Summary: Django Instagram API. Use your Instagram data anywhere.  Includes cache feature in the case of Exceptions.
Home-page: https://github.com/forafekt/django-iglink
Author: Jonny Doyle
Author-email: jonathan.d@programmer.net
License: MIT
Project-URL: Bug Tracker, https://github.com/forafekt/django-iglink/issues
Project-URL: Documentation, https://github.com/forafekt/django-iglink/tree/master/djangular_serve/docs
Project-URL: Source Code, https://github.com/forafekt/django-iglink
Description: # DJANGO-IGLINK
        
        ## Version
        #### `1.3.0`
        
        ## Description
        Add any instagram account data to any project.  IGLINK differs from other Instagram API's, that when you reach the 
        request limit put forth by Instagram, IGLINK will create a json cache file on every successful request, overwriting the 
        previous file.  When the request limit is hit or there is an exception, for example, 'keyError: ProfilePage', 
        IGLINK will then return the last successful request from the cache file.  
        When the limit has been rest the cache file will be updated again with latest data.
        
        ## Setup 
        #####https://pypi.org/project/django-iglink/
        
        #`pip install django-iglink`
        or
        #`pip3 install django-iglink`
        
        ##In your Django project settings add 'iglink' to your installed apps:
        
        ####INSTALLED_APPS = [
        ...
        #####    `'iglink',`
        ...
        ####]
        
        ## Next add IGLINK urls to your main url conf for example:
        
        ###`path('instagram/', include('iglink.urls'))`
        or
        ###`url(r'^instagram/', include('iglink.urls'))`
        
        ## Then run `python manage.py migrate`
        
        ## Lastly in your root project folder make a directory called `cache`
        ## Inside `cache` make 2 files called:
        ### `ig-profile-cache.json`
        and
        ### `ig-recent-media-cache.json`
Keywords: django angular ig instagram http api rest django-rest-framework json cache
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.6
Description-Content-Type: text/markdown
