Fastcore

Latest version: v1.5.45

Safety actively analyzes 639495 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 13 of 14

1.0.19

New Features

- `run`: flexibly run an external process and raise exception if it fails ([105](https://github.com/fastai/fastcore/issues/105))

1.0.16

New Features

- add `threadpool=False` param to `parallel` to use threads instead of processes ([102](https://github.com/fastai/fastcore/issues/102))

1.0.15

New Features

- add `L.map_filter` and `L.map_first` ([97](https://github.com/fastai/fastcore/issues/97))
- These support some nice refactorings, like changing from this:
python
d = []
for c in cs:
m = f(c)
if not m:
continue
d.append(m.group(1))

to this:
python
d = cs.map_filter(f).map(Self.group(1))

1.0.14

Bugs Squashed

- Reapply fix for 86 which was unintentionally reverted by the next commit ([91](https://github.com/fastai/fastcore/issues/91))

1.0.13

New Features

- `dict2obj`: Convert (possibly nested) dicts (or lists of dicts) to `SimpleNamespace` ([90](https://github.com/fastai/fastcore/issues/90))

1.0.12

New Features

- add function support to `store_attr` ([85](https://github.com/fastai/fastcore/issues/85))

Bugs Squashed

- `mp_context` keyword for initialising concurrent.futures.ProcessPoolExecutor only supported in python 3.7+ ([86](https://github.com/fastai/fastcore/issues/86))

Page 13 of 14

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.