Using Python/Django 1.5.4, I am trying to find a way of getting the current time in London, UK.
It seems to be surprisingly complicated to do so.
Obviously there is the time.time(), datetime.now(), datetime.utcnow(), but these methods return the server time.
This is a problem because the server may not be in the UK and the above methods don't take daylight saving into account.
Is there a simple, straightforward way of doing this without excessive imports and third-party apps?