config_ufo_kit_edu.py 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. csa = "15076530600"
  25. matthiasVogelgesang = "35303862100"
  26. timoDritschler = "56473578500"
  27. andreiShkarin = "56950893700"
  28. nicholasTanJerome = ""
  29. tillBergmann = "35308595100"
  30. armenBeglarian = "55343303900"
  31. petraRohr = "40561503300"
  32. norbertKunka = "35276889200"
  33. horstDemattio = "6506285395"
  34. # KIT, EPS
  35. micheleCaselle = "7006767859"
  36. urosStevanovic = "55557712600"
  37. lorenzoRota = "56473442500"
  38. matthiasBalzer = "35519411500"
  39. # KIT, IPE
  40. marcWeber = "56654729000"
  41. mw2 = "56603987800"
  42. mw3 = "7404138824"
  43. # KIT, IPS
  44. tomyRolo = "56118820400"
  45. tr2 = "35194644400"
  46. tr3 = "35277157300"
  47. tomasFarago = "56655045700"
  48. alexyErshof = "56441809800"
  49. romanShkarin = "56951331000"
  50. tiloBaumbach = "7003270957"
  51. thomasVandekamp = "46761453500"
  52. # TUD
  53. michaelHeethoff = "55979397800"
  54. sebastianSchmelzle = "34768986100"
  55. # UHD
  56. philipLoesel = "57190622016"
  57. # Others (e.g. for black list)
  58. ashotChiligarian = "7004126133"
  59. hansBluemer = "7006284555"
  60. matthiasKleifegs = "6602072426"
  61. # Definition of workgroups for automatic Scopus publication retrieval
  62. sc_start = 2010
  63. ufo_pdv = [ak, csa, matthiasVogelgesang, timoDritschler, andreiShkarin ]
  64. ufo_eps = [matthiasBalzer, lorenzoRota, micheleCaselle ]
  65. ufo_ips = [tomyRolo, tr2, tr3, tomasFarago]
  66. ufo_apps = [thomasVandekamp]
  67. ufo_alg = [philipLoesel]
  68. sc_workgroups = [
  69. {'name':"Computing",'authors':ufo_pdv},
  70. {'name':"Electronics",'authors':ufo_eps},
  71. {'name':"X-ray Imaging",'authors':ufo_ips},
  72. {'name':"Morphology",'authors':ufo_apps},
  73. {'name':"Algorithms",'authors':ufo_alg}
  74. ]
  75. """ Definition of the workgroups
  76. Each workgroup is defined by a list of Scopus ID's and the
  77. name of the category to be used in Wordpress. The category
  78. for a new workgroup has to be created in Wordpress before
  79. adding publications
  80. """