config-ipekopmann2.py 2.1 KB

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