Yes sir, i checked the docs, but there's everything related to session present in sdks as well, except for creating session in python sdk, i think that should also have been there, since you're providing listing of sessions, deleting of sessions getting sessions based on session ID, etc.
so my customer wants a login system built with dashboard and users should be able to paste video links, which will be converted to audio and added to theri respective google drive links
my approach: i'm using flask as backend, and next-js for frontend
video-audio conversion : will come from frontend to flask and then to background process
audio-upload: will trigger from frontend to flask and then to background process
thought: since the video to audio conversion and audio upload to google drive is long process (this has to be background process, hence i'll be using celery to achieve this part)
but this celery can only be triggered from frontend > flask > celery
eventually i want to deploy this to AWS, as my customer has some credits available there, (so i'm using cloud functionality and not the docker for local system)
please let me know your thoughts on this!