10 examples of 'change date format python' in Python

Every line of 'change date format python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
23def convert_date_format(self, str, format):
24 """
25 Convert date string to other format date string.
26 The converter parser is based on the specifications below.
27
28 https://dateutil.readthedocs.io/en/stable/parser.html
29
30 Args:
31 str: string before convert
32 format: formatter
33
34 Returns:
35 str: new format date string or None if str is None
36 """
37 if not str:
38 return None
39
40 p = parser.parse(str)
41 return p.strftime(format)
6def format_date(date_object):
7 """Formats the date and returns the datetime object"""
8 # date_time = date_object.split("+")
9 return datetime.strptime(str(date_object), "%Y-%m-%dT%H:%M:%S")
40def format_date(date):
41 """Returns a formatted date string in a CloudTrail date format"""
42 return date.strftime(DATE_FORMAT)
73def python_to_ABAP_date(py_date):
74 return "{:04d}{:02d}{:02d}".format(py_date.year, py_date.month, py_date.day)
123def fmt_date(date: datetime.datetime) -> str:
124 return datetime.datetime.strftime(date, '%Y-%m-%dT%H:%M:%S')
62def date_handler(obj):
63 return obj.isoformat() if hasattr(obj, 'isoformat') else obj
17def format_datetime(str_datetime, old_format, new_format):
18 """字符串时间格式更改
19 2013-10-10 23:40:00 --> 2013/10/10 23:40:00
20 """
21 time_array = time.strptime(str_datetime, old_format)
22 new_format = time.strftime(new_format, time_array)
23 return new_format
39def convert_date(date):
40 return datetime.datetime.strptime(date, "%Y-%m-%dT%H:%M:%S.%fZ")
47def format_datetime(datestr, formatting):
48 parsed_dt = dateutil.parser.parse(datestr)
49 return parsed_dt.strftime(formatting)
395def format_date(d, dateformat="%Y-%m-%d"):
396 """
397 Formats a python date to the format given (strftime rules)
398 """
399 if d is None: return ""
400 try:
401 return time.strftime(dateformat, d.timetuple())
402 except:
403 return ""

Related snippets