Skip to content

A sample application for getting started with Caesium for document publishing on top of Python, Tornado, Motor and MongoDB

Notifications You must be signed in to change notification settings

hunt3r/CaesiumQuickstart

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Caesium Quickstart

Caesium Project Homepage

The purpose of this project is to be a starting point for the Caesium python framework.

Installation

  • Ensure that mongodb is running in your environment.
  • bash install.sh
  • source venv/bin/activate
  • python app.py
  • For auto reload while developing, add --debug

See app.py for implementation.

##Example Scheduled Requests Flow

In the following flow, we will create a new resource, update it with a scheduled patch, Get it again to see those changes, then delete.

POST /comment

Headers:

  • Content-Type: application/json
  • Caesium-TOA: 1401678643
{
    "title": "Comment Title",
    "text": "Check out this new awesome comment",
    "username": "chunter",
    "id": "53ea6636717cc88c7b499a54"
}

PUT /comment/53ea6636717cc88c7b499a54

Headers:

  • Content-Type: application/json
  • Caesium-TOA: 1401678643
{
    "title": "My Comment Title Update",
    "text": "Check out this new awesome comment",
    "username": "chunter",
    "new_attribute": 12345
}

GET /comment/53ea6636717cc88c7b499a54

{
    "id": "53ea6636717cc88c7b499a54",
    "title": "My Comment Title Update",
    "text": "Check out this new awesome comment",
    "username": "chunter",
    "new_attribute": 12345
}

DELETE /comment/53ea6636717cc88c7b499a54

Headers:

  • Caesium-TOA: 1401678643

###Non-Scheduled Requests

If you want to use Caesium synchronously, it is entirely ok to just remove the "ttl" header and the request will be actioned immediately without creating a revision. Very similar to how a standard API works on a RESTful resource.

Also see:

About

A sample application for getting started with Caesium for document publishing on top of Python, Tornado, Motor and MongoDB

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 95.3%
  • Shell 4.7%