Skip to content

PikaRules/appengine-event-models

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The Ferris Framework

Ferris is a web framework written in Python for App Engine, inspired by: Ruby on Rails, CakePHP, Django, and Flask. Unlike most other frameworks, Ferris is designed specifically for App Engine.

For information and documentation:

http://ferrisframework.org/

For help and questions:

https://groups.google.com/forum/?fromgroups#!forum/ferris-framework

Starting a new project

Download Ferris from bitbucket using the downloads tab and choosing "tags" and downloading the newest version.

Then, just extract the downloaded zip file into your project directory (top-level, there should be an app.yaml in the top level of your project directory).

You're ready to go! Just open your project directory and run the app engine server.

License

Ferris is licensed under the Apache License, Version 2.

Third-party libraries that are in the packages directory have varying licenses. Please check the license file that is included within each package.

  • WTForms: BSD
  • ProtoPigeon: Apache License v2
  • PyTZ: MIT
  • GData Client Library: Apache License v2
  • Google API Python Client Library: Apache License v2
  • OAuth2 Client: Apache License v2

var request = $.ajax({ type: 'GET', url: 'http://localhost:9080/api/usuarios', dataType: "json"}); request.done(function(data){ console.log(data); });

var request = $.ajax({ type: 'POST', url: 'http://localhost:9080/api/usuarios/addNew', data: { "email": "pite@yahoo.com", "name":"lll"}, dataType: "json" }); request.done(function(data){ console.log(data); });

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages