config-ufo-kit-edu.py 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. # Scopus script's configration
  2. # A Kopmann, 12.4.17
  3. #
  4. db_host = 'localhost'
  5. db_user = 'scopus'
  6. db_pw = '$scopus$'
  7. db_name = 'scopus'
  8. wp_api_url = "https://ufo.kit.edu/dis/xmlrpc.php"
  9. wp_user = "scopus"
  10. wp_password = "$scopus$"
  11. # Reporting
  12. log_file = "/root/scopus/log/scopus-publications-ufo-kit-edu.log"
  13. # Scopus query definition
  14. # Todo:
  15. # - Define a single object with the defintion of the author groups
  16. # - Search intervall - change to last 2 years?!
  17. MY_API_KEY = "14d431d052c2caf5e9c4b1ab7de7463d"
  18. # Scopus author IDs
  19. # KIT, PDV
  20. ak = "35313939900"
  21. csa = "15076530600"
  22. matthiasVogelgesang = "35303862100"
  23. timoDritschler = "56473578500"
  24. andreiShkarin = "56950893700"
  25. nicholasTanJerome = ""
  26. tillBergmann = "35308595100"
  27. armenBeglarian = "55343303900"
  28. petraRohr = "40561503300"
  29. norbertKunka = "35276889200"
  30. horstDemattio = "6506285395"
  31. # KIT, EPS
  32. micheleCaselle = "7006767859"
  33. urosStevanovic = "55557712600"
  34. lorenzoRota = "56473442500"
  35. matthiasBalzer = "35519411500"
  36. # KIT, IPE
  37. marcWeber = "56654729000"
  38. mw2 = "56603987800"
  39. mw3 = "7404138824"
  40. # KIT, IPS
  41. tomyRolo = "56118820400"
  42. tr2 = "35194644400"
  43. tr3 = "35277157300"
  44. tomasFarago = "56655045700"
  45. alexyErshof = "56441809800"
  46. romanShkarin = "56951331000"
  47. tiloBaumbach = "7003270957"
  48. thomasVandekamp = "46761453500"
  49. # TUD
  50. michaelHeethoff = "55979397800"
  51. sebastianSchmelzle = "34768986100"
  52. # UHD
  53. philipLoesel = "57190622016"
  54. # Others (e.g. for black list)
  55. ashotChiligarian = "7004126133"
  56. hansBluemer = "7006284555"
  57. matthiasKleifegs = "6602072426"
  58. # Definition of workgroups for automatic Scopus publication retrieval
  59. sc_start = 2010
  60. ufo_pdv = [ak, csa, matthiasVogelgesang, timoDritschler, andreiShkarin ]
  61. ufo_eps = [matthiasBalzer, lorenzoRota, micheleCaselle ]
  62. ufo_ips = [tomyRolo, tr2, tr3, tomasFarago]
  63. ufo_apps = [thomasVandekamp]
  64. ufo_alg = [philipLoesel]
  65. sc_workgroups = [
  66. {'name':"Computing",'authors':ufo_pdv},
  67. {'name':"Electronics",'authors':ufo_eps},
  68. {'name':"X-ray Imaging",'authors':ufo_ips},
  69. {'name':"Morphology",'authors':ufo_apps},
  70. {'name':"Algorithms",'authors':ufo_alg}
  71. ]