代码搜索结果
找到约 11,834 项符合
Python 的代码
chap1.txt
THIS IS MAINMATTER
CHAPTER I -- PYTHON BASICS
-------------------------------------------------------------------
This chapter discusses Python capabilities that are likely to
be used in
collect.py
#!/usr/bin/python
#-*-coding:utf-8-*-
# 绠
readme
README
PMing - a Python module for the Ming library
WHAT'S NEW
- 19 Nov 2000: Dave adds destructors, messes up the ming.py file so it
acts like the php interface
- 24 Oct 2000: Dave makes an att
mysql_hanyu.py
#!/usr/bin/python
import MySQLdb
#导入python2.4-mysqldb模块,以提供操作mysql的接口
db_user = "root"
db_pw = "myDBpass"
conn = MySQLdb.connect("localhost", db_user, db_pw ,"xpower")
cursor = conn.cursor(
makefile
CC = gcc
SWIG ?= swig
PYTHON_INCLUDEDIR ?= /usr/include/python
CFLAGS = -O2 -I$(PYTHON_INCLUDEDIR) -I..
LDFLAGS = -shared
all: svmc.so
svmc.so: svmc_wrap.o ../svm.o
$(CC) $(LDFLAGS) -o svmc.so svmc
readme
Two things are provided in this directory: an automatic model selection
tool and a python binding for libsvm.
Part I: Model Selection Tools
Introduction
===============
grid.py is a model selecti
readme
Python-to-libsvm interface
Introduction
============
Python (http://www.python.org/) is a programming language suitable for
rapid development. This python-to-libsvm interface is developed so
users
declipse.py
#!/usr/bin/python
"""
DEclipse.py by Bruce Eckel, for Thinking in Java 4e
Undoes the effect of Eclipse.py, so that Ant can be used
again to build the code tree.
You must have Python 2.3 insta
readme
Python-to-libsvm interface
Introduction
============
Python (http://www.python.org/) is a programming language suitable for
rapid development. This python-to-libsvm interface is developed so
users
python.c
#include
#include "../cryptlib.h"
static PyObject* cryptHandleClass;
static PyObject* cryptQueryInfoClass;
static PyObject* cryptObjectInfoClass;
static PyObject *CryptException;
static