config_ufo_kit_edu.py 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. """ Scopus script's configration
  2. *A Kopmann, 12.4.17*
  3. Configuration for the active 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'
  10. # Access to Wordpress installation
  11. wp_api_url = "https://ufo.kit.edu/dis/xmlrpc.php"
  12. """ Access to the Wordpress installation """
  13. wp_user = "scopus"
  14. wp_password = "$scopus$"
  15. # Reporting
  16. log_file = "/root/scopus/log/scopus-publications-ufo-kit-edu.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. ak = "35313939900"
  24. ak2 = "57193311016"
  25. csa = "15076530600"
  26. matthiasVogelgesang = "35303862100"
  27. timoDritschler = "56473578500"
  28. andreiShkarin = "56950893700"
  29. nicholasTanJerome = ""
  30. tillBergmann = "35308595100"
  31. armenBeglarian = "55343303900"
  32. petraRohr = "40561503300"
  33. norbertKunka = "35276889200"
  34. horstDemattio = "6506285395"
  35. # KIT, EPS
  36. micheleCaselle = "57194376511"
  37. mc2 = "57194376512"
  38. urosStevanovic = "55557712600"
  39. lorenzoRota = "56473442500"
  40. matthiasBalzer = "35519411500"
  41. # KIT, IPE
  42. marcWeber = "56654729000"
  43. mw2 = "56603987800"
  44. mw3 = "7404138824"
  45. # KIT, IPS
  46. tomyRolo = "56118820400"
  47. tr2 = "35194644400"
  48. tr3 = "35277157300"
  49. tomasFarago = "56655045700"
  50. alexyErshof = "56441809800"
  51. romanShkarin = "56951331000"
  52. tiloBaumbach = "7003270957"
  53. thomasVandekamp = "46761453500"
  54. # TUD
  55. michaelHeethoff = "55979397800"
  56. sebastianSchmelzle = "34768986100"
  57. # UHD, has been combined with another person in Munich !!!
  58. philipLoesel = "57190622016"
  59. # Others (e.g. for black list)
  60. ashotChiligarian = "7004126133"
  61. hansBluemer = "7006284555"
  62. matthiasKleifegs = "6602072426"
  63. # Definition of workgroups for automatic Scopus publication retrieval
  64. sc_start = 2010
  65. ufo_pdv = [ak, ak2, csa, matthiasVogelgesang, timoDritschler ]
  66. ufo_eps = [matthiasBalzer, lorenzoRota, micheleCaselle, mc2 ]
  67. ufo_ips = [tomyRolo, tr2, tr3, tomasFarago]
  68. ufo_apps = [thomasVandekamp]
  69. ufo_alg = [philipLoesel]
  70. sc_workgroups = [
  71. {'name':"Computing",'authors':ufo_pdv},
  72. {'name':"Electronics",'authors':ufo_eps},
  73. {'name':"X-ray Imaging",'authors':ufo_ips},
  74. {'name':"Morphology",'authors':ufo_apps},
  75. #{'name':"Algorithms",'authors':ufo_alg}
  76. ]
  77. """ Definition of the workgroups
  78. Each workgroup is defined by a list of Scopus ID's and the
  79. name of the category to be used in Wordpress. The category
  80. for a new workgroup has to be created in Wordpress before
  81. adding publications
  82. """