You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
419 B
Python
18 lines
419 B
Python
### IMPORTS
|
|
### ============================================================================
|
|
## Future
|
|
|
|
## Standard Library
|
|
import warnings
|
|
|
|
## Installed
|
|
|
|
## Application
|
|
from . import json
|
|
from . import utils
|
|
|
|
### CONSTANTS
|
|
### ============================================================================
|
|
ORJSON_AVAILABLE = utils.package_is_available("orjson")
|
|
MSGSPEC_AVAILABLE = utils.package_is_available("msgspec")
|