asyncio REST API Resource database
Project description
Introduction
Please read the detailed docs
This is the working project of the next generation Guillotina server based on asyncio.
Dependencies
python >= 3.6
postgresql >= 9.6
Quickstart
We use pip:
pip install guillotina
Run postgresql
If you don’t have a postgresql server to play with, you can run one easily with docker.
Download and start the docker container by running:
make run-postgres
Run the server
To run the server:
g
Then…
Or, better yet, use postman to start playing with API.
You can also navigate in your Guillotina server with its built-in web admin interface by visiting http://localhost:8080/+admin/.
Deploy on Heroku
Read more Guillotina-Heroku.
Getting started with development
Using pip(requires python > 3.6):
git clone git@github.com:plone/guillotina.git cd guillotina python -m venv . ./bin/pip install -r requirements.txt ./bin/pip install -e .[test]
Run tests
We’re using pytest:
./bin/pytest guillotina
and for test coverage:
./bin/pytest --cov=guillotina guillotina/
With file watcher…
./bin/ptw guillotina –runner=./bin/py.test
To run tests with cockroach db:
USE_COCKROACH=true ./bin/pytest guillotina
Default
Default root access can be done with AUTHORIZATION header : Basic root:root
Docker
You can also run Guillotina with Docker!
First, run postgresql:
docker run --rm \ -e POSTGRES_DB=guillotina \ -e POSTGRES_USER=guillotina \ -p 127.0.0.1:5432:5432 \ --name postgres \ postgres:9.6
Then, run guillotina:
docker run --rm -it \ --link=postgres -p 127.0.0.1:8080:8080 \ guillotina/guillotina:latest \ g -c '{"databases": [{"db": {"storage": "postgresql", "dsn": "postgres://guillotina:@postgres/guillotina"}}], "root_user": {"password": "root"}}'
This assumes you have a config.yaml in your current working directory
Chat
Join us to talk about Guillotina at https://gitter.im/plone/guillotina
CHANGELOG
4.9.6 (2019-08-24)
Fix cache key for SQLStatements cache. This was causing vacuuming on multi-db environments to not work since the vacuuming object was shared between dbs on guillotina_dynamictablestorage. [vangheem]
4.9.5 (2019-08-21)
Implement more optimized way to vacuum objects which dramatically improves handling of deleting very large object trees [vangheem]
4.9.4 (2019-08-20)
Fix LightweightConnection pg class to close active cursors when connection done [vangheem]
Fix field.validate() crashes when providing invalid schema (for field of type Object) [masipcat]
4.9.3 (2019-08-13)
Fix modification_date not indexed when an object is patched [masipcat]
4.9.2 (2019-08-06)
Fix union field saving value correctly [vangheem]
4.9.1 (2019-08-01)
Fix bug when working with multiple databases/transaction managers with same request [vangheem]
4.9.0 (2019-08-01)
Fix release number
4.8.20 (2019-08-01)
New guillotina.fields.BucketDictField [vangheem]
New @fieldvalue/{field name or dotted behavior + field name} endpoint [vangheem]
4.8.19 (2019-07-28)
Only register object for writing if base object changed. Otherwise, changes to behavior data was also causing writes to the object it was associated with [vangheem]
4.8.18 (2019-07-26)
Add x-virtualhost-path header support for url generation [vangheem]
4.8.17 (2019-07-25)
Make Tuple type work with patch field [vangheem]
Make IDublinCore.tags a patch field [vangheem]
Add appendunique and extendunique to patch field operations [vangheem]
4.8.16 (2019-07-24)
Fix exhausted retries conflict error response [vangheem]
4.8.15 (2019-07-23)
Make sure field name of patch field is set before using [vangheem]
4.8.14 (2019-07-23)
Fix: just skip indexing attributes from schemas that object does not adapt to [lferran]
Improve request memory usage [vangheem]
4.8.13 (2019-07-15)
Allow modifying app settings from pytest marks [lferran]
Merge CORS headers [qiwn]
Fix managed_transaction() crashes when request and tm are not provided [masipcat]
4.8.12 (2019-07-08)
Handle CancelledError on application cleanup. This seems to happen with uvloop [vangheem]
4.8.11 (2019-06-28)
Cache JSONField schema validator object [vangheem]
JSONField works with dict instead of requiring str(which is then converted to dict anyways) [vangheem]
A few more antipattern fixes [lferran]
4.8.10 (2019-06-26)
Fix indexing data potentially missing updated content when fields for accessor is not specified [vangheem]
Fix events antipattern [lferran]
4.8.9 (2019-06-17)
bump
…
You are seeing a truncated changelog.
You can read the changelog file for a complete list.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for guillotina-4.9.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2b121411531f5e3bfc11725a89f2b18fda64270e57363f3add2cb67ff6ff2ba |
|
MD5 | 890edbbcd7944fea91f2c67db0946549 |
|
BLAKE2b-256 | 75510f306e8c9468309e2034267a0b80a3260088cd58f80625b0e7e5e5800f14 |