stock-tracker

This commit is contained in:
C菌
2026-07-04 00:17:11 +08:00
commit 6087341a48
6463 changed files with 1929869 additions and 0 deletions
@@ -0,0 +1,16 @@
import warnings
class CurlCffiWarning(UserWarning, RuntimeWarning):
pass
def config_warnings(on: bool = False):
if on:
warnings.simplefilter("default", category=CurlCffiWarning)
else:
warnings.simplefilter("ignore", category=CurlCffiWarning)
def is_pro():
return False