Replies: 1 comment
|
The full messages that I'm seing are: C:\Users\aabbcc\AppData\Local\pypoetry\Cache\virtualenvs\ddo-kEAL29On-py3.11\Lib\site-packages\rocketry\session.py:353: UserWarning: Logger rocketry.task cannot be read. Logging is set to memory. To supress this warning, please set a handler that can be read (redbird.logging.RepoHandler) |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
First of all, thank you for this awesome application, it is the best solution I have found to build ETLon windows. Thank you!
I'm facing this warning message when I run my application.
I'm running on a Windows 10 PC, using Python 3.11.
That are my dependencies:
[tool.poetry.dependencies]
python = "^3.11"
rocketry = "^2.5.1"
redbird = "^0.7.1"
pydantic = "1.10.10"
playwright = "^1.33.0"
rich = "^13.3.5"
pathlib = "^1.0.1"
pandas = "^2.0.1"
pyarrow = "^12.0.0"
fastparquet = "^2023.4.0"
pillow = "^10.0.0"
My app tree:
ddo
ddo
init.py (empty)
conditions.py (empty)
parameters.py (empty)
main.py
schedule.py
tasks
init.py (empty)
export_data.py
tools
use_playwright_to_export_from_web.py
log
run_app.bat
pyproject.toml
poetry.lock
[main.py]
[schedule.py]
I have no idea what I'm doing wrong, but when I run the app, I see the logger being logged on CSV file as I want, but I'm seeing this warning error when I run my app.
How can I prevent this message to be shown?
All reactions