config_ufo_kit_edu.py 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. DTS_API_KEY = "f2b35fe46478f22f3c14cf53f73d4f93"
  22. # Scopus author IDs
  23. # KIT, PDV
  24. ak = "35313939900"
  25. ak2 = "57193311016"
  26. csa = "15076530600"
  27. matthiasVogelgesang = "35303862100"
  28. timoDritschler = "56473578500"
  29. andreiShkarin = "56950893700"
  30. nicholasTanJerome = "57200247965"
  31. tillBergmann = "35308595100"
  32. armenBeglarian = "55343303900"
  33. petraRohr = "40561503300"
  34. norbertKunka = "35276889200"
  35. horstDemattio = "6506285395"
  36. # KIT, EPS
  37. micheleCaselle = "57194376511"
  38. mc2 = "57194376512"
  39. urosStevanovic = "55557712600"
  40. lorenzoRota = "56473442500"
  41. matthiasBalzer = "35519411500"
  42. luisArdila = "57183639000"
  43. # KIT, IPE
  44. marcWeber = "56654729000"
  45. mw2 = "56603987800"
  46. mw3 = "7404138824"
  47. # KIT, IPS
  48. tomyRolo = "56118820400"
  49. tr2 = "35194644400"
  50. tr3 = "35277157300"
  51. tomasFarago = "56655045700"
  52. alexyErshof = "56441809800"
  53. romanShkarin = "56951331000"
  54. tiloBaumbach = "7003270957"
  55. thomasVandekamp = "46761453500"
  56. danielHaenschke = "55532222200"
  57. # TUD
  58. michaelHeethoff = "55979397800"
  59. sebastianSchmelzle = "34768986100"
  60. # UHD, has been combined with another person in Munich !!!
  61. philipLoesel = "57203423658"
  62. # Others (e.g. for black list)
  63. ashotChiligarian = "7004126133"
  64. hansBluemer = "7006284555"
  65. matthiasKleifegs = "6602072426"
  66. # Definition of workgroups for automatic Scopus publication retrieval
  67. sc_start = 2010
  68. sc_citations = False
  69. sc_keywords = True
  70. sc_max_authors = 25
  71. ufo_pdv = [ak, ak2, csa, timoDritschler ]
  72. ufo_eps = [matthiasBalzer, luisArdila ]
  73. ufo_ips = [tomasFarago, danielHaenschke]
  74. ufo_apps = [thomasVandekamp]
  75. ufo_alg = [philipLoesel]
  76. sc_workgroups = [
  77. {'name':'computing','authors':ufo_pdv},
  78. {'name':'electronics','authors':ufo_eps},
  79. {'name':'x-ray-imaging','authors':ufo_ips},
  80. {'name':'morphology','authors':ufo_apps},
  81. {'name':'algorithms','authors':ufo_alg}
  82. ]
  83. """ Definition of the workgroups
  84. Each workgroup is defined by a list of Scopus ID's and the
  85. name of the category to be used in Wordpress. The category
  86. for a new workgroup has to be created in Wordpress before
  87. adding publications
  88. """