Python开源论坛:Misago 经验

Misago是用Python和Django开发的论坛项目。 此论坛具有以下特点: 1. 专注于论坛成员之间的交流。而非建立一个CMS。 2.优秀的管理和长期维护。 3.无法被其他Django项目集成。但是提供一定的接口。

jopen 2013-03-15   60873   0

Python的ADB交互接口 PyADB 经验

PyADB 是一个简单的 Python 模块,用来跟 ADB (Android Debug Bridge) 进行交互。 示例代码: from pyadb.adb import ADB (...) myadb

jopen 2012-06-28   93960   0

Python标准库--inspect 经验

这个模块是针对模块,类,方法,功能等对象提供些有用的方法。例如可以帮助我们检查类的内容,检查方法的代码,提取和格式化方法的参数等。

jopen 2014-09-11   43426   0

Python各式装饰器 经验

Python装饰器,分两部分,一是装饰器本身的定义,一是被装饰器对象的定义。 一、函数式装饰器:装饰器本身是一个函数。 1.装饰函数:被装饰对象是一个函数 [1]装饰器无参数: a.被装饰对象无参数:

jopen 2015-05-28   16042   0

Cassowary 算法的 Python 实现:Cassowary 经验

Cassowary 是一个纯 Python 实现 Cassowary constraint-solving 算法 ,是 OS X 和 iOS 可视化布局机制的核心形式。 快速开始 Cassowary

jopen 2015-05-30   17818   0

Python的中文分词:PyNLPIR 经验

NLPIR/ICTCLAS Chinese segmentation software 的一个Python封装。 PyNLPIR能够让使用NLPIR很方便得进行中文分词处理。 import pynlpir

jopen 2014-12-12   66381   0

Python数据类型转换 经验

python类型转换 函数                      描述 int(x [,base ])         将x转换为一个整数 long(x [,base ])      

fmwg 2015-01-16   16167   0

Python 集成 R 语言 - PyThor 经验

RPy2 可以在 Python 和 R 之间进行交互,让用户可以在 Python 中轻松的使用 R 的封装包。 Python 一般用来进行数据分析,但是许多的包只存在于 R 语言中。所以,在 Python

jopen 2016-01-07   32568   0

centos 安装python3 经验

776 1、从python官网上下载最新的python3版本 wget https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tgz

GraPower 2016-02-27   16409   0

Python: 陌生的 metaclass 经验

Python 中的 元类(metaclass) 是一个深度魔法,平时我们可能比较少接触到元类,本文将通过一些简单的例子来理解这个魔法。 类也是对象 在 Python 中,一切皆对象。字符串,列表,字典,函数是对象,

VicWickens 2016-11-17   6953   0
P

深入Python 中文版 文档

Python 研究(Dive Into Python) Dive Into Python 是为有经验的程序员编写的一本 Python 书。<br>ActiveState 制作了一个 Windows 上的 Python 安装程序称为 ActivePython, 它包含了一个完整的 Python 发布; 一个适用于 Python 编程的 IDE 附加了一些 Python 的 Windows 扩展, 提供了全部的访问 Windows APIs 的服务, 以及 Windows 注册表的注册信息。 虽然 ActivePython 不是开源软件, 但它可以自由下载。 ActivePython 是我曾经学习 Python 时使用过的 IDE, 除非有别的原因, 我建议您使用它。可能的一个原因是:ActiveState 通常要在新的Python 版本出来几个月以后来更新它的安装程序。如果您就需要Python 的最新版本, 并且 ActivePython 仍然落后于最新版本的话, 您应该直接跳到在 Windows 上安装 Python 的第二种选项。

mx234 2015-08-26   210   0
P

Python 数据结构与算法 文档

This book is about the fundamentals of data structures and algorithms--the basic elements from which large and complex software artifacts are built. To develop a solid understanding of a data structure requires three things: First, you must learn how the information is arranged in the memory of the computer. Second, you must become familiar with the algorithms for manipulating the information contained in the data structure. And third, you must understand the performance characteristics of the data structure so that when called upon to select a suitable data structure for a particular application, you are able to make an appropriate decision. <br> This book also illustrates object-oriented design and it promotes the use of common, object-oriented design patterns. The algorithms and data structures in the book are presented in the Python programming language. Virtually all the data structures are presented in the context of a single class hierarchy. This commitment to a single design allows the programs presented in the later chapters to build upon the programs presented in the earlier chapters.

gneg 2015-07-22   251   0

python在windows锁屏的代码 代码段

python在windows锁屏的代码 C:\Users\wangmingjie>python Python 2.7.4 (default, Apr 6 2013, 19:54:46) [MSC v.1500

wcwx 2015-01-03   5316   0
Python  

Python中数组用法大全 代码段

#!/usr/bin/env python # # [SNIPPET_NAME: Lists 101] # [SNIPPET_CATEGORIES: Python Core] # [SNIPPET_DESCRIPTION:

b573 2015-01-24   2817   0
Python  

利用python 统计源码行数 代码段

原理先获取所有文件,然后统计每个文件中代码的行数,最后将行数相加,思路很简单。 import os import os.path import time rootdir = '文件路径' filelists = [] #遍历文件 def getFile(rootdir): global filelists for parent,dirnames,filenames in os.walk(rootd

jopen 2015-03-19   911   0
Python  

python多线程多队列 代码段

程序大概内容如下: 程序中设置两个队列分别为queue负责存放网址,out_queue负责存放网页的源代码。 ThreadUrl线程负责将队列queue中网址的源代码urlopen,存放到out_queue队列中。 DatamineThread线程负责使用BeautifulSoup模块从out_queue网页的源代码中提取出想要的内容并输出。 这只是一个基本的框架,可以根据需求继续扩展。 impo

n342 2015-04-28   4334   0
Python  

python显示生日是星期几 代码段

given date # Python will trap impossible dates like (1900, 2, 29) # tested with Python24 vegaseat 01aug2005

pykde 2015-06-15   1335   0
Python  
P389

  Dive Into Python中文版 文档

Dive Into Python http://diveintopython.org/ Dive Into Python 5 第 1 章 安装 Python 7 1.1. 哪一种 Python 适合您? 7

wbzdsg 2011-10-26   4315   0

Python 开发环境 BlackAdder 经验

BlackAdder 是在 linux 和 windows 下的基于 QT 的开发环境;

fmms 2012-01-06   15308   0

小型Python框架 Flask 经验

Flask 是一个微型的 Python 开发的 Web 框架,示例代码: from flask import Flask app = Flask(__name__) @app.route("/") def

openkk 2012-02-14   42877   0
1 2 3 4 5 6 7 8 9 10