mirror of
https://github.com/BillyOutlast/OF-Scraper.git
synced 2026-07-01 12:17:25 -04:00
15 lines
310 B
Python
Executable File
15 lines
310 B
Python
Executable File
def get_alt_params(ele):
|
|
return {
|
|
"Policy": ele.policy,
|
|
"Key-Pair-Id": ele.keypair,
|
|
"Signature": ele.signature,
|
|
}
|
|
|
|
|
|
def get_alt_params_hls(ele):
|
|
return {
|
|
"Policy": ele.hls_policy,
|
|
"Key-Pair-Id": ele.hls_keypair,
|
|
"Signature": ele.hls_signature,
|
|
}
|