1 | #! /usr/bin/env python |
---|
2 | import ads |
---|
3 | |
---|
4 | ####### |
---|
5 | lk = "lmdplaneto.link" |
---|
6 | ####### |
---|
7 | |
---|
8 | ads.makepage('pubmars',\ |
---|
9 | retrieve = True,\ |
---|
10 | customcond = ''' -c 'title:"Mars" or title:"martian"' ''',\ |
---|
11 | linkads = lk,\ |
---|
12 | title = "<CENTER><H2><EM><font color='#B8860B;'>Mars peer-reviewed publications of the LMD 'Planetary Atmospheres' team</font></EM></H2></CENTER>") |
---|
13 | |
---|
14 | ads.makepage('pubtitan',\ |
---|
15 | retrieve = False,\ |
---|
16 | customcond = ''' -c 'title:"Titan"' ''',\ |
---|
17 | linkads = lk,\ |
---|
18 | title = "<CENTER><H2><EM><font color='#B8860B;'>Titan peer-reviewed publications of the LMD 'Planetary Atmospheres' team</font></EM></H2></CENTER>") |
---|
19 | |
---|
20 | ads.makepage('pubvenus',\ |
---|
21 | retrieve = False,\ |
---|
22 | customcond = ''' -c 'title:"Venus" or title:"venusian"' ''',\ |
---|
23 | linkads = lk,\ |
---|
24 | title = "<CENTER><H2><EM><font color='#B8860B;'>Venus peer-reviewed publications of the LMD 'Planetary Atmospheres' team</font></EM></H2></CENTER>") |
---|
25 | |
---|
26 | ads.makepage('pubexo',\ |
---|
27 | retrieve = False,\ |
---|
28 | customcond = ''' -c 'abstract:"exoplanet" or title:"habitable" or title:"habitability"' ''',\ |
---|
29 | linkads = lk,\ |
---|
30 | title = "<CENTER><H2><EM><font color='#B8860B;'>Exoplanets peer-reviewed publications of the LMD 'Planetary Atmospheres' team</font></EM></H2></CENTER>") |
---|
31 | |
---|
32 | ads.makepage('pubforget',\ |
---|
33 | retrieve = False,\ |
---|
34 | customcond = ''' -c 'author:"Forget"' ''',\ |
---|
35 | listyear = range(2014,1992,-1),\ |
---|
36 | linkads = lk,\ |
---|
37 | title = "<CENTER><H2><EM><font color='#B8860B;'>Francois Forget's peer-reviewed publications</font></EM></H2></CENTER>") |
---|
38 | |
---|
39 | ads.makepage('publebonnois',\ |
---|
40 | retrieve = False,\ |
---|
41 | customcond = ''' -c 'author:"Lebonnois"' ''',\ |
---|
42 | listyear = range(2014,1998,-1),\ |
---|
43 | linkads = lk,\ |
---|
44 | title = "<CENTER><H2><EM><font color='#B8860B;'>Sebastien Lebonnois's peer-reviewed publications</font></EM></H2></CENTER>") |
---|
45 | |
---|
46 | ads.makepage('pubspiga',\ |
---|
47 | retrieve = False,\ |
---|
48 | customcond = ''' -c 'author:"Spiga"' ''',\ |
---|
49 | listyear = range(2014,2006,-1),\ |
---|
50 | linkads = lk,\ |
---|
51 | title = "<CENTER><H2><EM><font color='#B8860B;'>Aymeric Spiga's peer-reviewed publications</font></EM></H2></CENTER>") |
---|
52 | |
---|
53 | ads.makepage('pubmillour',\ |
---|
54 | retrieve = False,\ |
---|
55 | customcond = ''' -c 'author:"Millour"' ''',\ |
---|
56 | listyear = range(2014,2007,-1),\ |
---|
57 | linkads = lk,\ |
---|
58 | title = "<CENTER><H2><EM><font color='#B8860B;'>Ehouarn Millour's peer-reviewed publications</font></EM></H2></CENTER>") |
---|
59 | |
---|
60 | ads.makepage('pub',\ |
---|
61 | retrieve = False,\ |
---|
62 | listyear = range(2014,1992,-1),\ |
---|
63 | linkads = lk,\ |
---|
64 | title = "<CENTER><H2><EM><font color='#B8860B;'>Peer-reviewed publications of the LMD 'Planetary Atmospheres' team</font></EM></H2></CENTER>",\ |
---|
65 | addlink = ''' |
---|
66 | <br> |
---|
67 | Planet: |
---|
68 | <a href="pubmars.html">Mars</a> / |
---|
69 | <a href="pubvenus.html">Venus</a> / |
---|
70 | <a href="pubtitan.html">Titan</a> / |
---|
71 | <a href="pubexo.html">Exoplanets</a><br> |
---|
72 | <br> |
---|
73 | Author: |
---|
74 | <a href="pubforget.html">F. Forget</a> / |
---|
75 | <a href="publebonnois.html">S. Lebonnois</a> / |
---|
76 | <a href="pubspiga.html">A. Spiga</a> / |
---|
77 | <a href="pubmillour.html">E. Millour</a><br> |
---|
78 | <br> |
---|
79 | <hr> |
---|
80 | ''',\ |
---|
81 | target="lmdplaneto") |
---|