Notepad++ HTML格式化
    
            
摘要:【Notepad++ HTML格式化】 Tidy2。
        
阅读全文
摘要:【Python 包的相对导入讲解】 参考:http://www.dai3.com/python-import.html
        
阅读全文
摘要:【Looping Techniques】 1、When looping through dictionaries, the key and corresponding value can be retrieved at the same time using the items() method. 
        
阅读全文
摘要:【urllib.request】 1、urlopen结果保存在内存。 2、ulrretrieve结果保存到文件。 3、response有read方法。 4、可以创建Request对象。 5、发送Post数据,需要encode()成ascii的byte. 6、url中加入query 7、加入User-
        
阅读全文
摘要:【URL Parsing】 urllib.parse.urlparse(urlstring, scheme='', allow_fragments=True) Parse a URL into six components, returning a 6-tuple. This corresponds
        
阅读全文
摘要:【URL Quoting】 The URL quoting functions focus on taking program data and making it safe for use as URL components by quoting special characters and ap
        
阅读全文
摘要:【Prefab强制使用文本模式】 Edit -> ProjectSetting -> Editor:
        
阅读全文
摘要:【安装BeautifulSoup】 $ pip install beautifulsoup4 参考:https://www.crummy.com/software/BeautifulSoup/bs4/doc/
        
阅读全文
摘要:【关于销售的一点理解】 1、大多数人存在这样的偏见:销售人员和其他“中间人”很碍事,优良产品应该在生产出来后直接被神奇地分销出去。 这句话反着说,就正确了:销售人员和其他“中间人”很重要,优良产品应该在生产出来后由销售人员分销出去。 2、工程师喜欢制造东西,而不喜欢销售这些东西。但顾客并不会因为你生
        
阅读全文
摘要:【Keynote of Python III】 1、许多大型网站是用Python开发的,例如YouTube、Instagram,还有国内的豆瓣。很多大公司,包括Google、Yahoo等,甚至NASA(美国航空航天局)都大量地使用Python。 2、print()会依次打印每个字符串,遇到逗号“,”
        
阅读全文
摘要:【python的路径】 1、PYTHONHOME Change the location of the standard Python libraries. By default, the libraries are searched in prefix/lib/pythonversion and 
        
阅读全文
摘要:【WSGI】 WSGI:Web Server Gateway Interface。 WSGI接口定义非常简单,它只要求Web开发者实现一个函数,就可以响应HTTP请求。我们来看一个最简单的Web版本的“Hello, web!”: 上面的application()函数就是符合WSGI标准的一个HTTP
        
阅读全文