config_ufo_kit_edu_ipe.py 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. """ Scopus script's configration
  2. *A Kopmann, 12.4.17*
  3. Configuration for the IPE setup at ufo.kit.edu
  4. """
  5. # Local publication database
  6. db_host = 'localhost'
  7. db_user = 'scopus'
  8. db_pw = '$scopus$'
  9. db_name = 'scopus_ipe'
  10. # Access to Wordpress installation
  11. wp_api_url = "https://ufo.kit.edu/ipe/xmlrpc.php"
  12. """ Access to the Wordpress installation """
  13. wp_user = "scopus"
  14. wp_password = "$scopus$"
  15. # Reporting
  16. log_file = "/root/scopus-ipe/log/scopus-publications-ufo-kit-edu-ipe.log"
  17. """ Logfile name for reporting """
  18. # Scopus query definition
  19. MY_API_KEY = "14d431d052c2caf5e9c4b1ab7de7463d"
  20. """ Scopus access key (Andreas Kopmann) """
  21. # Scopus author IDs
  22. # KIT, PDV
  23. andreasKopmann = "35313939900"
  24. ak2 = "57193311016"
  25. surenChilingaryan = "15076530600"
  26. matthiasVogelgesang = "35303862100"
  27. timoDritschler = "56473578500"
  28. #andreiShkarin = "56950893700"
  29. nicholasTanJerome = "57200247965"
  30. #tillBergmann = "35308595100"
  31. armenBeglarian = "55343303900"
  32. petraRohr = "40561503300"
  33. norbertKunka = "35276889200"
  34. horstDemattio = "6506285395"
  35. heinzFrankrone = ""
  36. danielKompalla = ""
  37. # KIT, EPS
  38. micheleCaselle = "57194376511"
  39. mc2 = "57194376512"
  40. #urosStevanovic = "55557712600"
  41. lorenzoRota = "56473442500"
  42. matthiasBalzer = "35519411500"
  43. matthiasKleifges = "6602072426"
  44. luisArdila = ""
  45. nickKarcher = ""
  46. alexanderMenshikov = "7003298761"
  47. denisTcherniakhovski = "6508308928"
  48. thomasSchuh = ""
  49. oliverSander = "22986354000"
  50. # KIT, MSA
  51. thomasKuehner = "24776279000"
  52. saschaWuestling = "23480623800"
  53. heikoBouquet = ""
  54. birgitBurger = ""
  55. andreasEbersold = ""
  56. larsEisenblaetter = "57094104200"
  57. juliusHartmann = ""
  58. djornKarnick = "37081197400"
  59. marcSchneider = "55649571035"
  60. ms2 = "55649571037"
  61. ms3 = "55649571036"
  62. ms4 = "55649571041"
  63. oliverKroemer = "8520193800"
  64. klausPetry = "7004446817"
  65. # KIT, ADL
  66. ivanPeric = "9043482900"
  67. felixEhrler = "56674370500"
  68. robertoBlanco = "56927736400"
  69. alenaWeber = ""
  70. # KIT, AVT
  71. thomasBlank = "56819218800"
  72. simonBischof = ""
  73. anBao = "57192082222"
  74. helgeWurst = ""
  75. # KIT, SWM
  76. nicoleRuiter = "6507953977"
  77. torstenHopp = "24469880700"
  78. michaelZapf = "19640815400"
  79. # KIT, IPE
  80. marcWeber = "56654729000"
  81. mw2 = "56603987800"
  82. mw3 = "7404138824"
  83. # Definition of workgroups for automatic Scopus publication retrieval
  84. sc_start = 2016
  85. sc_citations = False
  86. sc_keywords = True
  87. sc_max_authors = 25
  88. ipe_pdv = [andreasKopmann,ak2,surenChilingaryan,matthiasVogelgesang,timoDritschler,armenBeglarian,horstDemattio,petraRohr,norbertKunka]
  89. ipe_eps = [matthiasBalzer,lorenzoRota,micheleCaselle,mc2,matthiasKleifges,alexanderMenshikov,denisTcherniakhovski,oliverSander]
  90. ipe_msa = [thomasKuehner,saschaWuestling,larsEisenblaetter,djornKarnick,marcSchneider,ms2,ms3,ms4,oliverKroemer,klausPetry]
  91. ipe_avt = [thomasBlank]
  92. ipe_adl = [ivanPeric,felixEhrler,robertoBlanco]
  93. ipe_swm = [nicoleRuiter,torstenHopp,michaelZapf]
  94. sc_workgroups = [
  95. {'name':"pdv",'authors':ipe_pdv},
  96. {'name':"eps",'authors':ipe_eps},
  97. {'name':"msa",'authors':ipe_msa},
  98. {'name':"avt",'authors':ipe_avt},
  99. {'name':"adl",'authors':ipe_adl},
  100. {'name':"swm",'authors':ipe_swm}
  101. ]
  102. """ Definition of the workgroups
  103. Each workgroup is defined by a list of Scopus ID's and the
  104. name of the category to be used in Wordpress. The category
  105. for a new workgroup has to be created in Wordpress before
  106. adding publications
  107. """