Integrates Mezzanine CMS with Instagram
Project description
Installation
In virtualenv:
$ pip install mezzanine_instagram
Configuration
In settings.py:
INSTALLED_APPS = ( ... 'mezzanine_instagram', ) DASHBOARD_TAGS = ( ... ("mezzanine_tags.recent_actions", 'instagram_tags.instagram',), ) INSTAGRAM_CLIENT_ID = os.getenv('INSTAGRAM_CLIENT_ID') INSTAGRAM_CLIENT_SECRET = os.getenv('INSTAGRAM_CLIENT_SECRET')
In urls.py:
urlpatterns = patterns( '', ("^instagram/", include("mezzanine_instagram.urls")), ... )
Configure INSTAGRAM_CLIENT_ID and INSTAGRAM_CLIENT_SECRET environment variables. Access Django admin, click Authorize Instagram.
Once you’ve authorized your site you’ll be able to access /instagram/ in your browser to view the feed for the authorized user.
Media Stream
Requires a caching mechanism like Memcached, Database or Filesystem. Will not work with Local-memory or Dummy.
Add a tag or more to use when generating the stream by going to Dashboard > Tags. Then run the provided management command to generate the stream.
$ python manage.py build_tags_stream
Now you can access the Media in Dashboard. At first all images have a green outline indicating that they’ll be shown to the public. Click on the image to exclude it from your stream (the outline will turn red).
We recommend using cron or similar to run the management command on a regular basis. Please be aware that Instagram limits how often you can access their API.
The curated media stream is available to the public at /instagram/tags/.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file mezzanine_instagram-v0.0.1.dev1.tar.gz
.
File metadata
- Download URL: mezzanine_instagram-v0.0.1.dev1.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d27b3ada33123a57981a3cd9ba71b8c4fef3d3b25344963d294de107eea495e0 |
|
MD5 | 3df73848b72ecb63660b6089138e2b38 |
|
BLAKE2b-256 | 29e0cacf6fe7d8ef65e2b2f67022d18c936b33db3eb762ff1ad7772049b0965b |