Difference between revisions of "Wikidata Import 2023-05-05"

From BITPlan Wiki
Jump to navigation Jump to search
Line 20: Line 20:
 
latest-truthy.nt.gz                                28-Apr-2023 19:07        59758277315
 
latest-truthy.nt.gz                                28-Apr-2023 19:07        59758277315
 
</pre>
 
</pre>
 +
== download script ==
 +
<source lang='bash'>
 +
cat download.sh
 +
#/bin/bash
 +
# WF 2023-04-26
 +
# download wikidata dumps
 +
baseurl=https://dumps.wikimedia.org/wikidatawiki/entities/
 +
for file in latest-all latest-lexemes
 +
do
 +
  for ext in ttl.bz2
 +
  do
 +
    url=$baseurl/$file.$ext
 +
    log=$file-$ext.log
 +
    nohup wget $url >> $log&
 +
  done
 +
done
 +
 +
</source>

Revision as of 08:12, 5 May 2023

Download

Download Options

https://dumps.wikimedia.org/wikidatawiki/entities

dcatap.rdf                                         04-May-2023 18:19               84753
latest-all.json.bz2                                03-May-2023 21:06         81640390615
latest-all.json.gz                                 03-May-2023 12:47        123885468527
latest-all.nt.bz2                                  04-May-2023 16:07        158382342866
latest-all.nt.gz                                   03-May-2023 22:23        205171447838
latest-all.ttl.bz2                                 04-May-2023 03:24        101606862077
latest-all.ttl.gz                                  03-May-2023 17:08        124093922794
latest-lexemes.json.bz2                            03-May-2023 03:53           305234182
latest-lexemes.json.gz                             03-May-2023 03:51           416121890
latest-lexemes.nt.bz2                              28-Apr-2023 23:34           778797047
latest-lexemes.nt.gz                               28-Apr-2023 23:29          1019519966
latest-lexemes.ttl.bz2                             28-Apr-2023 23:30           440519100
latest-lexemes.ttl.gz                              28-Apr-2023 23:26           548481488
latest-truthy.nt.bz2                               28-Apr-2023 22:23         36023954950
latest-truthy.nt.gz                                28-Apr-2023 19:07         59758277315

download script

cat download.sh 
#/bin/bash
# WF 2023-04-26
# download wikidata dumps
baseurl=https://dumps.wikimedia.org/wikidatawiki/entities/
for file in latest-all latest-lexemes
do
  for ext in ttl.bz2
  do
    url=$baseurl/$file.$ext
    log=$file-$ext.log
    nohup wget $url >> $log&
  done
done