Skip to content

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

License

Notifications You must be signed in to change notification settings

LinuxGuy312/Audire

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

About

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages