config_ipekopmann2.py 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. """ Scopus script's configration
  2. *A Kopmann, 12.4.17*
  3. Configuration for the test system installed at ipekopmann2 (my macbook).
  4. The system is identically to the UFO configuration and used for testing
  5. of new functions.
  6. Todo:
  7. - Handle authors that have been also at other institutions.
  8. Add time interval for each author or
  9. check if affiliation of the author is also given
  10. """
  11. # Local publication database
  12. db_host = 'localhost'
  13. db_user = 'scopus'
  14. db_pw = '$scopus$'
  15. db_name = 'scopus'
  16. # Access to Wordpress installation
  17. wp_api_url = "http://localhost/~kopmann/ufo2/xmlrpc.php"
  18. """ Access to the Wordpress installation """
  19. wp_user = "scopus"
  20. wp_password = "$scopus$"
  21. # Reporting
  22. log_file = "/Users/kopmann/scopus-publications.log"
  23. """ Logfile name for reporting """
  24. # Scopus query definition
  25. MY_API_KEY = "14d431d052c2caf5e9c4b1ab7de7463d"
  26. """ Scopus access key (Andreas Kopmann) """
  27. # Scopus author IDs
  28. # KIT, PDV
  29. ak = "35313939900"
  30. ak2 = "57193311016"
  31. csa = "15076530600"
  32. csa2 = "6506491376"
  33. matthiasVogelgesang = "35303862100"
  34. timoDritschler = "56473578500"
  35. andreiShkarin = "56950893700"
  36. nicholasTanJerome = ""
  37. tillBergmann = "35308595100"
  38. armenBeglarian = "55343303900"
  39. petraRohr = "40561503300"
  40. norbertKunka = "35276889200"
  41. horstDemattio = "6506285395"
  42. # KIT, EPS
  43. micheleCaselle = "7006767859"
  44. urosStevanovic = "55557712600"
  45. lorenzoRota = "56473442500"
  46. matthiasBalzer = "35519411500"
  47. # KIT, IPE
  48. marcWeber = "56654729000" # KIT Engineering 29, 25.10.17
  49. mw2 = "56603987800" # have not found anymore?!
  50. mw3 = "7404138824" # KIT-CN Physice 667, 25.10.17
  51. mw4 = "14625680200" # KIT Physics 1651, 25.10.17
  52. # KIT, IPS
  53. tomyRolo = "56118820400"
  54. tr2 = "35194644400"
  55. tr3 = "35277157300"
  56. tomasFarago = "56655045700"
  57. alexyErshof = "56441809800"
  58. andreiShkarin = "56950893700"
  59. romanShkarin = "56951331000"
  60. tiloBaumbach = "7003270957"
  61. thomasVandekamp = "46761453500"
  62. # TUD
  63. michaelHeethoff = "55979397800"
  64. sebastianSchmelzle = "34768986100"
  65. # UHD
  66. philipLoesel = "57190622016"
  67. # Others (e.g. for black list)
  68. ashotChiligarian = "7004126133"
  69. hansBluemer = "7006284555"
  70. matthiasKleifegs = "6602072426"
  71. # Affiliations
  72. kit = "60027314"
  73. kit_cn = "60027314"
  74. kit_cs = "60029428"
  75. uni_hd = "60016908"
  76. uni_h = " 60004935"
  77. uni_da = "60011226"
  78. # Definition of workgroups for automatic Scopus publication retrieval
  79. sc_start = 2010
  80. ufo_pdv = [ak, csa, matthiasVogelgesang, timoDritschler, andreiShkarin ]
  81. ufo_eps = [matthiasBalzer, lorenzoRota, micheleCaselle ]
  82. ufo_ips = [tomyRolo, tr2, tr3, tomasFarago]
  83. ufo_apps = [thomasVandekamp]
  84. ufo_alg = [philipLoesel]
  85. sc_workgroups = [
  86. {'name':"Computing",'authors':ufo_pdv},
  87. {'name':"Electronics",'authors':ufo_eps},
  88. {'name':"X-ray Imaging",'authors':ufo_ips},
  89. {'name':"Morphology",'authors':ufo_apps},
  90. {'name':"Algorithms",'authors':ufo_alg}
  91. ]
  92. """ Definition of the workgroups
  93. Each workgroup is defined by a list of Scopus ID's and the
  94. name of the category to be used in Wordpress. The category
  95. for a new workgroup has to be created in Wordpress before
  96. adding publications
  97. """