Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Armory Dashboard
Manage
Activity
Members
Labels
Plan
Issues
1
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
Armory Dashboard
Commits
5d5d3a61
Commit
5d5d3a61
authored
2 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
Update for prod
parent
c1541bda
No related branches found
No related tags found
No related merge requests found
Pipeline
#269
canceled with stage
Stage:
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app.py
+2
-0
2 additions, 0 deletions
app.py
scraper.py
+19
-11
19 additions, 11 deletions
scraper.py
with
21 additions
and
11 deletions
app.py
+
2
−
0
View file @
5d5d3a61
...
...
@@ -14,6 +14,8 @@ DISPLAY_DATE_FORMAT = '%A, %B %-d, %Y'
DISPLAY_TIME_FORMAT
=
'
%-I:%M %p on %A
'
app
.
config
[
'
APPLICATION_ROOT
'
]
=
'
/armory
'
def
_make_cache_key
():
"""
Create a cache key for Flask-Caching.
"""
path
=
request
.
path
...
...
This diff is collapsed.
Click to expand it.
scraper.py
+
19
−
11
View file @
5d5d3a61
...
...
@@ -5,6 +5,7 @@ from concurrent.futures import ThreadPoolExecutor
from
datetime
import
date
,
datetime
,
timedelta
from
urllib.parse
import
urlparse
,
urljoin
,
urlencode
from
lxml
import
html
# nosec ; Bandit suggests defusedxml but defusedxml.lxml is dead
from
json.decoder
import
JSONDecodeError
import
requests
from
models
import
Event
,
EventPhase
,
Fencer
,
Tournament
...
...
@@ -125,27 +126,34 @@ class FTLiveScraper(Scraper):
"""
BASE_URL
=
'
https://fencingtimelive.com
'
TOURNAMENTS_URL
=
urljoin
(
BASE_URL
,
'
tournaments/
list
/data?{query}
'
)
TOURNAMENTS_URL
=
urljoin
(
BASE_URL
,
'
tournaments/
search
/data?{query}
'
)
TOURNAMENT_URL
=
urljoin
(
BASE_URL
,
'
tournaments/eventSchedule/{tournament_id}
'
)
FENCERS_URL
=
urljoin
(
BASE_URL
,
'
events/competitors/data/{event_id}
'
)
EVENT_URL
=
urljoin
(
BASE_URL
,
'
events/view/{event_id}
'
)
START_FORMAT
=
'
%Y-%m-%dT%H:%M:%S.000Z
'
EVENT_DATETIME_FORMAT
=
'
%A %B %d, %Y %I:%M %p
'
MAX_AGO
=
timedelta
(
days
=
7
)
MAX_AHEAD
=
timedelta
(
days
=
7
)
DATE_MODE
=
-
2
# Last 30
days
SEARCH_FROM
=
timedelta
(
days
=
21
)
# Start search x days into future
def
list_tournaments
(
self
,
search
=
None
,
from_dat
e
=
None
,
to
_date
=
None
):
def
list_tournaments
(
self
,
search
=
None
,
date_mod
e
=
None
,
search
_date
=
None
):
"""
Get a list of tournaments in FTLive.
"""
if
not
search
and
not
from_date
and
not
to_date
:
from_date
=
date
.
today
()
-
self
.
MAX_AGO
to_date
=
date
.
today
()
+
self
.
MAX_AHEAD
if
not
search_date
:
search_date
=
date
.
today
()
+
self
.
SEARCH_FROM
if
not
date_mode
:
date_mode
=
self
.
DATE_MODE
args
=
{
'
tname
'
:
search
or
''
,
'
from
'
:
from_date
or
''
,
'
to
'
:
to_date
or
''
'
search
'
:
search
or
''
,
'
today
'
:
search_date
,
'
date
'
:
date_mode
,
'
filter
'
:
'
Country
'
,
'
country
'
:
'
USA
'
,
}
url
=
self
.
TOURNAMENTS_URL
.
format
(
query
=
urlencode
(
args
))
tournaments
=
requests
.
get
(
url
).
json
()
try
:
tournaments
=
requests
.
get
(
url
).
json
()
except
JSONDecodeError
:
raise
ScrapeError
(
"
Failed to decode tournament list from URL {url}
"
.
format
(
url
=
url
))
return
[{
'
start
'
:
datetime
.
strptime
(
t
[
'
start
'
],
self
.
START_FORMAT
),
'
id
'
:
t
[
'
id
'
],
'
name
'
:
t
[
'
name
'
],
...
...
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