## GreatDocs.uninstall()


Remove great-docs configuration and build directory from the project.


Usage

``` python
GreatDocs.uninstall()
```


This method deletes the great-docs.yml configuration file and the great-docs/ build directory (if it exists).

> **Note: Note**
>
> In practice, you would normally use the `great-docs uninstall` CLI command rather than calling this method directly. See the [CLI reference](cli/uninstall.md) for details.


## Examples

Uninstall great-docs from the current directory:

``` python
from great_docs import GreatDocs

docs = GreatDocs()
docs.uninstall()
```

Uninstall from a specific project directory:

``` python
docs = GreatDocs("/path/to/my/project")
docs.uninstall()
```
