for sanitizing HTML. Example:
```js
languagePluginLoader.then(() => {
// pyodide is now ready to use...
pyodide.loadPackage('bleach').then(() => {
pyodide.runPython(`
import bleach
print(bleach.clean('There is good stuff <script>and bad stuff</script> in here.'))
`);
});
});
```
leads to the output:
```
There is good stuff <script>and bad stuff</script> in here.
```