Nok Lam Chan
06/12/2023, 12:54 PMawesome-kedro
list? https://itstherealdyl.com/2022/03/29/deploying-a-recommendation-system-the-kedro-way/marrrcin
06/22/2023, 10:46 AMmarrrcin
06/29/2023, 11:27 AMJuan Luis
07/05/2023, 8:40 AMJo Stichbury
07/10/2023, 8:50 AMJuan Luis
07/11/2023, 12:53 PMJuan Luis
07/12/2023, 7:00 AMJuan Luis
08/14/2023, 9:13 AMJuan Luis
08/23/2023, 5:49 PMJuan Luis
08/30/2023, 1:58 PMbigframes
, DataFrame APIs for BigQuery 🔥 https://cloud.google.com/python/docs/reference/bigframes/latest, https://pypi.org/project/bigframes/Juan Luis
08/30/2023, 5:38 PMNok Lam Chan
09/02/2023, 7:15 PMJuan Luis
09/06/2023, 4:17 AMJuan Luis
09/06/2023, 10:12 AMmarrrcin
09/12/2023, 3:57 PMJuan Luis
09/29/2023, 4:41 PMdatajoely
09/29/2023, 4:47 PMmarrrcin
10/12/2023, 2:32 PMmarrrcin
10/18/2023, 3:24 PMNok Lam Chan
10/24/2023, 3:32 PMFor those who read https://kedro.org/blog/build-a-custom-kedro-runner (Kedro SoftFailRunner) before, there is a <https://github.com/noklam/kedro-softfail-runner
|pip-installable package> now. (Yes, you can extend Kedro Runner too)
pip install kedro_softfail_runner
kedro run --runner=kedro_softfail_runner.SoftFailRunner
Afiq Johari
10/26/2023, 12:14 PMiris
and spaceflights
, has anyone found other online examples that could be interesting to explore? It is helpful to learn from different designs and how people are implementing Kedro into their workflows.
Or maybe there's already a list somewhere that I'm not aware of. ThanksJuan Luis
11/08/2023, 10:02 AMdatajoely
11/09/2023, 5:54 PMJuan Luis
11/11/2023, 1:25 PMpypinfo
, a tool that allows you to query PyPI download stats from the CLI:
~/Projects/Personal/pypi-stats-playground ························· 14:23:29
❯ echo $GOOGLE_APPLICATION_CREDENTIALS
/home/juanlu/Projects/Personal/pypi-stats-playground/core-guard-404813-c03393ad4050.json
~/Projects/Personal/pypi-stats-playground ························· 14:23:40
❯ pypinfo kedro
Served from cache: False
Data processed: 657.83 MiB
Data billed: 658.00 MiB
Estimated cost: $0.01
| download_count |
| -------------- |
| 349,627 |
it can filter by date, Python version, package version... read on! https://github.com/ofek/pypinfo#usageJuan Luis
11/22/2023, 4:22 AMLaiza Milena Scheid Parizotto
11/24/2023, 3:01 PMpillow.ImageDataSet
and PartitionedDataset
just for reference?Juan Luis
11/27/2023, 11:40 AMJuan Luis
11/29/2023, 11:21 AMJuan Luis
12/01/2023, 8:00 AMChris Schopp
12/05/2023, 2:52 PM__name__
instead of typing out a str
.
node(
func=explode_missing_values,
...
name=explode_missing_values.__name__,
)
# is equivalent to
node(
func=explode_missing_values,
...
name="explode_missing_values",
)
If you're setting the node name to be the function name, this makes it so renaming the function and the node is just one step.