代码搜索:Python
找到约 10,000 项符合「Python」的源代码
代码结果 10,000
www.eeworm.com/read/255402/4376489
py radiusd.py
#
# Definitions for RADIUS programs
#
# Copyright 2002 Miguel A.L. Paraz
#
# This should only be used when testing modules.
# Inside freeradius, the 'radiusd' Python module is crea
www.eeworm.com/read/252302/4409872
py s57tables.py
#!/usr/bin/env python
#******************************************************************************
# $Id: s57tables.py,v 1.1 2001/12/17 22:33:06 warmerda Exp $
#
# Project: S-57 OGR Translator
www.eeworm.com/read/159050/5588455
py shpinfo.py
#!/usr/bin/env python
""" Extracts basic descriptive information from the shapefile.
"""
import mapscript
import sys
import os
# Utility functions.
def usage():
""" Display usage if program is u
www.eeworm.com/read/159001/5589187
py glnames.py
#!/usr/bin/env python
#
#
# FreeType 2 glyph name builder
#
# Copyright 1996-2000 by
# David Turner, Robert Wilhelm, and Werner Lemberg.
#
# This file is part of the FreeType project, and may only
www.eeworm.com/read/152843/5657348
py unwcheck.py
#!/usr/bin/env python
#
# Usage: unwcheck.py FILE
#
# This script checks the unwind info of each function in file FILE
# and verifies that the sum of the region-lengths matches the total
# length of t
www.eeworm.com/read/471340/6890176
py checkdata.py
#!/usr/bin/env python
#
# A format checker for LIBSVM
#
#
# Copyright (c) 2007, Rong-En Fan
#
# All rights reserved.
#
# This program is distributed under the same license of the LIBSVM package.
#
www.eeworm.com/read/295408/8166575
py checkdata.py
#!/usr/bin/env python
#
# A format checker for LIBSVM
#
#
# Copyright (c) 2007, Rong-En Fan
#
# All rights reserved.
#
# This program is distributed under the same license of the LIBSVM package.
#
www.eeworm.com/read/294875/8196174
py example-2.py
#!/usr/bin/env python
# This program monitors the
# /apps/nautilus/preferences/always_use_browser,
# /apps/nautilus/preferences/show_image_thumbnails, and
# /apps/nautilus/preferences/thumbnail_limit
www.eeworm.com/read/294538/8219935
py makedefs.py
#!/usr/bin/python
import re
import codecs
from xml.sax.saxutils import quoteattr, escape
def makename(oldname):
name = "";
nextBig = True;
for x in oldname:
if x == '_':
nextBig = T
www.eeworm.com/read/174332/9595152
py py_thread.py
''' Demonstrate the use of python threading'''
import time
import threading
def ThreadFunc():
for i in range(15):
print '...Printed from my thread.'
time.sleep(1)
class MyThread(thre