pythonlib v1.0.0
pythonlib v1.0.0 🎉
First stable release of pythonlib - Python standard library for TypeScript.
Features
- Zero dependencies - No external runtime dependencies
- Full TypeScript support - Complete type definitions
- 11 Python modules - itertools, functools, collections, datetime, re, json, math, random, os, string
- Multi-runtime support - Node.js, Bun, Deno, and browsers
- camelCase API - JavaScript-idiomatic naming
Modules
| Module | Description |
|---|---|
pythonlib |
Core builtins (len, range, enumerate, zip, sorted, etc.) |
pythonlib/itertools |
chain, combinations, permutations, product, cycle, etc. |
pythonlib/functools |
partial, reduce, lruCache, cache, pipe |
pythonlib/collections |
Counter, deque, defaultdict |
pythonlib/datetime |
datetime, date, time, timedelta |
pythonlib/re |
match, search, findAll, sub, split |
pythonlib/math |
Mathematical functions and constants |
pythonlib/random |
Random number generation |
pythonlib/json |
JSON encoding/decoding |
pythonlib/os |
Path operations, environment |
pythonlib/string |
String utilities and constants |
Installation
```bash
npm install pythonlib
```