You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My current script is: css2rss.py ".img" "!gothicarchitectures" ~ ~ ?
I get the images and the username, but I haven't been able to correctly point to the photo description to be the 2nd part of the title, the problem being that it's not visibly displayed, but instead present as a alt text inside the img element itself
Basically, is it possible to get the highlighted part to be the title 2nd part? It seems to be the only place where the photo description is present without opening the link for the photo itself, but I just don't know how to specify that I only want that part
The text was updated successfully, but these errors were encountered:
Update the script to the new version and try python css2rss.py ".img" "$found_link.find('img')['alt'][:60]" "$str(found_link.find('img'))+'<br>'+found_link.find('img')['alt']"
Oh wow, thank you so much man, that was really quick
Just a quick question to make sure I understand the reasoning, In $found_link.find('img')['alt'][:60] I'm guessing ('img') in parenthesis is the element to search in, ['alt'] in brackets is what you actually want to select and [:60] is the letter limit count?
Just a quick question to make sure I understand the reasoning, In $found_link.find('img')['alt'][:60] I'm guessing ('img') in parenthesis is the element to search in, ['alt'] in brackets is what you actually want to select and [:60] is the letter limit count?
Hello there, I'm having a problem trying to point to a somewhat "hidden" element in this page: https://imginn.com/gothicarchitectures/
My current script is:
css2rss.py ".img" "!gothicarchitectures" ~ ~ ?
I get the images and the username, but I haven't been able to correctly point to the photo description to be the 2nd part of the title, the problem being that it's not visibly displayed, but instead present as a alt text inside the img element itself
Basically, is it possible to get the highlighted part to be the title 2nd part? It seems to be the only place where the photo description is present without opening the link for the photo itself, but I just don't know how to specify that I only want that part
The text was updated successfully, but these errors were encountered: