config.py.sample 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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 = "7006767859"
  34. urosStevanovic = "55557712600"
  35. lorenzoRota = "56473442500"
  36. matthiasBalzer = "35519411500"
  37. # KIT, IPE
  38. marcWeber = "56654729000"
  39. mw2 = "56603987800"
  40. mw3 = "7404138824"
  41. # KIT, IPS
  42. tomyRolo = "56118820400"
  43. tr2 = "35194644400"
  44. tr3 = "35277157300"
  45. tomasFarago = "56655045700"
  46. alexyErshof = "56441809800"
  47. romanShkarin = "56951331000"
  48. tiloBaumbach = "7003270957"
  49. thomasVandekamp = "46761453500"
  50. # TUD
  51. michaelHeethoff = "55979397800"
  52. sebastianSchmelzle = "34768986100"
  53. # UHD
  54. philipLoesel = "57190622016"
  55. # Others (e.g. for black list)
  56. ashotChiligarian = "7004126133"
  57. hansBluemer = "7006284555"
  58. matthiasKleifegs = "6602072426"
  59. # Definition of workgroups for automatic Scopus publication retrieval
  60. sc_start = 2010
  61. ufo_pdv = [ak, csa, matthiasVogelgesang, timoDritschler, andreiShkarin ]
  62. ufo_eps = [matthiasBalzer, lorenzoRota, micheleCaselle ]
  63. ufo_ips = [tomyRolo, tr2, tr3, tomasFarago]
  64. ufo_apps = [thomasVandekamp]
  65. ufo_alg = [philipLoesel]
  66. sc_workgroups = [
  67. {'name':"Computing",'authors':ufo_pdv},
  68. {'name':"Electronics",'authors':ufo_eps},
  69. {'name':"X-ray Imaging",'authors':ufo_ips},
  70. {'name':"Morphology",'authors':ufo_apps},
  71. {'name':"Algorithms",'authors':ufo_alg}
  72. ]