Instagram client for Django.
Project description
django-easy-instagram
A Django application that provides a template tag for displaying content from a public Instagram profile. Has ability to cache files locally.
This was originally derived from Marco Pompili's version, but has now been largely rewritten.
Requirements
Installation
Install Django with your favourite Linux packaging system or you can use pip for installing python packages, if Django is not an official package for your distribution:
pip install django
Use pip to install Django Easy Instagram:
pip install django-easy-instagram
Pip should take care of the package dependencies for Django Easy Instagram.
Configuration
Add the application to INSTALLED_APPS:
INSTALLED_APPS = (
...
'sorl.thumbnail', # required for thumbnail support
'django_easy_instagram',)
Rebuild your application database, this command depends on which version of Django you are using.
Run your migations:
python manage.py makemigrations django_easy_instagram
python manage.py migrate
Usage
You can use recent_media (containing 10-12 recent entries) like this:
<!DOCTYPE html>
{% load instagram_client %}
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ instagram_profile_name|capfirst }} Instagram feed</title>
</head>
<body>
<h1>{{ instagram_profile_name|capfirst }} Instagram Feed</h1>
<div id="django_recent_media_wall">
{% instagram_user_recent_media instagram_profile_name %}
{% for media in recent_media %}
<div class="django_easy_instagram_media_wall_item">
<a href="//instagram.com/p/{{ media.shortcode }}" target="_blank">
<img src="{{ media.thumbnail_src }}"/>
<span>{{ media.edge_media_to_caption.edges.0.node.text }}</span>
</a>
</div>
{% endfor %}
</div>
<p>Got from instagram</p>
</body>
</html>
Resizing and Caching Images
You are able to resize images, which will also mean they are cached locally rather than being loaded from Instagram's servers.
To enable this, ensure you have sorl.thumbnail in the INSTALLED_APPS, and that you have setup Django caching.
In order for requests to Instagram to work properly, you will need to ensure you set the sorl.thumbail setting:
THUMBNAIL_REMOVE_URL_ARGS = False
You can then use the local_cache template filter and specify a size:
{% for media in recent_media %}
...
<img src="{{ media.thumbnail_src|local_cache:'332x332' }}"/>
...
{% endfor %}
The images will be saved locally in a cache.
By default images will be resized and saved at 80% JPG quality, to override this you can use this setting in your Django settings file:
INSTAGRAM_CACHE_QUALITY = 90
Settings
INSTAGRAM_UA- overrides the user agent sent in the requestINSTAGRAM_PROXY- provide a URL for an HTTP proxy
If using a proxy, the library will automatically retry up to 5 times if it encounters a 401/403 response.
Thanks
The original version of this was built by Marco Pompili available here - abandoned. I've sinced rewritten it to work with Instagram APIs rather than via scraping.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_easy_instagram-1.0.3-py3-none-any.whl.
File metadata
- Download URL: django_easy_instagram-1.0.3-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1905e83a691f4b35d81b72de62ce55737787b6fa36d8fc2f6a77acd32f29dff8
|
|
| MD5 |
58e5b833304f1e25ae4dcf0e18607443
|
|
| BLAKE2b-256 |
73a98961a79cfc61ceb3c49a3e58f100572fcabff52a335b8be0e44cf0bf1084
|