Is your feature request related to a problem? Please describe.
Compare these two cases of setting User Agent string:
- Setting default UA in
config.yaml:
job_defaults:
url:
headers:
User-Agent: 'Mozilla/5.0'
- Setting job-specific UA in
jobs.yaml:
url: https://lynx.invisible-island.net
headers:
User-Agent: 'Lynx'
The difference in url structure between config.yaml and jobs.yaml introduces unnecessary ambiguity.
Describe the solution you'd like.
For example:
config.yaml:
job_defaults:
http:
headers:
User-Agent: 'Mozilla/5.0'
jobs.yaml:
url: https://lynx.invisible-island.net
http:
headers:
User-Agent: 'Lynx'
Is your feature request related to a problem? Please describe.
Compare these two cases of setting User Agent string:
config.yaml:jobs.yaml:The difference in
urlstructure betweenconfig.yamlandjobs.yamlintroduces unnecessary ambiguity.Describe the solution you'd like.
For example:
config.yaml:jobs.yaml: