Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

wsgi-seo-iframe

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wsgi-seo-iframe

WSGI middleware for replacing iframes by their html content, allowing them to be crowled by search engines

  • 0.1.1
  • PyPI
  • Socket score

Maintainers
1

=================== SEO iframe Replacer

SEO iframe Replacer is a wsgi middleware to replace iframes containing 'src' attribute by its rendered html code. It is used to allow content rendered by Ajax to be indexed by search engines like Google. Typical usage on a django's WSGI script::

import os
from django.core.wsgi import get_wsgi_application
from wsgi_seo_iframe import IframeReplacerMiddleware

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")

application = get_wsgi_application()
application = IframeReplacerMiddleware(application)

Requirements

This packege requires PhantomJS <http://phantomjs.org/>_ to be installed manually.

You can download a compatible version of PhantomJS here: http://phantomjs.org/download.html

In Debian based systems you can install it using: sudo apt-get install phantomjs

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc