Mike Perlov
Mike Perlov
Hi, I am building a grammar for a subset of SQL (or more specifically [SAS PROC SQL sql-expression](https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/sqlproc/p020urejdmvi7vn1t9avbvazqapu.htm), which is an extension of ANSI SQL). I've used infix_notation, however it...
Hey, great work on the cookiecutter and all of the forks! Found the popular ones mentioned in the docs being somewhat outdated, so created a clean newer one. Will soon...
The following code works on py3.11.5: ```python import polars as pl import duckdb df = pl.DataFrame({ 'column1': ['value1'] }) with duckdb.connect(':memory:') as con: try: con.register("df", df) con.sql(f"CREATE TABLE test AS...
Hi, This does two things: * Mostly implements #136 (see below) * Adds a new config option `forbid_extra_keys`, that, well, checks for extra keys during deserialization and fails with a...
**Is your feature request related to a problem? Please describe.** First, this has been discussed in #83 and dismissed. But I'd like to raise the question and propose a solution...
Hi, This mostly implements https://github.com/Fatal1ty/mashumaro/issues/136 (see below) Caveats: * The codecs code is pretty dense, I've tried to understand it without the comments, but do not feel confident enough to...
Hi, This is a very rough draft, opening to see if @jcrist will be open for this feature/approach. It addresses #656 and my own #541 - allowing to decode data...
Hi! Wanted to float an idea of adding "array_like" serialization format for data classes. Essentially the same as [this msgspec feature](https://jcristharif.com/msgspec/structs.html#encoding-decoding-as-arrays). As of time of writing this is just a...
### Description Apparently at least VS Code language server doesn't analyze 3rd party libraries beyond the top-level package, which means no automatic imports (code suggestions). This is inconvenient enough to...