So I was looking at some source code and I came across this bit of code
<img src="/gallery/2012-winners-finalists/HM_Watching%20birds2_Shane%20Conklin_MA_2012.jpg"
now in the source code the link is blue and when you click it, it takes you to the full URL where that picture is located, I know how to get what is shown in the source code in Python using Beautiful Soup I was wondering though how to get the full URL you get once clicking the link in the source code?
EDIT:
if I was given <a href = "/folder/big/a.jpg"
how do you figure out the starting part of that url through python or beautiful soup?