背景介绍 什么是Content Negotation呢?翻译成中文的话就是"内容协商".当然,如果不清楚HTTP规范(RFC 2616)的话,可以对这个翻译也是一头雾水. 先来看看RFC 2616对其的定义是 The process of selecting the best representation for a given response when there are multiple representations available. 这句话是什么意思呢?可以简单的理解为:…
在做爬虫时请求网页的requests库是必不可少的,我们常常会用到 res = resquests.get(url) 方法,在获取网页的html代码时常常使用res的text属性: html = res.text,在下载图片或文件时常常使用res的content属性: with open(filename, 'wb') as fp: fp.write(res.content) 下面我们来看看 'text' 和 'content' 的不同之处: 输出本博客的响应对象的 text import re…
近来学习了一下Nancy这个框架,感觉挺好用的,就写篇简单的文章记录一下大致用法,由于是刚接触,写的代码 可能不规范,也没有具体的分层..莫吐槽... Nancy的官网:http://nancyfx.org/ GitHub地址:https://github.com/NancyFx/Nancy Nancy在文档的介绍 -- 轻量级 " Nancy is a lightweight, low-ceremony, framework for building HTTP based services o…
过年前的最后一篇博客,决定留给Nancy中的ModelBinding 还是同样的,我们与MVC结合起来,方便理解和对照 先来看看MVC中简单的ModelBinding吧 // POST: Authors/Create // To protect from overposting attacks, please enable the specific properties you want to bind to, for // more details see http://go.microsof…