Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
N
nvidia-patch
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
nvidia-patch
Commits
6a0431bd
Commit
6a0431bd
authored
Jul 16, 2020
by
Vladislav Yarmak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndl: workaround broken layout on Vulkan Beta downloads page
parent
c96e9df7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
tools/nv-driver-locator/get_vulkan_downloads.py
tools/nv-driver-locator/get_vulkan_downloads.py
+4
-4
No files found.
tools/nv-driver-locator/get_vulkan_downloads.py
View file @
6a0431bd
...
...
@@ -55,10 +55,10 @@ def get_drivers(*, timeout=10):
body
=
fetch_url
(
URL
)
soup
=
BeautifulSoup
(
body
,
'html.parser'
)
result
=
[]
for
sibling
in
soup
.
find
(
'h4'
,
string
=
re
.
compile
(
r'Vulkan .* Developer Beta Driver Downloads'
,
re
.
I
)
)
.
next_siblings
:
if
sibling
.
name
==
'h4'
:
section_start
=
soup
.
find
(
'h4'
,
string
=
re
.
compile
(
r'Vulkan Beta Driver Downloads'
,
re
.
I
))
section_end
=
section_start
.
find_next
(
"h4"
)
for
sibling
in
section_start
.
find_all_next
()
:
if
sibling
is
section_end
:
break
if
sibling
.
name
==
'p'
and
sibling
.
b
is
not
None
:
m
=
re
.
match
(
r'(Windows|Linux)\s+((\d+\.){1,2}\d+)'
,
sibling
.
b
.
string
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment