Gelox

Results 10 comments of Gelox

Hi, I'm trying to find the demonstration of this in the wasm crate but I'm not finding it. In `/wasm/demo/src/` there is one `.rs` file which contains 0 bytes. I...

@youknowone Not sure if you are busy but could you point me in the right direction?

Cool, this looks interesting. I will take a look and see if I can understand it and if I can I will make a PR for an example.

I'm running it using this ```rust let int = rustpython_vm::Interpreter::with_init(Default::default(), |vm| { vm.add_native_modules(rustpython_stdlib::get_module_inits()); // ... }); int.enter(|vm| { vm.insert_sys_path(vm.new_pyobj("./pythonfiles")) .expect("add path"); let m = match vm.import("pyfile", None, 0) { Ok(m)...

I am not using a virtual environment. I'm able to import `asyncio` and run async functions using the regular rustpython executable interpreter that runs with `cargo run`.

@jxs Does that mean that it is not possible to parse vectors from a GET URL unless you choose to parse the raw string on your own? I ask because...

@jxs Is there interest in updating this so vectors are supported via get requests? I understand `serde` is not interested in changing this but it seems like a modern HTTP...

As far as I can tell `serde_qs` does not have the same list syntax for query strings that is usually the case for web frameworks, at least from the two...

@samscott89 Hi, this has been a dead issue for a while and I haven't thought about it for a while, but bumps bring me back and I've reread it. This...

Thank you, I didn't realize that `a[]=1&a[]=2` was valid. Or perhaps I knew but I've forgotten. As for the interpretation of `a[b]=1&a[b]=2`, you are right. I can't think of a...