Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 26 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,22 +47,32 @@ fable --lang Python MyProject.fsproj

### Python Standard Library

| Module | Description |
| ----------------------- | ------------------------------------------- |
| `Fable.Python.Builtins` | Built-in functions (open, print, len, etc.) |
| `Fable.Python.Json` | JSON serialization with Fable type support |
| `Fable.Python.Os` | Operating system interfaces |
| `Fable.Python.Sys` | System-specific parameters |
| `Fable.Python.Math` | Mathematical functions |
| `Fable.Python.Random` | Random number generation |
| `Fable.Python.Logging` | Logging facilities |
| `Fable.Python.Time` | Time-related functions |
| `Fable.Python.String` | String operations |
| `Fable.Python.Base64` | Base64 encoding/decoding |
| `Fable.Python.Queue` | Queue data structures |
| `Fable.Python.Ast` | Abstract Syntax Tree |
| `Fable.Python.AsyncIO` | Async programming (Events, Futures, Tasks) |
| `Fable.Python.TkInter` | GUI toolkit |
| Module | Description |
| --------------------------- | ------------------------------------------- |
| `Fable.Python.Builtins` | Built-in functions (open, print, len, etc.) |
| `Fable.Python.Json` | JSON serialization with Fable type support |
| `Fable.Python.Os` | Operating system interfaces |
| `Fable.Python.Sys` | System-specific parameters |
| `Fable.Python.Math` | Mathematical functions |
| `Fable.Python.Random` | Random number generation |
| `Fable.Python.Logging` | Logging facilities |
| `Fable.Python.Time` | Time-related functions |
| `Fable.Python.Datetime` | Date and time types (date, time, datetime) |
| `Fable.Python.String` | String operations |
| `Fable.Python.Base64` | Base64 encoding/decoding |
| `Fable.Python.Html` | HTML escaping/unescaping |
| `Fable.Python.Queue` | Queue data structures |
| `Fable.Python.Heapq` | Heap queue (priority queue) operations |
| `Fable.Python.Threading` | Threads, locks, events, semaphores |
| `Fable.Python.Itertools` | Efficient looping constructs |
| `Fable.Python.Functools` | Higher-order functions (reduce, lru_cache) |
| `Fable.Python.Collections` | Counter, defaultdict, deque, OrderedDict |
| `Fable.Python.Regex` | Regular expression matching |
| `Fable.Python.Pathlib` | Object-oriented filesystem paths |
| `Fable.Python.Ast` | Abstract Syntax Tree |
| `Fable.Python.AsyncIO` | Async programming (Events, Futures, Tasks) |
| `Fable.Python.Traceback` | Stack trace utilities |
| `Fable.Python.TkInter` | GUI toolkit |

### Web Frameworks

Expand Down