Micah D. Cochran

Results 66 comments of Micah D. Cochran

Guix is very different from most being an immutable build system. NixOS is similar. My understand of NixOS is that you are required to install python packages via the Nix...

Thanks for reporting this. I've seen several approaches to JavaScript protected content. Many of which I haven't had much success with. I've looked into this for https://github.com/hhursev/recipe-scrapers/issues/193 and https://github.com/hhursev/recipe-scrapers/issues/447 I...

What would work best would be downloading the webpage and putting it through a JavaScript interpreting library as a string of HTML content. Passing that HTML string into the `loads()`...

`datetime` objects only supports microsecond precision [see](https://docs.python.org/3/library/datetime.html). The `isodate` library parses the format then creates a `datatime` objects `date`, `datetime`, and `time`. `timedelta` do include milliseconds. The incompatibility is the...

@dymil hit the nail on the head with the response. I wrote this so I would understand the problem a little better. Python's `datetime.datetime` doesn't support negative years. ```Python >>>...

> In any case, I think the current error message when parsing BCE years is misleading, perhaps it could be updated in the meantime? [expanded= parameter](https://github.com/gweis/isodate/blob/8856fdf0e46c7bca00229faa1aae6b7e8ad6e76c/src/isodate/isodates.py#L146C22-L147C59) @jonasengelmann If you want...