I'm new to python,learning the basics.
My Query : I have multiple pages accessed as a request from a log file like the below,
"GET /img/home/search-user-ico.jpg HTTP/1.1"
"GET /SpellCheck/am.tlx HTTP/1.1"
"GET /img/plan-comp-nav.jpg HTTP/1.1"
"GET /ie6.css HTTP/1.1"
"GET /img/portlet/portlet-content-bg.jpg HTTP/1.1"
"GET /SpellCheck/am100k2.clx HTTP/1.1"
"GET /SpellCheck/am.tlx HTTP/1.1"
My question is i want only the file part from the page,
For example,
Let us consider "GET /img/home/search-user-ico.jpg HTTP/1.1" ,"GET /ie6.css HTTP/1.1" as a page then from the above i want to split search-user-ico.jpg HTTP, ie6.css HTTP.
so experts please help me in writing the python script for the above to split.