Fix logger.exception messages in example code.
[pyutils.git] / examples / README
index ff70e01dfd0daca9112b8671b00f92009ce4ba59..0ed75c90d473ff0be220d58b0c2fe8ece117e0b4 100644 (file)
@@ -13,6 +13,13 @@ dedup_files:
     are duplicates of each other then optionally deletes duplicates or
     symlinks duplicates back to an original.
 
     are duplicates of each other then optionally deletes duplicates or
     symlinks duplicates back to an original.
 
+fff:
+    Find f'ed fstrings... not so much an example but rather a
+    development tool.  Identifies places where I meant to use an
+    f-string (used braces in a string) but didn't make the string an
+    f-string.  I run this as a pre-commit hook and thought it would be
+    good to include.
+
 parallelize_config:
     This is a sample config file (place in ~/.remote_worker_records or
     override with --remote_worker_records_file) for the @parallelize
 parallelize_config:
     This is a sample config file (place in ~/.remote_worker_records or
     override with --remote_worker_records_file) for the @parallelize
@@ -34,4 +41,8 @@ wordle:
     the @parallelize framework and shared_dict which it uses to
     precompute the solution space on several processes at once.
 
     the @parallelize framework and shared_dict which it uses to
     precompute the solution space on several processes at once.
 
+../tests/run_tests.py:
+    Though not under examples/ this is still a stand alone program that
+    uses pyutils concepts like @parallelize and smart_futures that might
+    be helpful to look at.