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
f0a8b7c8
Commit
f0a8b7c8
authored
8 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
initial commit
parents
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
requirements.txt
+2
-0
2 additions, 0 deletions
requirements.txt
scrape.py
+54
-0
54 additions, 0 deletions
scrape.py
with
57 additions
and
0 deletions
.gitignore
0 → 100644
+
1
−
0
View file @
f0a8b7c8
venv
This diff is collapsed.
Click to expand it.
requirements.txt
0 → 100644
+
2
−
0
View file @
f0a8b7c8
lxml
==3.6.4
requests
==2.12.1
This diff is collapsed.
Click to expand it.
scrape.py
0 → 100644
+
54
−
0
View file @
f0a8b7c8
from
lxml
import
html
import
requests
import
re
from
urllib.parse
import
urlparse
,
urljoin
results_url
=
"
http://www.escrimeresults.com/cobra/index.htm
"
results
=
requests
.
get
(
results_url
)
results_tree
=
html
.
fromstring
(
results
.
content
)
try
:
event_urls
=
results_tree
.
xpath
(
'
//div[@id=
"
schedule
"
]/table/tr/td/a[text()=
"
View
"
]/@href
'
)
except
IndexError
:
print
(
"
No event schedule found
"
)
exit
()
tournament_name
=
results_tree
.
xpath
(
'
//span[@class=
"
tournName
"
]/text()
'
)[
0
]
tournament_details
=
results_tree
.
xpath
(
'
//span[@class=
"
tournDetails
"
]/text()
'
)[
0
]
print
(
tournament_name
)
print
(
tournament_details
)
print
(
"
{0} Events
\n
"
.
format
(
len
(
event_urls
)))
events
=
{}
for
event_url
in
event_urls
:
if
not
urlparse
(
event_url
).
netloc
:
event_url
=
urljoin
(
results_url
,
event_url
)
event
=
requests
.
get
(
event_url
)
event_tree
=
html
.
fromstring
(
event
.
content
)
event_details
=
event_tree
.
xpath
(
'
//span[@class=
"
tournDetails
"
]/text()
'
)[
0
]
print
(
"
\n\n
{0}
"
.
format
(
event_details
))
if
event_tree
.
xpath
(
'
//a[text()=
"
Final Results
"
]
'
):
fencers
=
event_tree
.
xpath
(
'
//div[@id=
"
finalResults
"
]/table/tr/td[2]/text()
'
)
print
(
"
Event Closed ({0} fencers)
"
.
format
(
len
(
fencers
)))
elif
event_tree
.
xpath
(
'
//a[text()=
"
Check-In Status
"
]
'
):
checkin_summary
=
event_tree
.
xpath
(
'
normalize-space(//div[@class=
"
checkInSummary
"
]/text())
'
)
print
(
checkin_summary
)
fencers
=
event_tree
.
xpath
(
'
//div[@id=
"
checkIn
"
]/table/tr/td[2]/text()
'
)
events
[
event_details
]
=
[]
prior_events
=
{}
for
fencer
in
fencers
:
events
[
event_details
].
append
(
fencer
.
strip
())
for
e
in
events
:
if
e
==
event_details
:
continue
if
fencer
.
strip
()
in
events
[
e
]:
if
e
in
prior_events
:
prior_events
[
e
]
+=
1
else
:
prior_events
[
e
]
=
1
break
for
e
in
prior_events
:
print
(
"
{0} Fencers previously fenced in {1}
"
.
format
(
prior_events
[
e
],
e
))
# TODO: Tally fencers who have checked in
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