Metadata-Version: 2.1
Name: librarypaste
Version: 3.10.0
Summary: A simple pastebin implemented in Python
Home-page: https://github.com/jaraco/librarypaste
Author: Jason R. Coombs
Author-email: jaraco@jaraco.com
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.8
License-File: LICENSE
Requires-Dist: pygments
Requires-Dist: genshi
Requires-Dist: cherrypy
Requires-Dist: PyYAML
Requires-Dist: requests
Requires-Dist: jaraco.functools>=1.15
Requires-Dist: more_itertools
Requires-Dist: importlib_metadata
Requires-Dist: importlib_resources
Requires-Dist: puremagic
Requires-Dist: jaraco.context
Provides-Extra: testing
Requires-Dist: pytest>=6; extra == "testing"
Requires-Dist: pytest-checkdocs>=2.4; extra == "testing"
Requires-Dist: pytest-cov; extra == "testing"
Requires-Dist: pytest-mypy; extra == "testing"
Requires-Dist: pytest-enabler>=2.2; extra == "testing"
Requires-Dist: pytest-ruff>=0.2.1; extra == "testing"
Requires-Dist: pymongo>=3; extra == "testing"
Requires-Dist: jaraco.mongodb>=11.5.1; extra == "testing"
Requires-Dist: types-pyyaml; extra == "testing"
Provides-Extra: docs
Requires-Dist: sphinx>=3.5; extra == "docs"
Requires-Dist: jaraco.packaging>=9.3; extra == "docs"
Requires-Dist: rst.linker>=1.9; extra == "docs"
Requires-Dist: furo; extra == "docs"
Requires-Dist: sphinx-lint; extra == "docs"

.. image:: https://img.shields.io/pypi/v/librarypaste.svg
   :target: https://pypi.org/project/librarypaste

.. image:: https://img.shields.io/pypi/pyversions/librarypaste.svg

.. image:: https://github.com/jaraco/librarypaste/actions/workflows/main.yml/badge.svg
   :target: https://github.com/jaraco/librarypaste/actions?query=workflow%3A%22tests%22
   :alt: tests

.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json
    :target: https://github.com/astral-sh/ruff
    :alt: Ruff

.. .. image:: https://readthedocs.org/projects/PROJECT_RTD/badge/?version=latest
..    :target: https://PROJECT_RTD.readthedocs.io/en/latest/?badge=latest

.. image:: https://img.shields.io/badge/skeleton-2024-informational
   :target: https://blog.jaraco.com/skeleton

Usage
=====

Launch with the ``librarypaste``
command or with ``python -m librarypaste``. The library will host the service
on ``[::0]:8080`` by default. Pass cherrypy config files on the command line
to customize behaivor.

By default, the server saves pastes to the file system  in ``./repo`` using the
JSON store, but there is support for a MongoDB backend as well.

See also `lpaste <https://pypi.org/project/lpaste>`_ for a Python-based
client (including a clipboard helper) and Mac OS X App.
