```
Python usage with strings
-```
+```python
import chevron
chevron.render('Hello, {{ mustache }}!', {'mustache': 'World'})
```
Python usage with file
-```
+```python
import chevron
with open('file.mustache', 'r') as f:
```
Python usage with unpacking
-```
+```python
import chevron
args = {
```
chevron supports partials (via dictionaries)
-```
+```python
import chevron
args = {
```
chevron supports partials (via the filesystem)
-```
+```python
import chevron
args = {