Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
datascout
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ABP Computing
ABP Computing Sandbox
datascout
Commits
6ae11e6f
Commit
6ae11e6f
authored
3 years ago
by
[ACC] Elena Operation
Browse files
Options
Downloads
Patches
Plain Diff
small bug
parent
a14e55a9
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#3614161
passed
3 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
datascout/_timescout.py
+4
-10
4 additions, 10 deletions
datascout/_timescout.py
with
4 additions
and
10 deletions
datascout/_timescout.py
+
4
−
10
View file @
6ae11e6f
...
...
@@ -3,8 +3,6 @@ Implementation of sweet functions to convert time data from one format to anothe
"""
import
pytz
import
datetime
import
time
from
dateutil.parser
import
parse
as
dateparser
def
unixtime_to_datetime
(
unixtime_ns
,
time_zone
=
'
utc
'
):
if
isinstance
(
time_zone
,
str
):
...
...
@@ -37,7 +35,7 @@ def datetime_to_unixtime(date_time):
epoch
=
datetime
.
datetime
.
fromtimestamp
(
0
,
tz
=
datetime
.
timezone
.
utc
)
return
int
((
date_time
-
epoch
).
total_seconds
()
*
1e6
)
*
1000
def
string_to_datetime
(
date_string
,
check_timezone
=
True
):
def
string_to_datetime
(
date_string
):
'''
Uses standard datetime function to parse a string in the ISO format
...
...
@@ -46,14 +44,10 @@ def string_to_datetime(date_string, check_timezone=True):
Out: datetime.datetime(2022, 1, 21, 15, 55, 34, 123555, tzinfo=datetime.timezone(datetime.timedelta(seconds=3600),
'
CET
'
))
:param date_string:
:param check_timezone: check that output datetime have a timezone. If not, add local timezone info (default=True)
:return:
'''
output
=
dateparser
(
date_string
)
if
check_timezone
and
output
.
tzinfo
is
None
:
local_time_zone
=
datetime
.
datetime
.
utcnow
().
astimezone
().
tzinfo
output
=
output
.
astimezone
(
local_time_zone
)
return
output
return
datetime
.
datetime
.
fromisoformat
(
date_string
).
astimezone
()
def
string_to_unixtime
(
date_string
):
'''
...
...
@@ -62,7 +56,7 @@ def string_to_unixtime(date_string):
:param date_string: date+time in ISO string format
:return: unix timestamp in ns
'''
return
datetime_to_unixtime
(
string_to_datetime
(
date_string
,
check_timezone
=
False
))
return
datetime_to_unixtime
(
string_to_datetime
(
date_string
))
def
unixtime_to_string
(
unixtime_ns
,
time_zone
=
'
utc
'
,
format
=
'
%Y-%m-%d %H:%M:%S.%f
'
):
'''
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment