随笔分类 - python
摘要:python(PIL)图像处理(等比例压缩、裁剪压缩) 缩略(水印)图http://outofmemory.cn/code-snippet/12264/python-PIL-image-process-kind-pack--pack--scheme
阅读全文
摘要:大型系统、海量数据肯定涉及到分库分表这些提高效率的手段。由于sqlalchemy的orm思想是一张表对应一个对象,那么当我们有N张相同结构只是表名有区别的分表,sqlalchemy orm怎样处理呢。比如有如下表:CREATE TABLE `goods_desc_0` ( `goods_id` b...
阅读全文
摘要:From: http://www.cnblogs.com/agmcs/p/4445583.html各种查询方式:http://www.360doc.com/content/12/0608/11/9369336_216812259.shtmlFlask-SQLAlchemy库让flask更方便的使用S...
阅读全文
摘要:从数据库中取出的值是Unicode编码的需要转化为str才能正常使用参考:http://www.mamicode.com/info-detail-308445.html
阅读全文
摘要:from:http://blog.sina.com.cn/s/blog_633277f90100kpvm.html似乎ORM最难设计的部分是查询。特别是面向对象的查询,今天学习SQLAlchemy,发现SQLAlchemy的查询语法竟如此灵活,惊叹其如此强大的表达能力的同时也对Python也有了更深...
阅读全文
摘要:__author__ = 'SRC_TJ_XiaoqingZhang'import jsondata1 = {'b': 789, 'c': 456, 'a': 123}encode_json = json.dumps(data1)print type(encode_json), encode_jso...
阅读全文
摘要:1. 配置BAE支持七牛云的SDKBAE的python requirements当然不支持竞争对手了。解决方法: 把qiniu这个文件包直接放置在你项目的目录中(与其他app同级) 运行会发现缺少requests,这个BAE中支持,填到requirements中就可以了2. Flask使用Ued...
阅读全文
摘要:TypeError: cannot concatenate 'str' and 'int' objects1. print 'Is your secret number " + str(p) + "?"2. print 'Is your secret number %d?"%p ...
阅读全文
摘要:1. 在官网下载VirtualBox & 虚拟机http://bce.baidu.com/doc/BAE/GUIGettingStarted.html#.E4.B8.8B.E8.BD.BD.E5.B9.B6.E5.90.AF.E5.8A.A8.E8.99.9A.E6.8B.9F.E6.9C.BAWi...
阅读全文
摘要:(ENV)carlo@ubuntu:~/flasky$ python hello.py shell>>> from hello import db>>> db.drop_all()>>> db.create_all()
阅读全文
摘要:请求对象要操作 URL (如 ?key=value )中提交的参数可以使用 args 属性:searchword = request.args.get('key', '')用户可能会改变 URL 导致出现一个 400 请求出错页面,这样降低了用户友好度。因此, 我们推荐使用 get 或通过捕捉 Ke...
阅读全文
摘要:我明明在编码前就加上了# -*- coding: UTF-8 -*-可是运行时还是出错了,# -*- coding: UTF-8 -*- 这句是告诉python程序中的文本是utf-8编码,让python可以按照utf-8读取程中文前加u就是告诉python后面的是个unicode编码,存储时按...
阅读全文
摘要:1. ImportError: No moudle named ext.bootstrap导入依赖包失败 SAE会提供一种机制通过导入virtualenv.bundle来解决 此处有坑:官网文档中说也可以直接上传virtualenv.bundle.zip,结果就报错 IOError: [E...
阅读全文
摘要:XHEditorhttp://segmentfault.com/blog/digwtx/1190000002439076CKeditorhttp://segmentfault.com/blog/digwtx/1190000002436865UEditorhttp://segmentfault.com...
阅读全文
摘要:导航栏:http://www.php100.com/html/plugin/pic/2013/0911/544.htmlCSS3 Maker这款工具[3]非常强大,可在线演示渐变、阴影、旋转、动画等非常多的效果,并生成对应效果的代码,CSS3 Generator非常不错的各种 CSS3 代码生成器,...
阅读全文
摘要:1. 安装mysqlmysqld --installnet start mysql2. 下载 安装mysql和python的connectorhttp://downloads.mysql.com/archives/c-python/3. python 连接mysql 的代码#!/usr/local/...
阅读全文

浙公网安备 33010602011771号