[3]:
from webb_scraping import target

What’s in the literature about my target?

Let’s say, once more, that we’re interested in observing TRAPPIST-1 with JWST. To set up the answer to this proble, we again call target.Target on our target name. This instantiates a Target object, allowing us to perform scrapes relevant to our target of interest.

[4]:
test = target.Target("TRAPPIST-1")

Given we’ll be scraping a number of different sources, we can use the test.scrape_all function.

[5]:
test.scrape_all()
Scraping arXiv: 100%|██████████| 10/10 [00:05<00:00,  1.87it/s]

Let’s see if there are any asssociated HST or JWST proposals.

[6]:
test.webb_approved, test.hst_approved
[6]:
(True, True)
[10]:
test.hst_data
[10]:
{'Two Birds One Stone: Simultaneous Atmospheric Pre-Screening of Two Temperate Earth-Sized Exoplanets During Their Double Transit': 'mast:HST/product/id4301r4q_drz.fits',
 'Collecting the Puzzle Pieces: Completing HSTs UV+NIR Survey of the TRAPPIST-1 System ahead of JWST': masked,
 'A search for low-mass companions to ultracool dwarfs': 'mast:HST/product/u64tb803r_c0f.fits',
 'Exploratory observations of the TRAPPIST-1 system: essential prelude to an immediate JWST follow-up': 'mast:HST/product/idded1p9q_drz.fits',
 'The Mega-MUSCLES Treasury Survey: Measurements of the Ultraviolet Spectral Characteristics of Low-mass Exoplanetary Systems': 'mast:HST/product/ldlmz6010_x1dsum.fits',
 'UV exploration of two Earth-sized planets with temperate atmospheres': masked,
 'Confirming the Presence of an Hydrogen Exosphere around the Earth-sized Temperate Planet TRAPPIST-1c': masked,
 'UV irradiation of the Earth-sized planets orbiting TRAPPIST-1': masked}

We can also examine what aliases exist for this target.

[7]:
test.aliases
[7]:
['EPIC 246199087',
 'K2-112',
 '2MUCD 12171',
 '2MASS J23062928-0502285',
 '2MASSI J2306292-050227',
 '2MASSW J2306292-050227',
 'Gaia DR2 2635476908753563008',
 'WISEA J230630.02-050234.1',
 'TRAPPIST-1',
 'EPIC 200164267']

To see what arXiv articles reference our target (or its aliases), we can use test.arxiv_links.

[8]:
test.arxiv_links
[8]:
['https://arxiv.org/pdf/1708.02200',
 'https://arxiv.org/pdf/1706.02018',
 'https://arxiv.org/pdf/2003.11590',
 'https://arxiv.org/pdf/2002.10950',
 'https://arxiv.org/pdf/2002.05892',
 'https://arxiv.org/pdf/2002.04798',
 'https://arxiv.org/pdf/2002.02015',
 'https://arxiv.org/pdf/2001.11605',
 'https://arxiv.org/pdf/2001.08946',
 'https://arxiv.org/pdf/2001.06225',
 'https://arxiv.org/pdf/2001.04606',
 'https://arxiv.org/pdf/2001.01338',
 'https://arxiv.org/pdf/1912.05749',
 'https://arxiv.org/pdf/1912.02313',
 'https://arxiv.org/pdf/1912.02132',
 'https://arxiv.org/pdf/1911.09132',
 'https://arxiv.org/pdf/1911.08878',
 'https://arxiv.org/pdf/1911.08596',
 'https://arxiv.org/pdf/1911.02051',
 'https://arxiv.org/pdf/1910.09871',
 'https://arxiv.org/pdf/1909.13859',
 'https://arxiv.org/pdf/1909.13331',
 'https://arxiv.org/pdf/1909.12320',
 'https://arxiv.org/pdf/1909.09158',
 'https://arxiv.org/pdf/1908.10873',
 'https://arxiv.org/pdf/1908.04166',
 'https://arxiv.org/pdf/1907.13145',
 'https://arxiv.org/pdf/1907.06451',
 'https://arxiv.org/pdf/1907.05710',
 'https://arxiv.org/pdf/1907.02112',
 'https://arxiv.org/pdf/1906.09866',
 'https://arxiv.org/pdf/1906.06797',
 'https://arxiv.org/pdf/1906.05250',
 'https://arxiv.org/pdf/1906.03527',
 'https://arxiv.org/pdf/1906.00669',
 'https://arxiv.org/pdf/1905.12821',
 'https://arxiv.org/pdf/1905.11419',
 'https://arxiv.org/pdf/1905.11298',
 'https://arxiv.org/pdf/1905.07070',
 'https://arxiv.org/pdf/1905.06035',
 'https://arxiv.org/pdf/1905.02560',
 'https://arxiv.org/pdf/1905.00512',
 'https://arxiv.org/pdf/1903.04501',
 'https://arxiv.org/pdf/1902.08772',
 'https://arxiv.org/pdf/1902.04026',
 'https://arxiv.org/pdf/1902.03867',
 'https://arxiv.org/pdf/1902.03732',
 'https://arxiv.org/pdf/1901.04057',
 'https://arxiv.org/pdf/1901.02747',
 'https://arxiv.org/pdf/1901.02041',
 'https://arxiv.org/pdf/1901.02015',
 'https://arxiv.org/pdf/1901.00219']
[ ]: