Metadata-Version: 2.1
Name: gitee-deleter
Version: 0.0.2
Summary: 一键删光 Gitee 个人项目，非常垂直的账号注销脚本
Home-page: https://github.com/QIN2DIM/gitee-deleter
Author: QIN2DIM
Author-email: rmalkaid@outlook.com
License: Apache License 2.0
Keywords: gitee,gitee-deleter
Platform: UNKNOWN
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

## Introduction

`Gitee`账号注销[砖]家，一键删光「我的仓库」。

## Requirements

- google-chrome
- Python3.8+

## Usage

> 项目依赖 google-chrome 运行，请确保你的计算机已装有谷歌浏览器。

1. 下载依赖

   ```bash
   pip install gitee-deleter
   ```

2. 六根清净方为道，退步原来是向前

   拷贝如下参考代码，填入必要的账号信息，执行程序。

   该脚本启动有头模式浏览器进行自动化作业。由于「删库」是相当敏感的操作，所以在本人在不影响脚本性能的情况下插入了非常多的 `sleep` 语句。如果你发现情况不对，手动关闭浏览器杀死进程即可。

   ```python
   from gitee_deleter import remove_all
   
   GITEE_USERNAME: str = ""
   GITEE_PASSWORD: str = ""
   
   if __name__ == "__main__":
       remove_all(username=GITEE_USERNAME, password=GITEE_PASSWORD)
   
   ```



