Skip to main content

Erlang/OTP primitives for Python.

Reason this release was yanked:

i didnt even know you could publish retroactively

Project description

fauxtp

Erlang/OTP primitives for Python.

It brings GenServer, Supervisor, and pattern-matched message passing to Python's async ecosystem (via anyio).

It is not fast. It is not the BEAM. It is, however, a way to write concurrent Python that doesn't make you want to quit programming.

Creation

Most of this project was initially vibecoded. However at this point I've had to put my grubby little mitts on it enough that I'm pretty confident that what it's doing is correct, and if it isn't then it's my fault too.

Install

uv add fauxtp

The Gist

Note: actors are started inside an AnyIO TaskGroup (structured concurrency). You must pass task_group=... to python.Actor.start().

GenServer

If you know OTP, you know this. If you don't: it's a stateful actor that handles synchronous calls and asynchronous casts.

from fauxtp import GenServer, call, cast
import anyio

class Counter(GenServer):
    async def init(self):
        return {"count": 0}

    async def handle_call(self, request, _from, state):
        match request:
            case "get":
                return state["count"], state
            case ("add", n):
                new_count = state["count"] + n
                return new_count, {"count": new_count}

    async def handle_cast(self, request, state):
        match request:
            case "reset":
                return {"count": 0}

async def main():
    async with anyio.create_task_group() as tg:
        pid = await Counter.start(task_group=tg)

        print(await call(pid, ("add", 5)))  # 5
        await cast(pid, "reset")
        print(await call(pid, "get"))       # 0

anyio.run(main)

Supervisors

Let it crash. The supervisor restarts it.

from fauxtp import Supervisor, ChildSpec, RestartStrategy

class App(Supervisor):
    strategy = RestartStrategy.ONE_FOR_ONE

    def child_specs(self):
        return [
            ChildSpec(id="c1", actor_class=Counter),
            ChildSpec(id="c2", actor_class=Counter),
        ]

What's inside?

  • Actors: send, receive (with pattern matching).
  • GenServer: call, cast, info.
  • Supervisors: one_for_one, one_for_all, rest_for_one.
  • Registry: register(name, pid), whereis(name).

Why?

Async Python often devolves into a mess of unmanaged tasks and race conditions. OTP solved this decades ago with structured concurrency trees. We're just borrowing their homework.

Recommendations for more Elixir-like Python

The fauxtp code only requires anyio as a dependency, and that will remain true. However, if you want to have even more Elixir shenanigans, we can make the following recommendations:

  • Treat server state as a value.

    • Do not mutate the incoming state in-place, always return a new state.
    • While this isn't required (Python is pass by reference, so any mutated state should apply to the overall state), we make no guarantees as to whether or not things will break.
  • Prefer forcibly immutable/persistent state containers.

    • Avoid Python stdlib mutable collections (list, dict, set, most collections.*), except for tuples (and other immutables).
    • Consider rpds-py or pyrsistent for persistent vectors/maps/sets.
  • Avoid using typing.Any in user code where possible.

    • While we have to use it internally to avoid exploding errors (and some of this may leak to the more publicly aimed APIs), we highly recommend using Generic[T] where needed, as our GenServer does to specify its request and state types.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fauxtp-0.1.0.dev1.tar.gz (122.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fauxtp-0.1.0.dev1-py3-none-any.whl (18.9 kB view details)

Uploaded Python 3

File details

Details for the file fauxtp-0.1.0.dev1.tar.gz.

File metadata

  • Download URL: fauxtp-0.1.0.dev1.tar.gz
  • Upload date:
  • Size: 122.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.17

File hashes

Hashes for fauxtp-0.1.0.dev1.tar.gz
Algorithm Hash digest
SHA256 a54d70225814f3bc7706a5755f99300a45d192eec0b36d4b982e4dcccbf498c3
MD5 8f93c363290307abf26c447a1484908b
BLAKE2b-256 694f765d2a59d6eddb1d46d9bddece16ba6c6a215ceef0adb82ae2c0d7e9b05a

See more details on using hashes here.

File details

Details for the file fauxtp-0.1.0.dev1-py3-none-any.whl.

File metadata

File hashes

Hashes for fauxtp-0.1.0.dev1-py3-none-any.whl
Algorithm Hash digest
SHA256 4311412d0b26992ef2357b289fbe5974d1ed96fe609af32c32ac049e0036895b
MD5 493d1b8bcac8bc3d56464b02bc29b227
BLAKE2b-256 f0c45480d845bdb06a293a4beba3d1eaa6dac459b0ac14120fa3d42e12bfcd8d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page