fa45d8aa5f
- health_checklist.json: 192.168.1.122→node122
- ocr_client.py: docstring IP→node122
- docs/market-data-requirements.md: IP→node122
- 所有API调用通过ProxyHandler({})绕过系统代理
Privoxy对node122:18003返回500,直连正常
33 lines
543 B
Python
33 lines
543 B
Python
from .itertoolz import *
|
|
|
|
from .functoolz import *
|
|
|
|
from .dicttoolz import *
|
|
|
|
from .recipes import *
|
|
|
|
from functools import partial, reduce
|
|
|
|
sorted = sorted
|
|
|
|
map = map
|
|
|
|
filter = filter
|
|
|
|
# Aliases
|
|
comp = compose
|
|
|
|
from . import curried, sandbox
|
|
|
|
functoolz._sigs.create_signature_registry()
|
|
|
|
|
|
def __getattr__(name):
|
|
if name == "__version__":
|
|
from importlib.metadata import version
|
|
|
|
rv = version("toolz")
|
|
globals()[name] = rv
|
|
return rv
|
|
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
|