GIAC
GPYC · Question #31
Review the lines of code below. Which of the following actions will they perform? ctrack=cookielib.CookieJar() cproc=urllib2.HTTPCookieProcessor(ctrack) bconn=urllib2.build_opener(cproc)…
The correct answer is A. Pass through proxy connections. You've hit your limit · resets 1pm (America/New_York)
Interacting with APIs & Databases
Question
Review the lines of code below. Which of the following actions will they perform?
ctrack=cookielib.CookieJar()
cproc=urllib2.HTTPCookieProcessor(ctrack)
bconn=urllib2.build_opener(cproc)
urllib2.install_opener(bconn)
Options
- APass through proxy connections.
- BSave non-http files from pages.
- CKeep session information in browser.
- DInteract with .js objects.
How the community answered
(46 responses)- A85% (39)
- B9% (4)
- C2% (1)
- D4% (2)
Explanation
You've hit your limit · resets 1pm (America/New_York)
Topics
#urllib2#HTTP cookies#cookielib#web sessions
Community Discussion
No community discussion yet for this question.