Metadata-Version: 2.1
Name: this-american-life
Version: 0.1.1
Summary: scraper client for the This American Life website
Home-page: https://github.com/{package_name}
Author-email: howley.robert@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
Requires-Dist: lxml
Requires-Dist: requests

# this american client
The [This American Life](https://www.thisamericanlife.org/) client library. 

Get structured data on transcripts, episodes, et c without worrying about all of the web scraping details. Intermediate
results are cached to keep it snappy.

## Install

```bash
pip install this-american-life
```

## Using the client

### Get the transcript of an episode
```python
from thisamericanlife import ThisAmericanLife

tal = ThisAmericanLife()
ep_one_transcript = tal.transcripts.get(episode_number=1)

print(ep_one_transcript.transcript)
```

