[+] add basic commands
This commit is contained in:
parent
a33711cc49
commit
1a668159c7
27
deps/test-task-2025-06-30-v1/Makefile
vendored
Normal file
27
deps/test-task-2025-06-30-v1/Makefile
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
ENV_PATH ?= .venv
|
||||||
|
PYTHON_VERSION ?= 3.10
|
||||||
|
UV_ARGS ?= --offline
|
||||||
|
|
||||||
|
venv_compile:
|
||||||
|
uv pip compile \
|
||||||
|
$(UV_ARGS) \
|
||||||
|
-p $(PYTHON_VERSION) \
|
||||||
|
--generate-hashes \
|
||||||
|
requirements.in > \
|
||||||
|
requirements.txt
|
||||||
|
|
||||||
|
|
||||||
|
venv:
|
||||||
|
uv \
|
||||||
|
venv \
|
||||||
|
$(UV_ARGS) \
|
||||||
|
--seed \
|
||||||
|
$(ENV_PATH)
|
||||||
|
uv \
|
||||||
|
pip install \
|
||||||
|
$(UV_ARGS) \
|
||||||
|
-p $(ENV_PATH) \
|
||||||
|
-r requirements.txt
|
||||||
|
|
||||||
|
pyright:
|
||||||
|
$(ENV_PATH)/bin/python3 -m pyright -c pyproject.toml .
|
221
deps/test-task-2025-06-30-v1/pyproject.toml
vendored
Normal file
221
deps/test-task-2025-06-30-v1/pyproject.toml
vendored
Normal file
@ -0,0 +1,221 @@
|
|||||||
|
[project]
|
||||||
|
description = 'test task for websocket with crypto tickers'
|
||||||
|
requires-python = '>= 3.10'
|
||||||
|
maintainers = [
|
||||||
|
{ name = 'Siarhei Siniak', email = 'siarheisiniak@gmail.com' },
|
||||||
|
]
|
||||||
|
classifiers = [
|
||||||
|
'Programming Language :: Python',
|
||||||
|
]
|
||||||
|
|
||||||
|
name = 'online.fxreader.pr34.test_task_2025_06_30_v1'
|
||||||
|
version = '0.1'
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
#"-r requirements.txt",
|
||||||
|
'mypy',
|
||||||
|
'marisa-trie',
|
||||||
|
'pydantic',
|
||||||
|
'pydantic-settings',
|
||||||
|
'tomlkit',
|
||||||
|
]
|
||||||
|
|
||||||
|
[project.optional-dependencies]
|
||||||
|
crypto = [
|
||||||
|
'cryptography',
|
||||||
|
]
|
||||||
|
|
||||||
|
early = [
|
||||||
|
'numpy',
|
||||||
|
'cryptography',
|
||||||
|
# 'tomlkit',
|
||||||
|
]
|
||||||
|
|
||||||
|
lint = [
|
||||||
|
'tomli',
|
||||||
|
'mypy',
|
||||||
|
'pyright',
|
||||||
|
'ruff',
|
||||||
|
# 'tomlkit',
|
||||||
|
]
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ['build', 'wheel', 'setuptools', 'setuptools-scm']
|
||||||
|
build-backend = 'setuptools.build_meta'
|
||||||
|
|
||||||
|
[tool.ruff]
|
||||||
|
line-length = 160
|
||||||
|
target-version = 'py310'
|
||||||
|
# builtins = ['_', 'I', 'P']
|
||||||
|
include = [
|
||||||
|
# 'follow_the_leader/**/*.py',
|
||||||
|
#'*.py',
|
||||||
|
# '*.recipe',
|
||||||
|
'*.py',
|
||||||
|
'online/**/*.py',
|
||||||
|
'online/**/*.pyi',
|
||||||
|
]
|
||||||
|
exclude = [
|
||||||
|
'.venv',
|
||||||
|
]
|
||||||
|
|
||||||
|
[tool.ruff.format]
|
||||||
|
quote-style = 'single'
|
||||||
|
indent-style = 'tab'
|
||||||
|
skip-magic-trailing-comma = false
|
||||||
|
|
||||||
|
|
||||||
|
[tool.ruff.lint]
|
||||||
|
ignore = [
|
||||||
|
'E402', 'E722', 'E741', 'W191', 'E101', 'E501', 'I001', 'F401', 'E714',
|
||||||
|
'E713',
|
||||||
|
# remove lambdas later on
|
||||||
|
'E731',
|
||||||
|
# fix this too
|
||||||
|
'E712',
|
||||||
|
'E703',
|
||||||
|
# remove unused variables, or fix a bug
|
||||||
|
'F841',
|
||||||
|
# fix * imports
|
||||||
|
'F403',
|
||||||
|
# don't care about trailing new lines
|
||||||
|
'W292',
|
||||||
|
|
||||||
|
]
|
||||||
|
select = ['E', 'F', 'I', 'W', 'INT']
|
||||||
|
|
||||||
|
|
||||||
|
[tool.ruff.lint.isort]
|
||||||
|
detect-same-package = true
|
||||||
|
# extra-standard-library = ["aes", "elementmaker", "encodings"]
|
||||||
|
# known-first-party = ["calibre_extensions", "calibre_plugins", "polyglot"]
|
||||||
|
# known-third-party = ["odf", "qt", "templite", "tinycss", "css_selectors"]
|
||||||
|
relative-imports-order = "closest-to-furthest"
|
||||||
|
split-on-trailing-comma = true
|
||||||
|
section-order = [
|
||||||
|
# '__python__',
|
||||||
|
"future",
|
||||||
|
"standard-library", "third-party", "first-party", "local-folder"
|
||||||
|
]
|
||||||
|
force-wrap-aliases = true
|
||||||
|
|
||||||
|
# [tool.ruff.lint.isort.sections]
|
||||||
|
# '__python__' = ['__python__']
|
||||||
|
|
||||||
|
[tool.pylsp-mypy]
|
||||||
|
enabled = false
|
||||||
|
|
||||||
|
[tool.pyright]
|
||||||
|
include = [
|
||||||
|
#'../../../../../follow_the_leader/views2/payments.py',
|
||||||
|
#'../../../../../follow_the_leader/logic/payments.py',
|
||||||
|
#'../../../../../follow_the_leader/logic/paypal.py',
|
||||||
|
'online/fxreader/pr34/commands_typed/**/*.py',
|
||||||
|
]
|
||||||
|
# stubPath = '../mypy-stubs'
|
||||||
|
extraPaths = [
|
||||||
|
'.',
|
||||||
|
'../mypy-stubs',
|
||||||
|
'../mypy-stubs/types-debugpy',
|
||||||
|
'../mypy-stubs/marisa-trie-types',
|
||||||
|
# '../../../../../',
|
||||||
|
]
|
||||||
|
#strict = ["src"]
|
||||||
|
|
||||||
|
analyzeUnannotatedFunctions = true
|
||||||
|
disableBytesTypePromotions = true
|
||||||
|
strictParameterNoneValue = true
|
||||||
|
enableTypeIgnoreComments = true
|
||||||
|
enableReachabilityAnalysis = true
|
||||||
|
strictListInference = true
|
||||||
|
strictDictionaryInference = true
|
||||||
|
strictSetInference = true
|
||||||
|
deprecateTypingAliases = false
|
||||||
|
enableExperimentalFeatures = false
|
||||||
|
reportMissingTypeStubs ="error"
|
||||||
|
reportMissingModuleSource = "warning"
|
||||||
|
reportInvalidTypeForm = "error"
|
||||||
|
reportMissingImports = "error"
|
||||||
|
reportUndefinedVariable = "error"
|
||||||
|
reportAssertAlwaysTrue = "error"
|
||||||
|
reportInvalidStringEscapeSequence = "error"
|
||||||
|
reportInvalidTypeVarUse = "error"
|
||||||
|
reportSelfClsParameterName = "error"
|
||||||
|
reportUnsupportedDunderAll = "error"
|
||||||
|
reportUnusedExpression = "error"
|
||||||
|
reportWildcardImportFromLibrary = "error"
|
||||||
|
reportAbstractUsage = "error"
|
||||||
|
reportArgumentType = "error"
|
||||||
|
reportAssertTypeFailure = "error"
|
||||||
|
reportAssignmentType = "error"
|
||||||
|
reportAttributeAccessIssue = "error"
|
||||||
|
reportCallIssue = "error"
|
||||||
|
reportGeneralTypeIssues = "error"
|
||||||
|
reportInconsistentOverload = "error"
|
||||||
|
reportIndexIssue = "error"
|
||||||
|
reportInvalidTypeArguments = "error"
|
||||||
|
reportNoOverloadImplementation = "error"
|
||||||
|
reportOperatorIssue = "error"
|
||||||
|
reportOptionalSubscript = "error"
|
||||||
|
reportOptionalMemberAccess = "error"
|
||||||
|
reportOptionalCall = "error"
|
||||||
|
reportOptionalIterable = "error"
|
||||||
|
reportOptionalContextManager = "error"
|
||||||
|
reportOptionalOperand = "error"
|
||||||
|
reportRedeclaration = "error"
|
||||||
|
reportReturnType = "error"
|
||||||
|
reportTypedDictNotRequiredAccess = "error"
|
||||||
|
reportPrivateImportUsage = "error"
|
||||||
|
reportUnboundVariable = "error"
|
||||||
|
reportUnhashable = "error"
|
||||||
|
reportUnusedCoroutine = "error"
|
||||||
|
reportUnusedExcept = "error"
|
||||||
|
reportFunctionMemberAccess = "error"
|
||||||
|
reportIncompatibleMethodOverride = "error"
|
||||||
|
reportIncompatibleVariableOverride = "error"
|
||||||
|
reportOverlappingOverload = "error"
|
||||||
|
reportPossiblyUnboundVariable = "error"
|
||||||
|
reportConstantRedefinition = "error"
|
||||||
|
#reportDeprecated = "error"
|
||||||
|
reportDeprecated = "warning"
|
||||||
|
reportDuplicateImport = "error"
|
||||||
|
reportIncompleteStub = "error"
|
||||||
|
reportInconsistentConstructor = "error"
|
||||||
|
reportInvalidStubStatement = "error"
|
||||||
|
reportMatchNotExhaustive = "error"
|
||||||
|
reportMissingParameterType = "error"
|
||||||
|
reportMissingTypeArgument = "error"
|
||||||
|
reportPrivateUsage = "error"
|
||||||
|
reportTypeCommentUsage = "error"
|
||||||
|
reportUnknownArgumentType = "error"
|
||||||
|
reportUnknownLambdaType = "error"
|
||||||
|
reportUnknownMemberType = "error"
|
||||||
|
reportUnknownParameterType = "error"
|
||||||
|
reportUnknownVariableType = "error"
|
||||||
|
#reportUnknownVariableType = "warning"
|
||||||
|
reportUnnecessaryCast = "error"
|
||||||
|
reportUnnecessaryComparison = "error"
|
||||||
|
reportUnnecessaryContains = "error"
|
||||||
|
#reportUnnecessaryIsInstance = "error"
|
||||||
|
reportUnnecessaryIsInstance = "warning"
|
||||||
|
reportUnusedClass = "error"
|
||||||
|
#reportUnusedImport = "error"
|
||||||
|
reportUnusedImport = "none"
|
||||||
|
# reportUnusedFunction = "error"
|
||||||
|
reportUnusedFunction = "warning"
|
||||||
|
#reportUnusedVariable = "error"
|
||||||
|
reportUnusedVariable = "warning"
|
||||||
|
reportUntypedBaseClass = "error"
|
||||||
|
reportUntypedClassDecorator = "error"
|
||||||
|
reportUntypedFunctionDecorator = "error"
|
||||||
|
reportUntypedNamedTuple = "error"
|
||||||
|
reportCallInDefaultInitializer = "none"
|
||||||
|
reportImplicitOverride = "none"
|
||||||
|
reportImplicitStringConcatenation = "none"
|
||||||
|
reportImportCycles = "none"
|
||||||
|
reportMissingSuperCall = "none"
|
||||||
|
reportPropertyTypeMismatch = "none"
|
||||||
|
reportShadowedImports = "none"
|
||||||
|
reportUninitializedInstanceVariable = "none"
|
||||||
|
reportUnnecessaryTypeIgnoreComment = "none"
|
||||||
|
reportUnusedCallResult = "none"
|
1
deps/test-task-2025-06-30-v1/requirements.in
vendored
Normal file
1
deps/test-task-2025-06-30-v1/requirements.in
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
tomlq
|
77
deps/test-task-2025-06-30-v1/requirements.txt
vendored
Normal file
77
deps/test-task-2025-06-30-v1/requirements.txt
vendored
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
# This file was autogenerated by uv via the following command:
|
||||||
|
# uv pip compile -p 3.10 --generate-hashes requirements.in
|
||||||
|
argcomplete==3.6.2 \
|
||||||
|
--hash=sha256:65b3133a29ad53fb42c48cf5114752c7ab66c1c38544fdf6460f450c09b42591 \
|
||||||
|
--hash=sha256:d0519b1bc867f5f4f4713c41ad0aba73a4a5f007449716b16f385f2166dc6adf
|
||||||
|
# via yq
|
||||||
|
pyyaml==6.0.2 \
|
||||||
|
--hash=sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff \
|
||||||
|
--hash=sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48 \
|
||||||
|
--hash=sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086 \
|
||||||
|
--hash=sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e \
|
||||||
|
--hash=sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133 \
|
||||||
|
--hash=sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5 \
|
||||||
|
--hash=sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484 \
|
||||||
|
--hash=sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee \
|
||||||
|
--hash=sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5 \
|
||||||
|
--hash=sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68 \
|
||||||
|
--hash=sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a \
|
||||||
|
--hash=sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf \
|
||||||
|
--hash=sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99 \
|
||||||
|
--hash=sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8 \
|
||||||
|
--hash=sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85 \
|
||||||
|
--hash=sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19 \
|
||||||
|
--hash=sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc \
|
||||||
|
--hash=sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a \
|
||||||
|
--hash=sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1 \
|
||||||
|
--hash=sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317 \
|
||||||
|
--hash=sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c \
|
||||||
|
--hash=sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631 \
|
||||||
|
--hash=sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d \
|
||||||
|
--hash=sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652 \
|
||||||
|
--hash=sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5 \
|
||||||
|
--hash=sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e \
|
||||||
|
--hash=sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b \
|
||||||
|
--hash=sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8 \
|
||||||
|
--hash=sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476 \
|
||||||
|
--hash=sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706 \
|
||||||
|
--hash=sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563 \
|
||||||
|
--hash=sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237 \
|
||||||
|
--hash=sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b \
|
||||||
|
--hash=sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083 \
|
||||||
|
--hash=sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180 \
|
||||||
|
--hash=sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425 \
|
||||||
|
--hash=sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e \
|
||||||
|
--hash=sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f \
|
||||||
|
--hash=sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725 \
|
||||||
|
--hash=sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183 \
|
||||||
|
--hash=sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab \
|
||||||
|
--hash=sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774 \
|
||||||
|
--hash=sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725 \
|
||||||
|
--hash=sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e \
|
||||||
|
--hash=sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5 \
|
||||||
|
--hash=sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d \
|
||||||
|
--hash=sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290 \
|
||||||
|
--hash=sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44 \
|
||||||
|
--hash=sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed \
|
||||||
|
--hash=sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4 \
|
||||||
|
--hash=sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba \
|
||||||
|
--hash=sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12 \
|
||||||
|
--hash=sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4
|
||||||
|
# via yq
|
||||||
|
tomlkit==0.13.3 \
|
||||||
|
--hash=sha256:430cf247ee57df2b94ee3fbe588e71d362a941ebb545dec29b53961d61add2a1 \
|
||||||
|
--hash=sha256:c89c649d79ee40629a9fda55f8ace8c6a1b42deb912b2a8fd8d942ddadb606b0
|
||||||
|
# via yq
|
||||||
|
tomlq==0.1.0 \
|
||||||
|
--hash=sha256:4b966fd999ed2bf69081b7c7f5caadbc4c9542d0ed5fcf2e9b7b4d8d7ada3c82 \
|
||||||
|
--hash=sha256:e775720e90da3e405142b9fe476145e71c0389f787b1ff9933f92a1704d8c6e7
|
||||||
|
# via -r requirements.in
|
||||||
|
xmltodict==0.14.2 \
|
||||||
|
--hash=sha256:201e7c28bb210e374999d1dde6382923ab0ed1a8a5faeece48ab525b7810a553 \
|
||||||
|
--hash=sha256:20cc7d723ed729276e808f26fb6b3599f786cbc37e06c65e192ba77c40f20aac
|
||||||
|
# via yq
|
||||||
|
yq==3.4.3 \
|
||||||
|
--hash=sha256:547e34bc3caacce83665fd3429bf7c85f8e8b6b9aaee3f953db1ad716ff3434d \
|
||||||
|
--hash=sha256:ba586a1a6f30cf705b2f92206712df2281cd320280210e7b7b80adcb8f256e3b
|
||||||
|
# via tomlq
|
Loading…
Reference in New Issue
Block a user