1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-10-04 16:34:00 -04:00

[extractor/agora] Add extractors (#5101)

Authored by: selfisekai
This commit is contained in:
lauren
2022-11-04 15:54:05 +01:00
committed by GitHub
parent f72218c199
commit 78545664bf
3 changed files with 264 additions and 0 deletions

View File

@@ -149,6 +149,11 @@ MONTH_NAMES = {
'fr': [
'janvier', 'février', 'mars', 'avril', 'mai', 'juin',
'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'],
# these follow the genitive grammatical case (dopełniacz)
# some websites might be using nominative, which will require another month list
# https://en.wikibooks.org/wiki/Polish/Noun_cases
'pl': ['stycznia', 'lutego', 'marca', 'kwietnia', 'maja', 'czerwca',
'lipca', 'sierpnia', 'września', 'października', 'listopada', 'grudnia'],
}
# From https://github.com/python/cpython/blob/3.11/Lib/email/_parseaddr.py#L36-L42