- 授权协议: MIT
- 开发语言: Python
- 操作系统: 跨平台
- 软件首页: https://github.com/kelp404/tina
- 软件文档: https://github.com/kelp404/tina
软件介绍
Elasticsearch 的 Python client,提供较为方便的查询语法。
# SQL
select * from "ExampleModel" where "name" = "tina"
# tina
models, total = ExampleModel.where('name', equal='tina').fetch()
# SQL select * from "ExampleModel" where "category" = 1 or "category" = 3 order by "created_at" limit 20 offset 20
# Python
models, total = ExampleModel.where('category', contains=[1, 3])\ .order_by('created_at').fetch(20, 20)
ACM/ICPC程序设计与分析
沈云付 / 清华大学 / 2010-7 / 39.50元
《ACM/ICPC程序设计与分析(C++实现)》介绍ACM国际大学生程序设计竞赛概况及程序设计基础,系统介绍数论、组合数学、动态规划、计算几何、搜索、图论和网络流等专题的典型算法,挑选历年竞赛中许多有代表性的竞赛题作为例题进行分析,便于学生编程时模仿学习。每章的例题和习题都配有输入输出样例,方便学生在编程时测试与调试程序。《ACM/ICPC程序设计与分析(C++实现)》以C++为程序设计语言,以提......一起来看看 《ACM/ICPC程序设计与分析》 这本书的介绍吧!
