Skip to content

papermcpy

Papermcpy is a Python API Wrapper for PaperMC's Downloads API

Papermcpy package is available at https://pypi.org/project/papermcpy/

Installation

python3 -m pip install papermcpy

Usage

Papermcpy can run synchronously (sync) or asynchronously (async), and by default runs synchronously.

To import papermcpy use:

import papermcpy

And to import async papermcpy use:

import papermcpy.a as papermcpy

Besides synchronicity, there is no difference between either.

Back to top