Skip to content

An asynchronous Python library for interacting with the Videocdn.tv API.

License

Notifications You must be signed in to change notification settings

notssh/videocdn-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

videocdn-api

An asynchronous Python library for interacting with the Videocdn.tv API.

Uses aiohttp as client and pydantic for models

VideoCDN API Documentaion

Usage example

import asyncio
from videocdn_api import Api
api = Api('your_videocdn_token')

async def example():
    response = await api.short.get(title='Миньоны')
    print(response)
    return
if __name__ == '__main__':
    asyncio.run(example())

Development progress

  • Official API Support
    • short
    • translations
    • movies
    • anime
    • *-series
    • *-series/seasons
    • *-series/episodes
  • Features
    • Direct links extractor

TODO

  • Better exception handling
  • Direct link extractor
  • Upload to PyPi?
  • ???

About

An asynchronous Python library for interacting with the Videocdn.tv API.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages