Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vwxyzjn/jupyter_disqus
Add Disqus to your Jupyter notebook.
https://github.com/vwxyzjn/jupyter_disqus
disqus ipython-notebook jupyter jupyter-notebook python
Last synced: about 1 month ago
JSON representation
Add Disqus to your Jupyter notebook.
- Host: GitHub
- URL: https://github.com/vwxyzjn/jupyter_disqus
- Owner: vwxyzjn
- License: mit
- Archived: true
- Created: 2018-02-13T21:43:34.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-02-14T02:29:32.000Z (over 6 years ago)
- Last Synced: 2024-09-24T21:33:23.367Z (about 2 months ago)
- Topics: disqus, ipython-notebook, jupyter, jupyter-notebook, python
- Language: Python
- Homepage:
- Size: 495 KB
- Stars: 14
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
Jupyter_Disqus Package
=======================.. image:: https://travis-ci.org/vwxyzjn/jupyter_disqus.svg?branch=master
:target: https://travis-ci.org/vwxyzjn/jupyter_disqus.. image:: https://codecov.io/gh/vwxyzjn/jupyter_disqus/branch/master/graph/badge.svg
:target: https://codecov.io/gh/vwxyzjn/jupyter_disqus.. image:: https://badge.fury.io/py/jupyter-disqus.svg
:target: https://badge.fury.io/py/jupyter-disqusIntroduction
---------------------------You may use this package to inject and display `Disqus `_ in your jupyter notebook, which might be helpful for couple use cases. For example, if you are doing a tutorial or a demonstration, ``Jupyter_Disqus`` allows you to answer questions that other people may have. Also, you may get some helpful feedback from the audience as well.
Demo
-----------------------.. image:: https://github.com/vwxyzjn/jupyter_disqus/raw/master/demo.gif
:target: https://github.com/vwxyzjn/jupyter_disqus/raw/master/demo.gifInstallation
-------------------------::
$ pip install jupyter_disqus
Usage
----------------------.. code-block:: python
from jupyter_disqus import inject
# make sure to run this in a cell of your jupyter notebook
inject(
page_url="https://costahuang.me/SC2AI/",
page_identifier="1f527ae5-5a59-4dc3-9bb0-d77c2ccf5cab", # unique identifier
site_shortname="costahuang" # your disqus site shortname
)Authors: Costa Huang