sandman
sandman copied to clipboard
Sandman "makes things REST".
There are small typos in: - CONTRIBUTING.md - sandman/model/__init__.py - tests/test_sandman.py Fixes: - Should read `totally` rather than `totaly`. - Should read `submit` rather than `sumbit`. - Should read `responsible`...
I get this error while requesting a list of resources: ´´´ 127.0.0.1 - - [23/Dec/2013 14:11:58] "GET /entities HTTP/1.1" 500 - Traceback (most recent call last): File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1836,...
Hi @jeffknupp I found you epic tutorial on folder structure over here http://jeffknupp.com/blog/2013/08/16/open-sourcing-a-python-project-the-right-way/ Sorry for posting here did not know how else to contact you. I was wondering can you...
When clicking on the table name in the admin header: Traceback: ``` Traceback (most recent call last): File "/Users/jan/.virtualenvs/foo/lib/python2.7/site-packages/flask/app.py", line 1836, in __call__ return self.wsgi_app(environ, start_response) File "/Users/jan/.virtualenvs/foo/lib/python2.7/site-packages/flask/app.py", line 1820,...
Over the past couple of days, without knowing it, I started embarking on writing something very similar to some of sandman's model-to-RESTful-API functionality, but for [Pony ORM](https://ponyorm.com/), which I prefer...
Ubuntu 15.10, Python 3.5, Sandman 0.9.8 Trying to open my db.sqlite3 file (created with django, no magic, just some tables with users): ``` sandmanctl sqlite:////opt/projects/somepath/db.sqlite3 ``` And receive an error:...
Support less than, greater than, like, and other operators, using query parameters of the format "field__operator=value".
Support descending and multi-column sort. Note: this is branched off https://github.com/jmcarp/sandman to avoid conflicts; the relevant commit is e47b300.
Use case-insensitive search against text columns when `app.config['CASE_INSENSITIVE']` is `True`. Note: this is branched off https://github.com/jmcarp/sandman to avoid conflicts; the relevant commit is 42fb80f8c710ae60086297b7b0b16b78796b3c66.
Sandman currently fetches all results in a query set, then applies offsets and limits in memory. It's more efficient to offload pagination to the database. This patch uses the pagination...