Get the path of the project :return: Path of the project's .bnpr directory
(self)
| 394 | |
| 395 | @property |
| 396 | def path(self) -> str: |
| 397 | """ |
| 398 | Get the path of the project |
| 399 | |
| 400 | :return: Path of the project's .bnpr directory |
| 401 | """ |
| 402 | return core.BNProjectGetPath(self._handle) # type: ignore |
| 403 | |
| 404 | @property |
| 405 | def name(self) -> str: |
no outgoing calls