I have the following code which submits links to Tinyurl:
for u in tinyurl.create('http://audiotechracy.blogspot.co.uk/2014/03/reviewing-synapse-antidote-rack.html',
'http://audiotechracy.blogspot.co.uk/2014/03/free-guitar-patches-for-propellerhead.html',
'http://audiotechracy.blogspot.co.uk/2014/02/get-free-propellerhead-rock-and-metal.html',
'http://audiotechracy.blogspot.co.uk/2014/02/in-spotlight-in-this-rack-extension.html',
However everytime I submit the link I always get the same shortened link. I did not realise this would be the case at first but it is apparently because Tinyurl uses an algorithm to shorten long links, thus causing the short link to be the same every time. On the Tinyurl site itself though there is an option to add a custom alias which will get around the problem, however I cannot find any syntax that shows how to do this via the Python Tinyurl module.
Does anyone know the syntax/have an alternative method they could suggest?
Thanks