Python: how to get present date of a particular timezone more efficiently












0














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())









share|improve this question
























  • 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












  • 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


















0














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())









share|improve this question
























  • 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












  • 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
















0












0








0







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())









share|improve this question















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 19 '18 at 14:18

























asked Nov 19 '18 at 13:16









A T M Ragib Raihan

11




11












  • 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












  • 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










  • 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










  • 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



















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
});


}
});














draft saved

draft discarded


















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
















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

How to fix TextFormField cause rebuild widget in Flutter