This repository has been archived by the owner on Jan 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/print-console
- Loading branch information
Showing
23 changed files
with
189 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Check phạt nguội | ||
|
||
Tool kiểm tra phạt nguội cho phương tiện giao thông của bạn. Hỗ trợ notify đến các nền tảng Telegram,... | ||
Tool kiểm tra phạt nguội cho phương tiện giao thông của bạn. Hỗ trợ notify đến các nền tảng Telegram, Discord... |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
### Get for 6A64685 | ||
POST /phatnguoi | ||
HOST: https://api.checkphatnguoi.vn | ||
# Config | ||
@plate = 30F88251 | ||
|
||
### Get for {{plate}} | ||
POST https://api.checkphatnguoi.vn/phatnguoi | ||
Content-Type: application/json | ||
|
||
{"bienso": "60A64685"} | ||
{"bienso": "{{plate}}"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
### csgt | ||
POST /?mod=contact&task=tracuu_post&ajax | ||
HOST: www.csgt.vn | ||
Cookie: PHPSESSID=jmg7m23ttkho70rap0fs6evgb0 | ||
# Config | ||
@plate = 30F88251 | ||
@type = 1 | ||
@phpsessid = jmg7m23ttkho70rap0fs6evgb0 | ||
@captcha = rtz4rv | ||
|
||
### Get data for {{plate}} with type {{type}} | ||
POST www.csgt.vn/?mod=contact&task=tracuu_post&ajax | ||
Cookie: PHPSESSID={{phpsessid}} | ||
content-type: application/x-www-form-urlencoded | ||
|
||
BienKS=60A64685 & | ||
Xe=1 & | ||
captcha=rtz4rv & | ||
ipClient=9.9.9.91 & | ||
cUrl=1 | ||
BienKS = {{plate}} & | ||
Xe= {{type}} & | ||
captcha = {{captcha}} & | ||
ipClient = 9.9.9.91 & | ||
cUrl = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
### phatnguoi.vn | ||
GET /web/tra-cuu/30F88251/1 | ||
HOST: https://api.phatnguoi.vn | ||
# Config | ||
@plate = 30F88251 | ||
@type = 1 | ||
|
||
### Get data for {{plate}} with type {{type}} | ||
GET https://api.phatnguoi.vn/web/tra-cuu/{{plate}}/{{type}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
from .base_engine import BaseGetDataEngine | ||
from .check_phat_nguoi import GetDataEngineCheckPhatNguoi | ||
from .csgt import GetDataEngineCsgt | ||
from .base import BaseGetDataEngine | ||
from .check_phat_nguoi import CheckPhatNguoiGetDataEngine | ||
from .csgt import CsgtGetDataEngine | ||
|
||
__all__ = [ | ||
"BaseGetDataEngine", | ||
"GetDataEngineCheckPhatNguoi", | ||
"GetDataEngineCsgt", | ||
"CheckPhatNguoiGetDataEngine", | ||
"CsgtGetDataEngine", | ||
] |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.