Py-EgyBest-Api

Asynchronous Python Wrapper For EgyBest-API.


Keywords
EgyBest, Api, Scrapper, Python
License
MIT
Install
pip install Py-EgyBest-Api==22.9.16

Documentation

RUN

Asynchronous Python Wrapper For EgyBest-API.

contributors last update forks stars open issues license Total Downloads

API Repository Β· Documentation Β· Report Bug Β· Request Feature


πŸ” Requirements:

πŸ—œ Installation:

$ pip3 install Py-EgyBest-Api

❓ Usage:

For Example, To Get Direct Links, You Can Do This

from EgyBestAPI import RaEye
from asyncio import run

x = RaEye("http://0.1.2.3", access_token="abcd", id=None, password=None)

async def main():
    z = await x.dls(url="https://www.egybest.org/movie/top-five-2014", version=2)

    print(z)
    # output: DotMap(a=1, b=2)

    print(z.toDict())
    # output: {'a': 1, 'b': 2}

    print(z.type)
    print(z["type"])
    # output: movie

run(main())

πŸͺ Documentation:

There Is No Documentation, But You Can Take Help From The DocStrings :

from EgyBestAPI import RaEye

print(help(RaEye.dls))

⭐️ Features:

  • Todo 1

🧭 RoadMap:

  • Todo 2

πŸ’¬ Support:

πŸ‘¨β€πŸ’» Developer:

πŸ“ License:

This Project Is Licensed Under The MIT License

πŸ“­ Credits:

🌍 Contributing:

Contributions Are Always Welcome! See contributing.md For Ways To Get Started.