RESTful API框架 Rester
- 授权协议: MIT
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: http://git.oschina.net/overtrue/rester
- 软件文档: http://git.oschina.net/overtrue/rester
软件介绍
Rester是一个基于Slim + Laravel Eloquent的RESTful API框架。它集合了Slim的简洁易用+Laravel Eloquent数据库模型的强大+Laravel Validation强大简洁的表单验证,让你编写API得心应手!
特点:
基于Slim作为web核心,强大的路由与清晰的项目结构。
多环境支持,轻松区别线上环境与开发环境,0切换成本。
强大的ORM框架Eloquent
强大的数据验证类Validation
控制器:
<?php
/**
* 演示控制器
*/
class HomeController extends Controller
{
public function index() {
return $this->json(['app' => 'Rester', 'message' => 'Hello world!']);
}
//...
}
Dive Into Python 3
Mark Pilgrim / Apress / 2009-11-6 / USD 44.99
Mark Pilgrim's Dive Into Python 3 is a hands-on guide to Python 3 (the latest version of the Python language) and its differences from Python 2. As in the original book, Dive Into Python, each chapter......一起来看看 《Dive Into Python 3》 这本书的介绍吧!
