# madisonmay/Tomorrow

Magic decorator syntax for asynchronous code in Python

Repository: https://github.com/madisonmay/Tomorrow
Canonical: https://ross.abutalabs.com/products/madisonmay-tomorrow
Language: Python
License: MIT
License Family: permissive
Last push: 2020-02-16T18:30:59+00:00

## Health v2 (maintenance only)
Score: 32/100 (v2, computed 2026-09-03T02:20:16.233290+00:00)
- activity 0, release rhythm 35, longevity 100
- inputs: {"age_days": 4054, "days_push": 2390, "days_rel": null, "gap_med": null, "n_releases_24m": 0}
- flags: no_releases
- formula: round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10)

## Adoption (not part of the score)
Stars 1447, forks 96 (observed 2026-08-28T04:04:45.452406+00:00)

## What it is
A Python library providing a magic decorator that turns synchronous functions into non-blocking, multi-threaded ones via a thin wrapper around concurrent.futures. It was designed for Python 2.7 and is explicitly a thought experiment rather than production software.

## Use cases
- parallelize blocking http requests with a single decorator
- download many urls concurrently without writing threading code
- speed up slow io-bound loops in python 2.7
- run functions in a thread pool with minimal code changes
- add timeouts to concurrent function calls

## When to choose
- you are maintaining legacy Python 2.7 code and want minimal-effort concurrency
- you want a tiny educational example of wrapping concurrent.futures

## When to avoid
- you are writing new production code (the author says not to use it in production)
- you are on Python 3, where asyncio or concurrent.futures directly are better options
- you need robust, actively maintained concurrency tooling

## Facets
- artifact type: library
- maturity: abandoned
- function: concurrency
- domain: developer-tools
- platform: python
- tags: decorator, threading, concurrent-futures, async, python2, automation

## Member repositories
- madisonmay/Tomorrow (main) score 32

## Provenance
- Observed fields: from GitHub, fetched 2026-08-28T04:04:45.452406+00:00.
- Health v2: computed from the inputs above; adoption is never an input.
- Inferred fields (summary, facets, guidance): AI-extracted, prompt v1, taxonomy v1, on 2026-08-30T04:36:07.251344+00:00, confidence not recorded.
  - readme: https://github.com/madisonmay/Tomorrow (fetched 2026-08-28T04:04:45.452406+00:00, sha 64726f5f8dfa)
  - registry_pypi: https://pypi.org/pypi/tomorrow/json (fetched 2026-08-29T11:45:54.384290+00:00, sha fbd43c9d44d8)
- Data as of 2026-08-30T08:39:29.467469+00:00.
