Hasan Yousef
Hasan Yousef
I wrote the below code: `myapp/src/main.rs` ``` extern crate cpython; use cpython::{Python}; fn main() { let gil = Python::acquire_gil(); println!("Hello from Rust!"); let py = gil.python(); let module = cpython::PyModule::import(py,...
Thanks @ssokolow I wrote the below code: ``` extern crate cpython; use cpython::{Python, PyResult, PyModule}; // Load the contents of ../pyth/fibo.py into a string literal named "fibo_str" at compile time...
Thanks @ssokolow , I'll check it once I be home, hope you enjoyed your breakfast :)
Thanks a lot, it is working as expected, may you need to add simple example in the codes for the new users :)
It worked with me when I specified the names of the `user` and `password` fileds, as below: authentication { formAuthentication ("user", "pass"){ up: UserPasswordCredential -> when { up.password == "ppp"...
@null-dev I got an error as in the attached: 