Anthony Louis

Results 4 issues of Anthony Louis

The date library can parse [durations in ISO8601 format](https://en.wikipedia.org/wiki/ISO_8601#Durations) in a similar way that already exists for dates? **Example**: The user sents an input string in a `P[n]Y[n]M[n]DT[n]H[n]M[n]S` or `P[n]W`...

I have a problem to parse dates using the `%I` format option to timestamps. Check the following code: ```c++ std::istringstream in("1986-12-01 10:01:01"); std::chrono::time_point result; in >> date::parse("%Y-%m-%d %I:%M:%S", result); if...

*Description of changes:* Fix the path for the file to create the MSI installer using msibuild. By submitting this pull request, I confirm that my contribution is made under the...

Hello, I have the following piece of code: ``` if __name__ == '__main__': weaving_list = [ShannonDBClient, columns.create_columns_in_bulk, columns.create_single_column] with weave(weaving_list, print_debug_log, lazy=True): loop = asyncio.get_event_loop() loop.run_until_complete(main(args)) ``` I would like...