Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nomad-FAIR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
nomad-lab
nomad-FAIR
Commits
e7692388
Commit
e7692388
authored
5 months ago
by
Ahmed Ilyas
Browse files
Options
Downloads
Patches
Plain Diff
Use httpx for download example uploads
parent
7a0d5ce7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!2136
Use httpx for download example uploads
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
nomad/config/models/plugins.py
+7
-6
7 additions, 6 deletions
nomad/config/models/plugins.py
with
7 additions
and
6 deletions
nomad/config/models/plugins.py
+
7
−
6
View file @
e7692388
...
...
@@ -23,7 +23,7 @@ from tempfile import TemporaryDirectory
from
abc
import
ABCMeta
,
abstractmethod
import
importlib
from
typing
import
Optional
,
Dict
,
Union
,
List
,
Literal
,
TYPE_CHECKING
import
requests
import
httpx
from
pydantic
import
BaseModel
,
Field
,
root_validator
from
nomad.common
import
get_package_path
...
...
@@ -264,22 +264,23 @@ class ExampleUploadEntryPoint(EntryPoint):
if
not
os
.
path
.
exists
(
final_filepath
):
try
:
with
requests
.
get
(
self
.
url
,
stream
=
True
)
as
response
:
with
httpx
.
stream
(
'
GET
'
,
self
.
url
,
)
as
response
:
response
.
raise_for_status
()
# Download into a temporary directory to ensure the integrity of
# the download
with
TemporaryDirectory
()
as
tmp_folder
:
tmp_filepath
=
os
.
path
.
join
(
tmp_folder
,
filename
)
with
open
(
tmp_filepath
,
mode
=
'
wb
'
)
as
file
:
for
chunk
in
response
.
iter_content
(
chunk_size
=
10
*
1024
):
for
chunk
in
response
.
iter_bytes
(
chunk_size
=
10
*
1024
):
file
.
write
(
chunk
)
# If download has succeeeded, copy the files over to
# final location
os
.
makedirs
(
final_folder
,
exist_ok
=
True
)
shutil
.
copy
(
tmp_filepath
,
final_filepath
)
except
requests
.
Request
Exception
as
e
:
except
Exception
as
e
:
raise
ValueError
(
f
'
Could not fetch the example upload from URL:
{
self
.
url
}
'
)
from
e
...
...
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