Skip to content

Latest commit

 

History

History
73 lines (49 loc) · 1.75 KB

README.md

File metadata and controls

73 lines (49 loc) · 1.75 KB

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: