Parse the title of a YouTube video to try and get artist & song name
Project description
youtube title parse
Parse the title of a YouTube video to try and get artist & song name.
Description
Video titles on YouTube follow no strict format, and so passing the titles directly to music APIs to fetch metadata hardly works. This module attempts to recognize common patterns (using regex) and extract artist and song name.
Installation
To install youtube_title_parse, simply use pipenv (or pip, of course):
pipenv install youtube_title_parse
Usage
CLI
youtube_title_parse
comes with a CLI that you can use directly:
$ youtube_title_parse "Seoul - Stay With Us (Official Video)"
Seoul - Stay With Us
Module
You can also import youtube_title_parse
as a module.
from youtube_title_parse import get_artist_title
artist, title = get_artist_title("Seoul - Stay With Us (Official Video)")
assert artist == "Seoul"
assert title == "Stay With Us"
Credits
This module is originally a Python3 rewrite of the equivalent npm library, get-artist-title
, but adds some extra functionality to catch more patterns.
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
License
youtube-title-parse is made available under the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file youtube_title_parse-1.0.0.tar.gz
.
File metadata
- Download URL: youtube_title_parse-1.0.0.tar.gz
- Upload date:
- Size: 13.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 350cc055c058e8f639ac7e1cbc67a1fb485a4bb5fcd1f9645d79d1ccc8e3518d |
|
MD5 | 682eed5c5584d8cf21e9ac61a69a8261 |
|
BLAKE2b-256 | 347259407b949e51e6f174d4b6ceaa175034a66c6b6770285242cc41d8e2c775 |
File details
Details for the file youtube_title_parse-1.0.0-py2.py3-none-any.whl
.
File metadata
- Download URL: youtube_title_parse-1.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 9.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 88c9413e9f478affa9152dd234ec55223e4b8785973707f87f67fe1b55f61b85 |
|
MD5 | fc207f7ea6bc9b13680c1e2a14126117 |
|
BLAKE2b-256 | a6a4d2fd0eaee9739098afadf71560e817ccd1c057275c3724ec9b8b36fb5c9a |