https://github.com/casl0/error_codes
https://github.com/casl0/error_codes
beautifulsoup python
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/casl0/error_codes
- Owner: CASL0
- License: mit
- Created: 2023-07-24T11:01:00.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-17T14:30:21.000Z (over 1 year ago)
- Last Synced: 2025-01-08T13:41:34.650Z (4 months ago)
- Topics: beautifulsoup, python
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# error_codes
[](https://github.com/CASL0/error_codes/actions/workflows/run.yml)
エラーコードとその説明を JSON で出力します。
## 出力形式
```json
{
"errors": [
{
"code": 0,
"alias": "ERROR_SUCCESS",
"description": "The operation completed successfully."
},
{
"code": 1,
"alias": "ERROR_INVALID_FUNCTION",
"description": "Incorrect function."
},
...
]
}
```## 対応エラーコード
- Windows システムエラーコード
- errno
- curl エラーコード### Windows システムエラーコード
GetLastError の戻り値とその説明をまとめています。
### errno
Linux カーネルのエラーコードとその説明をまとめています。
### curl エラーコード
curl のエラーコードとその説明をまとめています。
## 開発
### 実行方法
[Dev Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)をインストールし、以下の手順でビルドしてください。
1. VSCode で本プロジェクトを開き、[Dev Containers: Reopen in Container...]を実行してください。
1. `python app.py`を実行してください。