Timothy Dobbins
Timothy Dobbins
Awesome library! Just discovered it at work and am about to give it a go! I'm about to train a topic model and would love to post a tutorial here...
Hey! Thanks for the notice. I ran into that problem when I installed it on a Mac recently. Do you have pandas and SQLAlchemy installed? Here's a way to get...
Yes, you can define those variables in your `.bash_profile` or you can utilize the ENGINE param as noted [here](https://github.com/tmthyjames/SQLCell#engine-parameter) on the readme page. Note that you can also use the...
inserting `tabindex="1"` manually into the HTML table fixes this issue but makes all cells highlight-able(?). Maybe do: if __SQLVAR__.EDIT: insert tabindex="1"
add ability to export the javascript code used for building the graph: graph = plot.box(df.desired_column) print graph.__javascript_code__
Maybe a problem with sqlalchemy as `engine.execute("SELECT * FROM table WHERE column LIKE '%''%' LIMIT 10")` doesn't work either.
SQLAlchemy docs: http://docs.sqlalchemy.org/en/rel_0_9/core/ddl.html?highlight=ddl#sqlalchemy.schema.DDL.params.statement Single percent signs are to be escaped using double percent signs. Therefore, the above code should `SELECT * FROM table WHERE column LIKE '%%''%%' LIMIT 10`
Thinking of adding `cell = cell.replace('%', '%%')` right before the `cell` param is executed as SQL, but not quite sure yet of the repercussions.
Return data as JSON (dictionary) object
commands like `\COPY` are resolved by: ``` output = subprocess.check_output(pg) if '