In my django project I have a small hotel database which has fields city
and country
.
Can I get the timezone
for that place by passing the city
and country
as parameters in someway.
The reason I want to do this is because I have some commands that work based on the difference in check-in
time of hotels and the time at that hote now . Since datetime.now() gives naive datetime I cannot use it to compare with the hotel time.
How do I look forward to the solution. Thanks :)
To resolve a time zone by city and country, you will first need to obtain latitude/longitude coordinates. There are multiple ways to do that, including various databases of cities, airport codes, or by reverse geocoding addresses.
Be aware that there are some cities in the world that have portions that observe different time zones. In those cases, you may have some small margin of error. See this post: can 2 timezone be for 1 city?
Since you said you are looking for locations of specific places (hotels), you would probably be better off geocoding the exact coordinates of each place using its full address. There are many services for this, such as the one provided by Google here.
Then use the coordinates in one of the services described here: How to get a time zone from a location using latitude and longitude coordinates?
Once you have the time zone id, such as Asia/Seoul
or America/New_York
, then you can use it in pytz functions, as user falsetru showed in his answer.
You could speed things up a bit by checking ahead of time if the city you are interested is already one of the ones defined in the time zone database. But there are thousands of more cities in the world than just those key cities with time zone ids.
Other Ideas
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With