You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

sphinx-gitstamp

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sphinx-gitstamp

git timestamp generator for Sphinx

0.4.0
pipPyPI
Maintainers
1

Sphinx Gitstamp Generator Extension

A Sphinx_ extension that inserts a git datestamp into the context as gitstamp, to make it available for template use in HTML versions of your Sphinx documentation.

|PyPI version| |Downloads| |Code style: Black| |Parallel Safe|

Installing

Directly install via pip by using::

pip install sphinx-gitstamp

Add sphinx_gitstamp to the extensions_ array in your Sphinx conf.py. For example:

.. code-block:: python

extensions = ['sphinx_gitstamp']

To change the default time format of %b %d, %Y, set the value of gitstamp_fmt in conf.py to the desired time format_. For example:

.. code-block:: python

Date format for git timestamps

gitstamp_fmt = "%Y-%m-%d %H:%M:%S %z"

Add gitstamp to the jinja template, for example:

.. code-block:: jinja

{%- if gitstamp %} This page was last updated on {{ gitstamp }}. {%- endif %}

Contributing

Pull Requests welcome! See CONTRIBUTING_ for instructions on how best to contribute.

License

sphinx-gitstamp is made available under a BSD license; see LICENSE_ for details.

Originally based on the gitstamp generator in the cyrus-imapd_ project. This product includes software developed by Computing Services at Carnegie Mellon University (http://www.cmu.edu/computing/).

.. _CONTRIBUTING: CONTRIBUTING.md .. _cyrus-imapd: https://github.com/cyrusimap/cyrus-imapd/pull/2029/files .. _extensions: https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-extensions .. _gitpython: https://gitpython.readthedocs.io/en/stable/ .. _html_extra_path: http://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_extra_path .. _language: https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language .. _LICENSE: LICENSE .. _Sphinx: http://sphinx-doc.org/ .. _time format: https://docs.python.org/2/library/time.html#time.strftime

.. |PyPI version| image:: https://img.shields.io/pypi/v/sphinx-gitstamp.svg :target: https://pypi.python.org/pypi/sphinx-gitstamp .. |Downloads| image:: https://static.pepy.tech/badge/sphinx-gitstamp/month :target: https://pepy.tech/project/sphinx-gitstamp .. |Code style: Black| image:: https://img.shields.io/badge/code%20style-black-000000.svg :target: https://github.com/psf/black .. |Parallel Safe| image:: https://img.shields.io/badge/parallel%20safe-true-brightgreen

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