Paul Jimenez

Results 59 issues of Paul Jimenez

As of Flask 0.11 or so, flask_script is no longer needed. See [here](http://flask.pocoo.org/docs/0.12/cli/) for details on using the new stuff - it looks pretty easy, just decorate existing functions.

This allows it to be installed with `pip install`, which can work from a URL or, of course, from pypi if the main maintainer wants to get an account there....

`os.path.expanduser` already makes sure there's a leading / on paths it expands, so the third one isn't necessary and inhibits the use of other databases that need to specify a...

I'm in the process of trying to figure out how to adapt bitex to handle trading pure equities. To start I added (to `config/bootstrap/demo.ini`): under `[currencies]`: ``` BNL=[ "BNL" ,...

Currently Broker has: ``` phone_number_1 = Column(String(15)) phone_number_2 = Column(String(15)) skype = Column(String(30)) email = Column(String(15)) ``` which strike me as a bit... short. Your demo data (in `bootstrap/demo.ini`) thinks...

- [x] I've [run a search on the existing bug reports](https://help.github.com/en/github/searching-for-information-on-github/searching-issues-and-pull-requests) to make sure I'm not filing a duplicate (you can use the search box at the top left corner)...

bug
configuration

Is there a recipe to integrate [TabbyML](https://github.com/TabbyML/vim-tabby) ? I see other AI integrations, but not that one. Thanks!

a `click.group()` that has a `click.argument()` with `nargs=-1` fails to dispatch to sub-commands. if we have mycmd.py: ```python import click @click.group() @click.argument('files', type=click.Path(), nargs=-1) def cli(files): print(f'files: {files!r}') @cli.command() def...

You could collect/graph temperature stats as well... or pretty much any other data sources under `sensors`. Or monitor updates of anything under `feeds`.