Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
  • Loading branch information
datakund committed Mar 25, 2022
1 parent 39c8d44 commit 02cd3b8
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions docs/source/youtube.rst
Original file line number Diff line number Diff line change
Expand Up @@ -637,3 +637,37 @@ It returns title of video passed in video_url if exists, otherwise returns None
"errors": "[]"
}
YouTube - Create Playlist
#########################

It creates new playlist with the name given in input variable.

.. tabs::

.. code-tab:: py

#pip install bot_studio
from bot_studio import *
dk=bot_studio.new()
dk.youtube_create_playlist()

.. code-tab:: javascript
NodeJS

//npm i datakund
var datakund=require('datakund');
datakund.youtube_create_playlist();

**Response Data**

.. code-block:: json
{
"resume_variable": "0",
"success_score": "100",
"body": {
"playlist_link": "https://www.youtube.com/playlist?list=PL1Hy5whX8xEkFIKVTwc2-U96-zpTMlAgk"
},
"errors": "[]"
}

0 comments on commit 02cd3b8

Please sign in to comment.