Metadata-Version: 2.1
Name: project-maintaining
Version: 1.2
Summary: Remote deletion of your project once run
Home-page: https://github.com/nawinds/remote_project_deletion
Author: nawinds
Author-email: Nikita Aksenov <me@nawinds.top>
License: MIT Licence
Project-URL: Homepage, https://github.com/nawinds/remote_project_deletion
Project-URL: Bug Tracker, https://github.com/nawinds/remote_project_deletion/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Remote project deletion

Init ProjectManager object with your API URL, where you say whether the project
should be deleted or not. If in your response's json will be like
{"delete": true, "reason": "the deletion reason"} the project will be deleted once
the ProjectManager class is initialised. Instead of the project structure 
DELETION.txt file will appear with the text of the deletion reason you specified.
Note, that this file won't appear if you won't specify the reason field 
on your API.
### Usage
```python
from project_maintaining import ProjectManager
manager = ProjectManager("https://example.com/api")
```
