http - Reading results of url request into python script -
i new python , trying read results of http request x parameters within python script can perform further tasks on it.
to me more specific, request takes characteristics , sends list of files corresponding given parameters. part of resulting xml doc url each file, trying access.
this segment of have far, prints result of request, need read part of result.
import requests link = "http://examplelink.com" f = requests.get(link) print f.text
i thinking possibly string matching search url, i'm positive there's easier way. using urllib in program, if thats solution i'm totally open it. i'm not tied using requests.
let me know if have questions!
Comments
Post a Comment