Python: how to get present date of a particular timezone more efficiently
I solve this task by this following code. But is there any other way that is more efficient? More specifically I want to do this same job without using the datetime.datetime.now()
method. I need the only date, not the whole datetime.
import pytz, datetime
print(datetime.datetime.now(pytz.timezone('US/Pacific')).date())
python datetime timezone
add a comment |
I solve this task by this following code. But is there any other way that is more efficient? More specifically I want to do this same job without using the datetime.datetime.now()
method. I need the only date, not the whole datetime.
import pytz, datetime
print(datetime.datetime.now(pytz.timezone('US/Pacific')).date())
python datetime timezone
Adate
have notimezone
, therfore you have to go withdatetime
.
– stovfl
Nov 19 '18 at 13:39
date
obviously has atimezone
. As an example- now in Bangladesh the date is 19-11-2018, but in USA the date is 20-11-2018. Actuality I had built a django app and host it in an US server. I want to work with my local date but the app is working with the US date.
– A T M Ragib Raihan
Nov 19 '18 at 14:21
Read UTC_offsets_worldwide and compare Time Difference Bangladesh Los Angeles
– stovfl
Nov 19 '18 at 16:21
A date by itself does not have a time zone. It's only when you apply a time that time zones come into play. If you ask what date it is "now", then that is applying the current time and a time zone - either a specific or implied. Consider if I just had a printed paper calendar, like those they sell to hang on your wall every year showing the days of the month of a particular year. There are no time zones involved in making that calendar. It's only when one looks at it and points to a particular square and calls it "today" that that person's local time zone comes into play.
– Matt Johnson
Nov 20 '18 at 17:28
add a comment |
I solve this task by this following code. But is there any other way that is more efficient? More specifically I want to do this same job without using the datetime.datetime.now()
method. I need the only date, not the whole datetime.
import pytz, datetime
print(datetime.datetime.now(pytz.timezone('US/Pacific')).date())
python datetime timezone
I solve this task by this following code. But is there any other way that is more efficient? More specifically I want to do this same job without using the datetime.datetime.now()
method. I need the only date, not the whole datetime.
import pytz, datetime
print(datetime.datetime.now(pytz.timezone('US/Pacific')).date())
python datetime timezone
python datetime timezone
edited Nov 19 '18 at 14:18
asked Nov 19 '18 at 13:16


A T M Ragib Raihan
11
11
Adate
have notimezone
, therfore you have to go withdatetime
.
– stovfl
Nov 19 '18 at 13:39
date
obviously has atimezone
. As an example- now in Bangladesh the date is 19-11-2018, but in USA the date is 20-11-2018. Actuality I had built a django app and host it in an US server. I want to work with my local date but the app is working with the US date.
– A T M Ragib Raihan
Nov 19 '18 at 14:21
Read UTC_offsets_worldwide and compare Time Difference Bangladesh Los Angeles
– stovfl
Nov 19 '18 at 16:21
A date by itself does not have a time zone. It's only when you apply a time that time zones come into play. If you ask what date it is "now", then that is applying the current time and a time zone - either a specific or implied. Consider if I just had a printed paper calendar, like those they sell to hang on your wall every year showing the days of the month of a particular year. There are no time zones involved in making that calendar. It's only when one looks at it and points to a particular square and calls it "today" that that person's local time zone comes into play.
– Matt Johnson
Nov 20 '18 at 17:28
add a comment |
Adate
have notimezone
, therfore you have to go withdatetime
.
– stovfl
Nov 19 '18 at 13:39
date
obviously has atimezone
. As an example- now in Bangladesh the date is 19-11-2018, but in USA the date is 20-11-2018. Actuality I had built a django app and host it in an US server. I want to work with my local date but the app is working with the US date.
– A T M Ragib Raihan
Nov 19 '18 at 14:21
Read UTC_offsets_worldwide and compare Time Difference Bangladesh Los Angeles
– stovfl
Nov 19 '18 at 16:21
A date by itself does not have a time zone. It's only when you apply a time that time zones come into play. If you ask what date it is "now", then that is applying the current time and a time zone - either a specific or implied. Consider if I just had a printed paper calendar, like those they sell to hang on your wall every year showing the days of the month of a particular year. There are no time zones involved in making that calendar. It's only when one looks at it and points to a particular square and calls it "today" that that person's local time zone comes into play.
– Matt Johnson
Nov 20 '18 at 17:28
A
date
have no timezone
, therfore you have to go with datetime
.– stovfl
Nov 19 '18 at 13:39
A
date
have no timezone
, therfore you have to go with datetime
.– stovfl
Nov 19 '18 at 13:39
date
obviously has a timezone
. As an example- now in Bangladesh the date is 19-11-2018, but in USA the date is 20-11-2018. Actuality I had built a django app and host it in an US server. I want to work with my local date but the app is working with the US date.– A T M Ragib Raihan
Nov 19 '18 at 14:21
date
obviously has a timezone
. As an example- now in Bangladesh the date is 19-11-2018, but in USA the date is 20-11-2018. Actuality I had built a django app and host it in an US server. I want to work with my local date but the app is working with the US date.– A T M Ragib Raihan
Nov 19 '18 at 14:21
Read UTC_offsets_worldwide and compare Time Difference Bangladesh Los Angeles
– stovfl
Nov 19 '18 at 16:21
Read UTC_offsets_worldwide and compare Time Difference Bangladesh Los Angeles
– stovfl
Nov 19 '18 at 16:21
A date by itself does not have a time zone. It's only when you apply a time that time zones come into play. If you ask what date it is "now", then that is applying the current time and a time zone - either a specific or implied. Consider if I just had a printed paper calendar, like those they sell to hang on your wall every year showing the days of the month of a particular year. There are no time zones involved in making that calendar. It's only when one looks at it and points to a particular square and calls it "today" that that person's local time zone comes into play.
– Matt Johnson
Nov 20 '18 at 17:28
A date by itself does not have a time zone. It's only when you apply a time that time zones come into play. If you ask what date it is "now", then that is applying the current time and a time zone - either a specific or implied. Consider if I just had a printed paper calendar, like those they sell to hang on your wall every year showing the days of the month of a particular year. There are no time zones involved in making that calendar. It's only when one looks at it and points to a particular square and calls it "today" that that person's local time zone comes into play.
– Matt Johnson
Nov 20 '18 at 17:28
add a comment |
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53375476%2fpython-how-to-get-present-date-of-a-particular-timezone-more-efficiently%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53375476%2fpython-how-to-get-present-date-of-a-particular-timezone-more-efficiently%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
A
date
have notimezone
, therfore you have to go withdatetime
.– stovfl
Nov 19 '18 at 13:39
date
obviously has atimezone
. As an example- now in Bangladesh the date is 19-11-2018, but in USA the date is 20-11-2018. Actuality I had built a django app and host it in an US server. I want to work with my local date but the app is working with the US date.– A T M Ragib Raihan
Nov 19 '18 at 14:21
Read UTC_offsets_worldwide and compare Time Difference Bangladesh Los Angeles
– stovfl
Nov 19 '18 at 16:21
A date by itself does not have a time zone. It's only when you apply a time that time zones come into play. If you ask what date it is "now", then that is applying the current time and a time zone - either a specific or implied. Consider if I just had a printed paper calendar, like those they sell to hang on your wall every year showing the days of the month of a particular year. There are no time zones involved in making that calendar. It's only when one looks at it and points to a particular square and calls it "today" that that person's local time zone comes into play.
– Matt Johnson
Nov 20 '18 at 17:28