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