https://github.com/tlater/pycurseforge
A Python wrapper around the (hidden) CurseForge API
https://github.com/tlater/pycurseforge
Last synced: 2 months ago
JSON representation
A Python wrapper around the (hidden) CurseForge API
- Host: GitHub
- URL: https://github.com/tlater/pycurseforge
- Owner: TLATER
- License: mit
- Created: 2021-07-25T02:31:18.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-25T02:35:47.000Z (almost 4 years ago)
- Last Synced: 2024-12-27T16:30:31.295Z (4 months ago)
- Homepage: https://pypi.org/project/PyCurseForge/
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# PyCurseForge
A thin Python wrapper around the (hidden) CurseForge API.
> 1.0.0 adds native support for the Minecraft interface, future interfaces planned (or can be PR'd if desired)
## Basic Usage
```python
import curseforge
mc = curseforge.Minecraft()
jei = mc.get_addon(238222)
print(jei.display_name)
```
More examples can be found under the ``examples/`` folder.## Installation
This wrapper is available on PyPI:
```
# Windows
py -3 -m pip install PyCurseForge# Linux, MacOS or other
pip3 install PyCurseForge
```
Or if you want the development version, install via GitHub (requires ``Git`` to be installed and on PATH):
```
py -3 -m pip install git+https://github.com/XuaTheGrate/PyCurseForgepip3 install git+https://github.com/XuaTheGrate/PyCurseForge
```## Ammendment
Pull requests are welcome any time.
If you need to contact me for any reason, please join [the official discord.py server](https://discord.gg/dpy/) and ping ``Maya#0006`` in ``#general``.