-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: const.py should be a easily parsible file and work as raw data
- Loading branch information
1 parent
30f00b7
commit fb5930b
Showing
7 changed files
with
25 additions
and
23 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
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,4 @@ | ||
from .global_const import * | ||
from .const import * | ||
from .environment import * | ||
from .log import * | ||
from .model import * |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
YUHENG_CORE_NAME = "Yuheng" | ||
YUHENG_VERSION = "1.3.0" | ||
YUHENG_START_ID = "-20210217" | ||
|
||
API_LIMIT_MAX_CHANGESET_ELEMENTS = 10000 | ||
API_LIMIT_MAX_RELATION_MEMBERS = 32000 | ||
API_LIMIT_MAX_WAY_NODES = 2000 | ||
API_LIMIT_MAX_ELEMENT_TAGS = 5000 | ||
API_LIMIT_MAX_KEY_LENGTH = 255 | ||
API_LIMIT_MAX_VALUE_LENGTH = 255 |
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