Doodstream API wrapper
This is an un-official Doodstream python API Wrapper is just an upgrade or what you can say a maintained fork of THIS!
Report Bug
ยท
Request Feature
Table of Contents
๐ค
About The Project This API Wrapper is an unofficial python wrapper for the doodstream API. What is DoodStream? DoodStream is a profitable video hosting service where you can upload, share, and view videos and listen to audios online. It is said that you can get paid for the tasks assigned on this website such as uploading and sharing videos or referring.
๐โโ๏ธ
Getting Started Install python :\ and goto next step
๐
Installation pip install doodstream_api
๐ก
Usage Use it as Python Module
from doodstream_api import doodstream_conf
ds = doodstream_conf('23JC3hcvxxxxxxxxx')
# Check doodstream account info
ds.account_info()
# Check doodstream account reports
ds.account_reports()
# Check DMCA reports for Videos
ds.account_dmca()
# Upload video file from local storage
ds.local_upload("PATH_TO_YOUR_VIDEO")
# Copy/Clone Video to your account
ds.copy_video("FILE_ID")
# Upload video from direct links
ds.remote_upload("DIRECT_VIDEO_LINK")
# Get list & status of remote uploads (errors, current uploads, etc.)
ds.remote_upload_list()
# Get only status of remote uploads
ds.remote_upload_status()
# Info for slots in remote upload
ds.remote_upload_slots()
# Perform Various Action on remote upload
ds.remote_upload_action()
# Create new folder
ds.folder_create('FOLDER_NAME')
# Rename folders
ds.folder_rename('FOLDER_ID','FOLDER_NAME')
# List Files in your Doodstream Account
ds.file_list()
# Specific file status
ds.file_status('FOLDER_ID')
# Get basic file info
ds.file_info("FILE_ID")
# Get file image
ds.file_image('FILE_ID')
# Specific File rename
ds.file_rename('FILE_ID', 'NEW_FILE_NAME')
# Search videos in your Doodstream account
d.file_search("YOUR_KEYWORD")
๐ทโโ๏ธ
TODO - Doodstream CLI
- Handle more exceptions!
See the open issues for a full list of proposed features (and known issues).
๐
License Distributed under the MIT License. See LICENSE.txt for more information.