From 8e0c60b1346afdfd80e5910b10b8fa546b3d1b89 Mon Sep 17 00:00:00 2001 From: amitness Date: Sat, 28 Dec 2024 20:14:39 +0545 Subject: [PATCH 1/2] Fix cli failing when running directly as "bulk" --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3479c6a..0aa7564 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ }, entry_points={ 'console_scripts': [ - 'bulk = bulk.__main__:app', + 'bulk = bulk.__main__:cli.run', ], }, ) From c391944cf7975ab4c6b77f886afee101ca5473fa Mon Sep 17 00:00:00 2001 From: amitness Date: Sun, 29 Dec 2024 12:28:01 +0545 Subject: [PATCH 2/2] Fix broken link for demo csv file --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd23cb3..24d2266 100644 --- a/README.md +++ b/README.md @@ -145,7 +145,7 @@ python -m bulk text ready.csv ``` If you're looking for an example file to play around with you can download -[the demo .csv file](https://github.com/koaning/bulk/blob/main/cluestarred.csv) in this repository. This dataset +[the demo .csv file](https://github.com/koaning/bulk/blob/main/utils/df.csv) in this repository. This dataset contains a subset of a dataset found on Kaggle. You can find the original [here](https://www.kaggle.com/datasets/thoughtvector/customer-support-on-twitter). ### Extra Settings