代码搜索结果
找到约 10,000 项符合
Python 的代码
crossmod_exception_a.cpp
// Copyright (C) 2003 Rational Discovery LLC
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.t
crossmod_exception_b.cpp
// Copyright (C) 2003 Rational Discovery LLC
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.t
c3037.html
Python Bindings
build.bat
deltree build
deltree dist
c:\python23\python setup.py bdist_wininst
metadata.cfg
[metadata]
version: 1.2.2
version_info: (1,2,2,'final',0)
description: Python interface to MySQL
long_description:
=========================
Python interface to MySQL
========
pkg-info
Metadata-Version: 1.0
Name: MySQL-python
Version: 1.2.2
Summary: Python interface to MySQL
Home-page: http://sourceforge.net/projects/mysql-python
Author: Andy Dustman
Author-email: adustman@users.sou
pkg-info
Metadata-Version: 1.0
Name: MySQL-python
Version: 1.2.2
Summary: Python interface to MySQL
Home-page: http://sourceforge.net/projects/mysql-python
Author: Andy Dustman
Author-email: adustman@users.sou
108-autoupdate.py
import urllib
CODE = "mytest.py"
URL = "http://www.myownserver.com/pycode/"
code = urllib.urlopen(URL + CODE).read()
f = file(u"E:\\Python\\" + CODE, "w")
f.write(code)
f.close()
print "File %s upd
041-fileio.py
f = file(u"c:\\python\\test.txt", "w+")
print >> f, "Ip dip, sky blue"
f.seek(0)
print "File says", f.read()
f.close()
066-httpclient.py
import urllib
page = urllib.urlopen("http://www.python.org").read()
print page