Results 10 comments of hpca01

@Hoeze Pandas has a `read_sql` function with a `chunk_size` option. As far as the implementation is concerned it piggybacks off the db connection to run a query therefore the column...

> @0xpr03 I solved this using `LOAD DATA FROM LOCAL INFILE` and then installing a custom handler which streamed the data directly from memory. Sorry, do you mind showing the...

@Diggsey I apologize as I am still new to the language, I got the whole thing to work by doing the following: ``` val.conn .set_local_infile_handler(Some(LocalInfileHandler::new(move |_, stream| { for a_val...

@Diggsey thanks so much for the clear explanation 😄 I will just leave it the way it is, and write some detailed comments instead. Thanks again for your patience, and...

No worries, lol sorry I usually work with an EHR record system that calls it's choices fields `CategoryList`. I think it's better to do it with `ChoicesField` like you said....

Just added in code, took a while to figure out edge test cases. Although I did my testing on Ipython, I will write out test cases in your fields_tests. Let...

Whoops, I apologize, here is the [PR Link](https://github.com/kneufeld/alkali/pull/5) For the test cases I planned on doing: 1. List with `str` only 2. Dict with `str` only 3. Empty list 4....

Yeah I figured half-way through creating the class that adding the `dict` over complicates it. I think that in order to make it simple the `allowed_choices`. I'll make those changes...

hi, not sure if u are still developing this lib, i wrote a Rust extension to parse XLSB using Calamine. Am currently working on CFFI and using milksnake to interpolate...

@wwwiiilll yeah, i figured the compiled binary wouldn't be ideal. However dylibs shouldn't require compilation across different OS, only difference being 32bit vs 64bit python versions. When I get the...