Python库

  • Gevent

Gevent是一个基于greenlet的Python的并发框架,以微线程greenlet为核心,使用了epoll事件监听机制以及诸多其他优化而变得高效。

greenlet、eventlet相比,性能略低,但是它封装的API非常完善,最赞的是提供了一个monkey类,可以将现有基于Python线程直接转化为greenlet,相当于proxy了一下(打了patch)。

http://www.gevent.org/

https://pypi.python.org/pypi/gevent/

  • Beautiful Soup

http://www.crummy.com/software/BeautifulSoup/

  • pip

https://pypi.python.org/pypi/pip

  • setuptools

https://pypi.python.org/pypi/setuptools

  • distribute

https://pypi.python.org/pypi/distribute

  • wxPython

www.wxpython.org/

Welcome to the home of wxPython, a blending of the wxWidgets C++ class library with the Python programming language.

  • comtypes

http://starship.python.net/crew/theller/comtypes/

comtypes is a pure Python COM package based on the ctypes ffi foreign function library. ctypes is included in Python 2.5 and later, it is also available for Python 2.4 as separate download.

  • weibosdk

https://github.com/darkbull/weibosdk

主要微博平台开发文档的python封装

  • Sphinx

http://sphinx-doc.org/
Sphinx is a tool that makes it easy to create intelligent and beautiful documentation, written by Georg Brandl and licensed under the BSD license.

  • Docutils

http://docutils.sourceforge.net/index.html

Docutils is an open-source text processing system for processing plaintext documentation into useful formats, such as HTML, LaTeX, man-pages, open-document or XML. It includes reStructuredText, the easy to read, easy to use, what-you-see-is-what-you-get plaintext markup language.

  •  txt2tags

http://txt2tags.org/

Txt2tags is a document generator. It reads a text file with minimal markup such as **bold** and //italic// and converts it to the following formats:

原文地址:https://www.cnblogs.com/androidme/p/3039116.html