https://github.com/ravencentric/seadex
Python wrapper for the SeaDex API
https://github.com/ravencentric/seadex
python seadex
Last synced: about 1 year ago
JSON representation
Python wrapper for the SeaDex API
- Host: GitHub
- URL: https://github.com/ravencentric/seadex
- Owner: Ravencentric
- License: mit
- Created: 2024-09-12T20:34:32.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-06T21:44:25.000Z (about 1 year ago)
- Last Synced: 2025-06-06T22:29:16.186Z (about 1 year ago)
- Topics: python, seadex
- Language: Python
- Homepage: https://seadex.ravencentric.cc/
- Size: 964 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Python wrapper for the SeaDex API.
[](https://pypi.org/project/seadex/)





[](https://codecov.io/gh/Ravencentric/seadex)
## Table Of Contents
* [About](#about)
* [Installation](#installation)
* [Docs](#docs)
* [License](#license)
## About
Python wrapper for the [SeaDex API](https://releases.moe/about/).
## Installation
`seadex` is available on [PyPI](https://pypi.org/project/seadex/), and can be installed using [pip](https://pip.pypa.io/en/stable/installation/).
1. To install the core library:
```sh
pip install seadex
```
2. `seadex` includes optional dependencies that enable additional features. You can install these extras alongside the core library.
- To enable the `SeaDexTorrent` class, which handles `.torrent` files:
```sh
pip install "seadex[torrent]"
```
- To enable the CLI:
- With [`pipx`](https://pipx.pypa.io/stable/) or [`uv`](https://docs.astral.sh/uv/guides/tools/#installing-tools) (recommended for CLIs):
```sh
pipx install "seadex[cli]"
```
```sh
uv tool install "seadex[cli]"
```
- With `pip`:
```sh
pip install "seadex[cli]"
```
## Docs
Checkout the complete documentation [here](https://seadex.ravencentric.cc/).
## License
Distributed under the [MIT](https://choosealicense.com/licenses/mit/) License. See [LICENSE](https://github.com/Ravencentric/seadex/blob/main/LICENSE) for more information.