read with ai
read with ai
`arpgarse` is part of the standard library so it isn't a dependency, but I agree there is conceptual overhead for non-python programmers and non-programmers - is this what you are...
Anyway, here's a branch where `rsample` selects from a normal distribution. See what you think: https://github.com/talwrii/datatools/tree/talwrii--normal-data--2016-09-20 - Does this functionality deserve to exist at all (I couldn't find any tools...
Cool cool. My motivation for the pull requests is "here's a library for command line data analysis, it doesn't have the tools I want, I shall implement them, now I've...
Python 3 support: ``` seq 20 | python3 autocorr 1.0 0.926829268293 0.854006968641 0.781881533101 0.710801393728 0.641114982578 0.573170731707 0.507317073171 0.443902439024 0.383275261324 0.325783972125 0.271777003484 0.221602787456 0.175609756098 0.134146341463 0.0975609756098 0.0662020905923 0.0404181184669 0.0205574912892 0.00696864111498 -...
Following @Trevoke , I'm on `2.2.0` on OSX with `ag` installed via `brew`. `.agignore` works `.ignore` does not
This branch https://github.com/talwrii/salmon/tree/talwrii--2018-05-17--dkim fixes this issue by letting one switch off salmon's mail normalisation. The approach used here is quite aggressive - but it seemed a bit perverse to try...
Thanks for that. It looks like there is no need for this feature. I got tripped up by the existence of two mail classes (`salmon.mail.MailRequest` and `salmon.encoding.MailBase`) and didn't realise...
# Useful information Hey, I don't have experience with this, but I do have a some interest, google, and I spent a few hours trying to write some similar code...
That is simpler. One idea to avoid typing, would be to put this behaviour in `DocumentImplementation` itself, so we would have ```python class Test(Document): field = StrField() Test.find({Test.field: 1}) ```...