Skip to main content

A Package to search and get download links for songs from various platforms asynchronously.

Project description

Audire

A Package to search and get download links for songs from various platforms asynchronously.

Python PyPI - Version

Installation

$ pip install audire

Usage Examples

Get Supported Platforms as List :

from audire import Audire

print(Audire().platforms)

Search on Youtube Music :

import asyncio
from audire import Audire

async def main():
    audire = Audire()
    response = await audire.search("Pedro", platform="ytm")
    print(response)

asyncio.run(main())

Getting Download Link from YouTube :

import asyncio
from audire import Audire

async def main():
    audire = Audire()
    response = await audire.get_download('https://www.youtube.com/watch?v=RCqvSSfsP6w', 'yt')
    print(response)

asyncio.run(main())

Documentation

There is no documentation as of now. However, you can take help from the well written docstrings this way:

from audire import Audire

print(help(Audire().search))

License

This project is licensed under the MIT License. See the MIT file for details.

Contributing

If you wish to contribute to this project, please fork and create a pull request or submit an issue.

Contact

For any Questions or concerns, please contact me at:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

audire-1.1.0.tar.gz (5.8 kB view hashes)

Uploaded Source

Built Distribution

Audire-1.1.0-py3-none-any.whl (13.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page