An open API service indexing awesome lists of open source software.

https://github.com/slice/mdl

Curseforge mod downloading library for Python 3.6+.
https://github.com/slice/mdl

Last synced: about 1 year ago
JSON representation

Curseforge mod downloading library for Python 3.6+.

Awesome Lists containing this project

README

          

# mdl

mdl is a Python 3.6 library and script aimed at making downloading things from
Curseforge easier and intuitive.

## Installing

Python 3.6+ required.

```sh
$ pip3 install 'git+https://github.com/slice/mdl.git'
```

### Dependencies

Installed by `pip` automatically:

* `requests`
* `beautifulsoup4`

## Usage

```py
>>> from mdl.curse import search
>>> results = search('Tinkers Construct')
>>> results
[
,
,
]
>>> next(project for project in results if project.name == 'Tinkers Construct')

>>> tinkers_construct = _
>>> tinkers_construct.files()
[
,
,
]
```