Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/Datenlord1510/PYxREL

A Python API wrapper for the official xREL API.
https://github.com/Datenlord1510/PYxREL

Last synced: about 2 months ago
JSON representation

A Python API wrapper for the official xREL API.

Awesome Lists containing this project

README

        

# PYxREL

This is a Python API wrapper for the official xREL API, providing an easy way to access xREL's service and data.

## Usage
You can use this package by importing the `xREL` class directly into your Python scripts. Here's how to do it:

```Python
from pyxrel import xREL

# Create an instance of the xREL class
xrel = xREL()

# Use the xREL API methods
result = xrel.SomeClass.some_method()
```
*SomeClass* should be replaced by *Search*, *P2P*, *ExtInfo* or any other class the xREL API offers methods for.

Please note that currently the OAuth authentication is not implemented. However, all other methods that do not require authentication are available for use. Feel free to make a pull request!

## Documentation

For further information on the implemented methods please have a look at the [official xREL-API documentation](https://www.xrel.to/wiki/1681/API.html).