I am trying to get all the urls of images that are used within a css file. For example this is part of my css file:
sitewrap {
width: 890px;
margin: 0 auto;
background: #ffffff url(../images/bg_sitewrap.gif) repeat-y;
}
How can receive just the ../images/bg_sitewrap.gif section of it, in python preferably?
Thanks in advance for the assistance!