Skip to content

Commit

Permalink
add a script to handle TRANS files
Browse files Browse the repository at this point in the history
  • Loading branch information
shinokumura committed May 31, 2024
1 parent be5bb5e commit 2cf3309
Show file tree
Hide file tree
Showing 3 changed files with 519 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,8 @@ venv.bak/
*.bck
*.zip
*.BCK
exforall_bk/
trans/

# This repository
DICT*
Expand Down
19 changes: 15 additions & 4 deletions config.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
EXFOR_ALL_URL = "https://nds.iaea.org/exfor-master/backup/"
EXFOR_TRANS_URL = "https://nds.iaea.org/nrdc/exfor-master/trans/"


# GIT_REPO_PATH = "/Users/okumuras/Documents/nucleardata/EXFOR/exfor_master_soku/" # private repo
GIT_REPO_PATH = "./" # here
GIT_REPO_URL = "https://api.github.com/repos/IAEA-NDS/exfor_master/releases"
# GIT_REPO_PATH = "./" # here
GIT_REPO_PATH = "/Users/okumuras/Documents/nucleardata/test/exfor_master/" # Private Repo

EXFOR_ALL_TEMP = "exforall_tmp/" # do not remove for rsync "/"
# GIT_REPO_URL = "https://api.github.com/repos/IAEA-NDS/exfor_master/releases"
GIT_REPO_URL = "https://api.github.com/repos/shinokumura/exfor_master/releases"


"""
This is the contingency plan to use OECD/NEA Github
"""
TRANS_REPO_PATH = "../trans"
TRANS_REPO_URL = "https://git.oecd-nea.org/exfor/nrdc/trans"


TEMP_TRANS = "./trans"
EXFOR_ALL_PATH = GIT_REPO_PATH + "exforall/"


Expand Down
Loading

0 comments on commit 2cf3309

Please sign in to comment.