Brian Cappello

Results 30 comments of Brian Cappello

@conall88 The configuration is all in `mkts.yaml`. Some options are documented in READMEs. However, some of the "less critical" options are not, and you will need to dive into the...

I'm curious how querying with this custom SQL interacts with using time bucket keys? Seems to me like at the moment, there are two different ways to query records, depending...

It might be that if you query `1D` bars from, say, `2017-01-01` thru `2017-07-20 10:00`, then marketstore would do a daily lookup for `2017-01-01` thru `2017-07-19` inclusive, and then append...

> you need to fetch a currency from a related field rather than from a local one That's correct :) To expand on the pseudo code above, ```python from django.db...

@blueyed Thanks for taking a look! > Do you expect the transformation function to figure out what test (file) needs to run for some changed code? Yes, I wasn't sure...

Perhaps I'm mistaken or misunderstanding you - I'm not a PyJade dev, just a user - but, isn't that the proper behavior for inline HTML? The pipes are meant so...

Can you share some implementation details of display_message? I'm just beginning with PyJade too, and only use it with Jinja/Flask, though I have used Django before. That said, take this...

I added a PR (#78) with an early iteration of support for only running tests on modified files. Feedback appreciated! cc @joanvila, @scimonster, @lexicality, @mrzmyr

One issue I can specifically remember running into while trying to follow the official docs was this: Jade does inline if/else with the ternary ?: operator while PyJade uses the...

just thinking out loud here, i wonder if it could work to store verified tokens in the database, and whenever the user changes their password, clear out the cache. so...