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


[!NOTE] "Audire" is a Latin verb meaning "to hear" or "to listen." It's the root of many English words related to sound and listening, like "audit" and "auditory."

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))

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.0.1.tar.gz (5.1 kB view hashes)

Uploaded Source

Built Distribution

Audire-1.0.1-py3-none-any.whl (11.8 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