config.py.sample 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. log_file = '/root/scopus/scopus-publications.log'
  9. wp_api_url = "http://ufo.kit.edu/dis/xmlrpc.php"
  10. wp_user = "scopus"
  11. wp_password = "$scopus$"
  12. # Reporting
  13. log_file = "/Users/kopmann/scopus-publications.log"
  14. # Scopus query definition
  15. # Todo:
  16. # - Define a single object with the defintion of the author groups
  17. # - Search intervall - change to last 2 years?!
  18. MY_API_KEY = "14d431d052c2caf5e9c4b1ab7de7463d"
  19. # Scopus author IDs
  20. # KIT, PDV
  21. ak = "35313939900"
  22. csa = "15076530600"
  23. matthiasVogelgesang = "35303862100"
  24. timoDritschler = "56473578500"
  25. andreiShkarin = "56950893700"
  26. nicholasTanJerome = ""
  27. tillBergmann = "35308595100"
  28. armenBeglarian = "55343303900"
  29. petraRohr = "40561503300"
  30. norbertKunka = "35276889200"
  31. horstDemattio = "6506285395"
  32. # KIT, EPS
  33. micheleCaselle = "57194376511"
  34. mc2 = "57194376512"
  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, mc2 ]
  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. ]