https://github.com/summertime/pyrolysis
Python-like utilities for JS-like programs.
https://github.com/summertime/pyrolysis
Last synced: about 1 year ago
JSON representation
Python-like utilities for JS-like programs.
- Host: GitHub
- URL: https://github.com/summertime/pyrolysis
- Owner: Summertime
- License: unlicense
- Created: 2024-02-03T10:01:54.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-28T07:09:50.000Z (over 2 years ago)
- Last Synced: 2025-05-16T02:12:33.337Z (about 1 year ago)
- Language: TypeScript
- Homepage: https://deno.land/x/pyrolysis
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pyrolysis
Python-like utilities for JS-like programs.
## Example
```ts
import { all } from "jsr:@summer/builtins";
console.log(await all(["a", "b", "c"]));
// true
```
## Contributing
Any help would be greatly appreciated, either in filling out documentation, or
adding more utilities.
## Licensing
The `toolz` directory references the API, code, documentation, algorithms,
others of the [`toolz` Python library](https://toolz.readthedocs.io/), which is
licensed under a
[BSD 3-Clause license](https://github.com/pytoolz/toolz/blob/master/LICENSE.txt).
The text of the license is duplicated to the `toolz.LICENSE` file.
The `builtins`, `itertools`, and `functools` directories references the API,
code, documentation, algorithms, others of [Python](https://www.python.org/),
which is licensed under the
[PSF License Agreement](https://docs.python.org/3/license.html). The text of the
license is duplicated to the `python.LICENSE` file.
Everything else (Original code, others) is licensed under the
[Unlicense](https://unlicense.org/). The text of the license is duplicated to
the `UNLICENSE` file.