Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eurostat-fetcher
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dbnomics-fetchers
eurostat-fetcher
Commits
a37dc46e
Commit
a37dc46e
authored
7 years ago
by
Christophe Benz
Browse files
Options
Downloads
Patches
Plain Diff
Add file size and time indicators
parent
b93eecf2
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
eurostat_to_dbnomics.py
+5
-3
5 additions, 3 deletions
eurostat_to_dbnomics.py
with
5 additions
and
3 deletions
eurostat_to_dbnomics.py
+
5
−
3
View file @
a37dc46e
...
...
@@ -66,7 +66,7 @@ sdmx_file_extension = ".sdmx.xml"
def
iter_git_objects_in_sdmx_file
(
sdmx_file_path
,
category_tree
,
validate_json
):
log
.
info
(
"
Converting SDMX source file %s
"
,
sdmx_file_path
)
log
.
info
(
"
Converting SDMX source file %s
(size: %d)
"
,
sdmx_file_path
,
os
.
path
.
getsize
(
sdmx_file_path
)
)
dsd_file_path
=
"
{}.dsd.xml
"
.
format
(
sdmx_file_path
[:
-
len
(
sdmx_file_extension
)])
with
open
(
dsd_file_path
)
as
dsd_file
:
dsd_tree
=
etree
.
parse
(
dsd_file
)
...
...
@@ -355,11 +355,13 @@ def write_dataset_pack(sdmx_file_path, git_objects, target_dir):
yielded_ids
.
add
(
git_object_id
)
yield
git_object
pack_start_time
=
time
.
time
()
dataset_code
=
os
.
path
.
basename
(
sdmx_file_path
[:
-
len
(
sdmx_file_extension
)])
pack_file_name
=
"
pack-{}
"
.
format
(
dataset_code
)
pack_file_path
=
os
.
path
.
abspath
(
os
.
path
.
join
(
target_dir
,
"
objects
"
,
"
pack
"
,
pack_file_name
))
write_pack
(
pack_file_path
,
iter_object_path_pairs
(
iter_deduped
(
git_objects
)))
log
.
info
(
"
Git pack file %s written
"
,
pack_file_path
)
write_pack
(
pack_file_path
,
iter_deduped
(
git_objects
))
pack_time
=
time
.
time
()
-
pack_start_time
log
.
info
(
"
Git pack file %s written, took %s seconds
"
,
pack_file_path
,
pack_time
)
# Dulwich functions sightly modified not to require passing objects length.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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