Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

75%
+4 −0
Q&A Readable syntax for executing many callables with useful side effects

In Python, multiprocessing is easy to do if you follow a "list projection" paradigm. Say you want to take a list of inputs X and apply some function f to every x_i, such that y_i = f(x_i) and the y...

1 answer  ·  posted 9mo ago by matthewsnyder‭  ·  last activity 9mo ago by mr Tsjolder‭

#4: Post edited by user avatar matthewsnyder‭ · 2023-08-09T22:53:01Z (9 months ago)
  • In Python, multiprocessing is easy to do if you follow a "list projection" paradigm. Say you want to take a list of inputs `X` and apply some function `f` to every `x_i`, such that `y_i = f(x_i)` and the `y_i` comprise the output list `Y`:
  • ```python
  • y = multiprocessing.Pool().map(f, x)
  • ```
  • Is there a good API to "take a list of **functions** `F`, and for each `f_i` run `f_i()`"?
  • List comprehension also runs into this issue, and you end up having to do stuff like:
  • ```python
  • # Bare statement, but still worth executing for the side effects
  • [f_i() for f_i in F]
  • ```
  • Multiprocessing pools look similarly silly:
  • ```python
  • # Trivial lambda to coerce args list into the functions
  • multiprocessing.Pool().map(lambda f: f(), F)
  • ```
  • While these aren't terribly long or complex, they are somewhat confusing at first glance. I worry that I would need 1-3 lines of comments just to ensure that they'll be readable in a few years when I've forgotten it. Often, whenever you need a lot of comments to explain some code, it's a sign that there's a much better way to do it. Is there such a better way in Python?
  • <details><summary>Context</summary>I want to have a loop which updates various Git repositories. There are differences in how various repos must be updated. Therefore, I want to have a loop that creates a function (no input, no output) tailored to the corner cases of each repo. Then use multiprocessing to actually execute those. This seems to make the actual business logic much simpler than trying to write a generic function that can handle all corner cases of every type of repo.
  • However, I am interested in the general idea more than the specific case of handling repos.
  • </details>
  • In Python, multiprocessing is easy to do if you follow a "list projection" paradigm. Say you want to take a list of inputs `X` and apply some function `f` to every `x_i`, such that `y_i = f(x_i)` and the `y_i` comprise the output list `Y`:
  • ```python
  • y = multiprocessing.Pool().map(f, x)
  • ```
  • Is there a good API to "take a list of **functions** `F`, and for each `f_i` run `f_i()`"?
  • List comprehension also runs into this issue, and you end up having to do stuff like:
  • ```python
  • # Bare statement, but still worth executing for the side effects
  • [f_i() for f_i in F]
  • ```
  • Multiprocessing pools look similarly silly:
  • ```python
  • # Must be defined in outer scope, otherwise you'll get pickling errors
  • def execute(f):
  • f()
  • multiprocessing.Pool().map(execute, F)
  • ```
  • While these aren't terribly long or complex, they are somewhat confusing at first glance. I worry that I would need 1-3 lines of comments just to ensure that they'll be readable in a few years when I've forgotten it. Often, whenever you need a lot of comments to explain some code, it's a sign that there's a much better way to do it. Is there such a better way in Python?
  • <details><summary>Context</summary>I want to have a loop which updates various Git repositories. There are differences in how various repos must be updated. Therefore, I want to have a loop that creates a function (no input, no output) tailored to the corner cases of each repo. Then use multiprocessing to actually execute those. This seems to make the actual business logic much simpler than trying to write a generic function that can handle all corner cases of every type of repo.
  • However, I am interested in the general idea more than the specific case of handling repos.
  • </details>
#3: Post edited by user avatar matthewsnyder‭ · 2023-08-09T20:34:29Z (9 months ago)
  • Readable syntax for executing many callables for the side effects
  • Readable syntax for executing many callables with useful side effects
#2: Post edited by user avatar matthewsnyder‭ · 2023-08-09T20:33:22Z (9 months ago)
  • In Python, multiprocessing is easy to do if you follow a "list projection" paradigm. Ie. say you want to take a list of inputs `X` and apply some function `f` to every `x_i`, such that `y_i = f(x_i)` and the `y_i` comprise the output list `Y`:
  • ```
  • y = multiprocessing.Pool().map(f, x)
  • ```
  • Is there a good API to "take a list of **functions** `F`, and for each `f_i` run `f_i()`"?
  • List comprehension also runs into this issue, and you end up having to do stuff like:
  • ```
  • # Bare statement, but still worth executing for the side effects
  • [f_i() for f_i in F]
  • ```
  • Multiprocessing pools look similarly silly:
  • ```
  • # Trivial lambda to coerce args list into the functions
  • multiprocessing.Pool().map(lambda f: f(), F)
  • ```
  • While these aren't terribly long or complex, they are somewhat confusing at first glance. I worry that I would need 1-3 lines of comments just to ensure that they'll be readable in a few years when I've forgotten it. Often, whenever you need a lot of comments to explain some code, it's a sign that there's a much better way to do it. Is there such a better way in Python?
  • <details><summary>Context</summary>I want to have a loop which updates various Git repositories. There are differences in how various repos must be updated. Therefore, I want to have a loop that creates a function (no input, no output) tailored to the corner cases of each repo. Then use multiprocessing to actually execute those. This seems to make the actual business logic much simpler than trying to write a generic function that can handle all corner cases of every type of repo.
  • However, I am interested in the general idea more than the specific case of handling repos.
  • </details>
  • In Python, multiprocessing is easy to do if you follow a "list projection" paradigm. Say you want to take a list of inputs `X` and apply some function `f` to every `x_i`, such that `y_i = f(x_i)` and the `y_i` comprise the output list `Y`:
  • ```python
  • y = multiprocessing.Pool().map(f, x)
  • ```
  • Is there a good API to "take a list of **functions** `F`, and for each `f_i` run `f_i()`"?
  • List comprehension also runs into this issue, and you end up having to do stuff like:
  • ```python
  • # Bare statement, but still worth executing for the side effects
  • [f_i() for f_i in F]
  • ```
  • Multiprocessing pools look similarly silly:
  • ```python
  • # Trivial lambda to coerce args list into the functions
  • multiprocessing.Pool().map(lambda f: f(), F)
  • ```
  • While these aren't terribly long or complex, they are somewhat confusing at first glance. I worry that I would need 1-3 lines of comments just to ensure that they'll be readable in a few years when I've forgotten it. Often, whenever you need a lot of comments to explain some code, it's a sign that there's a much better way to do it. Is there such a better way in Python?
  • <details><summary>Context</summary>I want to have a loop which updates various Git repositories. There are differences in how various repos must be updated. Therefore, I want to have a loop that creates a function (no input, no output) tailored to the corner cases of each repo. Then use multiprocessing to actually execute those. This seems to make the actual business logic much simpler than trying to write a generic function that can handle all corner cases of every type of repo.
  • However, I am interested in the general idea more than the specific case of handling repos.
  • </details>
#1: Initial revision by user avatar matthewsnyder‭ · 2023-08-09T20:23:24Z (9 months ago)
Readable syntax for executing many callables for the side effects
In Python, multiprocessing is easy to do if you follow a "list projection" paradigm. Ie. say you want to take a list of inputs `X` and apply some function `f` to every `x_i`, such that `y_i = f(x_i)` and the `y_i` comprise the output list `Y`:

```
y = multiprocessing.Pool().map(f, x)
```

Is there a good API to "take a list of **functions** `F`, and for each `f_i` run `f_i()`"?

List comprehension also runs into this issue, and you end up having to do stuff like:
```
# Bare statement, but still worth executing for the side effects
[f_i() for f_i in F]
```

Multiprocessing pools look similarly silly:
```
# Trivial lambda to coerce args list into the functions
multiprocessing.Pool().map(lambda f: f(), F)
```

While these aren't terribly long or complex, they are somewhat confusing at first glance. I worry that I would need 1-3 lines of comments just to ensure that they'll be readable in a few years when I've forgotten it. Often, whenever you need a lot of comments to explain some code, it's a sign that there's a much better way to do it. Is there such a better way in Python?

<details><summary>Context</summary>I want to have a loop which updates various Git repositories. There are differences in how various repos must be updated. Therefore, I want to have a loop that creates a function (no input, no output) tailored to the corner cases of each repo. Then use multiprocessing to actually execute those. This seems to make the actual business logic much simpler than trying to write a generic function that can handle all corner cases of every type of repo.

However, I am interested in the general idea more than the specific case of handling repos.
</details>