> For the complete documentation index, see [llms.txt](https://pynytimes.michadenheijer.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pynytimes.michadenheijer.com/advanced-usage/automatic-connection.md).

# Automatic Connection

If you want to automatically close the connection then usage using the `with` statement is supported.

```python
with NYTAPI("Your API Key", parse_dates=True) as nyt:
    nyt.most_viewed()
```
