Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kiing-dom/youtube-title-updater
This project provides a script to mass edit YouTube video titles using the YouTube Data API.
https://github.com/kiing-dom/youtube-title-updater
google-developers python python-script youtube youtube-api youtube-data-api-v3 youtube-title
Last synced: 2 months ago
JSON representation
This project provides a script to mass edit YouTube video titles using the YouTube Data API.
- Host: GitHub
- URL: https://github.com/kiing-dom/youtube-title-updater
- Owner: kiing-dom
- Created: 2024-09-10T08:30:17.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-09-25T07:33:50.000Z (3 months ago)
- Last Synced: 2024-09-27T12:01:14.803Z (3 months ago)
- Topics: google-developers, python, python-script, youtube, youtube-api, youtube-data-api-v3, youtube-title
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# YouTube Title Updater
This project provides a script to mass edit YouTube video titles using the YouTube Data API. It's designed to update video titles from "Road to Employment" to "Road to SWE".
`DISCLAIMER: this will clear your videos' descriptions and tags`## Setup
1. Clone this repository:
```
git clone https://github.com/yourusername/youtube-title-updater.git
cd youtube-title-updater
```2. Set up a virtual environment:
```
python -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate`
```3. Install dependencies:
```
pip install -r requirements.txt
```4. Set up Google Cloud project and enable YouTube Data API v3.
5. Create OAuth 2.0 credentials and download the client configuration.
6. Rename the downloaded file to `client_secrets.json` and place it in the project root.
7. Copy `.env.example` to `.env` and update with your configuration.
## Usage
Run the script:
```
python src/youtube_updater.py
```## Testing
Run tests:
```
python -m pytest
```## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
## License
[MIT](https://choosealicense.com/licenses/mit/)