Metadata-Version: 2.1
Name: pyvis-timeline
Version: 0.0.8
Summary: Interactive Timeline Visualizations
Home-page: https://github.com/daniel-yj-yang/pyvis-timeline
Author: Daniel Yang
Author-email: daniel.yj.yang@gmail.com
License: BSD-3-Clause License
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/x-rst
License-File: LICENSE

.. -*- mode: rst -*-

|BuildTest|_ |PyPi|_ |License|_ |Downloads|_ |PythonVersion|_

.. |BuildTest| image:: https://travis-ci.com/daniel-yj-yang/pyvis-timeline.svg?branch=main
.. _BuildTest: https://app.travis-ci.com/github/daniel-yj-yang/pyvis-timeline

.. |PythonVersion| image:: https://img.shields.io/badge/python-3.8%20%7C%203.9-blue
.. _PythonVersion: https://img.shields.io/badge/python-3.8%20%7C%203.9-blue

.. |PyPi| image:: https://img.shields.io/pypi/v/pyvis-timeline
.. _PyPi: https://pypi.python.org/pypi/pyvis-timeline

.. |Downloads| image:: https://pepy.tech/badge/pyvis-timeline
.. _Downloads: https://pepy.tech/project/pyvis-timeline

.. |License| image:: https://img.shields.io/pypi/l/pyvis-timeline
.. _License: https://pypi.python.org/pypi/pyvis-timeline


===================================
Interactive Timeline Visualizations
===================================

This tool leverages the amazing vis-timeline library (https://visjs.github.io/vis-timeline/docs/timeline/) to provide interactive visualizations.


Installation
------------

.. code-block::

   pip install pyvis-timeline


Sample Usage
------------

>>> from pyvis_timeline import timeline, dataset
>>> df = dataset().load_as_df("COVID19_Variants_Date_of_Designation")
>>> timeline(title='COVID-19 Variants - Date of Designation').add_df(df).show('output.html')


Sample Screenshot
-----------------
COVID-19 Variants Designation Timeline as of 2021-11-27

|image1|


.. |image1| image:: https://github.com/daniel-yj-yang/pyvis-timeline/raw/main/pyvis_timeline/examples/images/covid19_variants_designation_timeline.png



