Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
What Format
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Anton Sarukhanov
What Format
Commits
b8723db9
Commit
b8723db9
authored
5 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
Exclude redundant and likely-wrong formats.
parent
51269377
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
whatformat/util/whatdateformat.py
+16
-6
16 additions, 6 deletions
whatformat/util/whatdateformat.py
with
16 additions
and
6 deletions
whatformat/util/whatdateformat.py
+
16
−
6
View file @
b8723db9
"""
Function(s) for getting a format string from a date string.
"""
import
re
from
copy
import
copy
from
itertools
import
product
from
collections
import
defaultdict
,
Counter
from
typing
import
Dict
,
Iterator
,
List
...
...
@@ -15,9 +16,11 @@ FORMAT_DIRECTIVES = [
DATE_TOKEN_REGEX
=
re
.
compile
(
r
'
([\w]+)|([\W]+)
'
)
# pylint: disable=too-many-locals
def
get_all_format_strings
(
date_string
,
allow_reuse
=
False
,
no_zero
=
False
)
->
Iterator
[
str
]:
# pylint: disable=too-many-locals,too-many-branches
def
_get_all_format_strings
(
date_string
,
allow_reuse
=
False
,
include_day_of_year
=
False
,
include_week_number
=
False
,
no_zero
=
False
)
->
Iterator
[
str
]:
"""
Yield date format strings which match date_string.
"""
try
:
parsed_datetime
=
parse
(
date_string
)
...
...
@@ -26,7 +29,14 @@ def get_all_format_strings(date_string, allow_reuse=False,
return
tokens
=
DATE_TOKEN_REGEX
.
findall
(
date_string
)
possible_matches
=
defaultdict
(
list
)
# type: Dict[str, List[str]]
for
test_format
in
FORMAT_DIRECTIVES
:
format_directives
=
copy
(
FORMAT_DIRECTIVES
)
if
not
include_day_of_year
:
format_directives
.
remove
(
'
%-j
'
)
format_directives
.
remove
(
'
%j
'
)
if
not
include_week_number
:
for
directive
in
(
'
%W
'
,
'
%w
'
,
'
%U
'
):
format_directives
.
remove
(
directive
)
for
test_format
in
format_directives
:
test_string
=
parsed_datetime
.
strftime
(
test_format
)
possible_matches
[
test_string
.
lower
()].
append
(
test_format
)
possible_parts
=
[]
...
...
@@ -46,7 +56,7 @@ def get_all_format_strings(date_string, allow_reuse=False,
if
not
allow_reuse
:
counts
=
Counter
(
sequence
)
max_count
=
max
(
counts
[
diretive
]
for
diretive
in
FORMAT_DIRECTIVES
)
counts
[
diretive
]
for
diretive
in
format_directives
)
if
max_count
>
1
:
continue
format_string
=
""
.
join
(
sequence
)
...
...
@@ -77,4 +87,4 @@ def _remove_extra_nlz(combinations) -> Iterator[List[str]]:
def
get_unique_format_strings
(
date_string
,
allow_reuse
=
False
)
->
List
[
str
]:
"""
Return date format strings matching date_string, without duplicates.
"""
return
list
(
set
(
get_all_format_strings
(
date_string
,
allow_reuse
)))
return
list
(
set
(
_
get_all_format_strings
(
date_string
,
allow_reuse
)))
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