
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
simple-youtube-api
Advanced tools
.. image:: https://badge.fury.io/py/simple-youtube-api.svg :target: https://badge.fury.io/py/simple-youtube-api :alt: Simple YouTube API page on the Python Package Index .. image:: https://travis-ci.org/jonnekaunisto/simple-youtube-api.svg?branch=master :target: https://travis-ci.org/jonnekaunisto/simple-youtube-api :alt: Build status on travis .. image:: https://coveralls.io/repos/github/jonnekaunisto/simple-youtube-api/badge.svg?branch=master :target: https://coveralls.io/github/jonnekaunisto/simple-youtube-api?branch=master :alt: Coverage on coveralls
Simple Youtube API(full documentation_) is a Youtube API wrapper for python, making it easier to search and upload your videos.
In this example we log in into a YouTube channel, set the appropriate variables for a video and upload the video to the YouTube channel that we logged into:
.. code:: python
from simple_youtube_api.Channel import Channel
from simple_youtube_api.LocalVideo import LocalVideo
# loggin into the channel
channel = Channel()
channel.login("client_secret.json", "credentials.storage")
# setting up the video that is going to be uploaded
video = LocalVideo(file_path="test_vid.mp4")
# setting snippet
video.set_title("My Title")
video.set_description("This is a description")
video.set_tags(["this", "tag"])
video.set_category("gaming")
video.set_default_language("en-US")
# setting status
video.set_embeddable(True)
video.set_license("creativeCommon")
video.set_privacy_status("private")
video.set_public_stats_viewable(True)
# setting thumbnail
video.set_thumbnail_path('test_thumb.png')
# uploading video and printing the results
video = channel.upload_video(video)
print(video.id)
print(video)
# liking video
video.like()
Simple YouTube API needs API keys from Google in order to be able to make queries to YouTube.
Installation by hand: you can download the source files from PyPi or Github:
.. code:: bash
python setup.py install
Installation with pip: make sure that you have pip installed, type this in a terminal:
.. code:: bash
pip install simple-youtube-api
For user data: 5. Select OAuth Client ID 6. Select that you will call API from "Web Server" 7. Download or copy your API key from the Credentials tab
For non-user data 5. Select API Key 6. Paste the key into a file
Run the python command
.. code:: bash
python setup.py test
YouTube API Documentation_
Python YouTube API Examples_
.. code:: bash
git clone https://github.com/yourname/simple-youtube-api.git
.. code:: bash
git remote add upstream https://github.com/jonnekaunisto/simple-youtube-api.git
4. Create a pull request and follow the guidelines
jonnekaunisto (owner)
.. _YouTube API Documentation: https://developers.google.com/youtube/v3/docs/
.. _Python YouTube API Examples: https://github.com/youtube/api-samples/tree/master/python
.. _documentation: https://simple-youtube-api.readthedocs.io/
FAQs
A python YouTube API wrapper
We found that simple-youtube-api demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.