A Package to search and get download links for songs from various platforms asynchronously.
$ pip install audire
from audire import Audire
print(Audire().platforms)
import asyncio
from audire import Audire
async def main():
audire = Audire()
response = await audire.search("Pedro", platform="ytm")
print(response)
asyncio.run(main())
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())
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))
This project is licensed under the MIT License. See the MIT file for details.
If you wish to contribute to this project, please fork and create a pull request or submit an issue.
For any Questions or concerns, please contact me at:
- Telegram : @WH0907
- Email : [email protected]