代码搜索:Python

找到约 10,000 项符合「Python」的源代码

代码结果 10,000
www.eeworm.com/read/160583/10517258

py customize_rc.py

#!/usr/bin/env python """ I'm not trying to make a good liking figure here, but just to show some examples of customizing rc params on the fly If you like to work interactively, and need to create di
www.eeworm.com/read/160583/10517268

py anim_tk.py

# deprecated - this example is no longer needed. Follow the model of # anim.py to use interaction = True to avoid all the cruft of timers, # callbacks and the likes used here #!/usr/bin/env python2.
www.eeworm.com/read/417108/11003439

py maketree.py

#! /usr/bin/python2.2 # Copyright (C) 2002 by Martin Pool # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public Licens
www.eeworm.com/read/466715/7031747

py receive_path.py

#!/usr/bin/env python # # Copyright 2005,2006 Free Software Foundation, Inc. # # This file is part of GNU Radio # # GNU Radio is free software; you can redistribute it and/or modify # it under the t
www.eeworm.com/read/364251/7075985

py reader6.py

#!/usr/bin/python -u # # this tests the entities substitutions with the XmlTextReader interface # import sys import StringIO import libxml2 schema="""
www.eeworm.com/read/332978/7141953

py eclipse.py

#!/usr/bin/python """ Eclipse.py by Bruce Eckel, for Thinking in Java 4e Modify or insert package statments so that Eclipse is happy with the code tree. Run this with no arguments from the root of
www.eeworm.com/read/457308/7328052

py toolbar.py

#!/usr/bin/python # -*- coding: iso-8859-1 -*- from Tkinter import * # Enthaelt 2 Klassen: ToolBar und ToolTip class ToolBar( Frame ): "Repraesentiert eine Werkzeugleiste" def __init__( s
www.eeworm.com/read/457308/7328053

py statusbar.py

#!/usr/bin/python # -*- coding: iso-8859-1 -*- from Tkinter import * class StatusBar(Frame): def __init__(self, parent, ProgressBar=1): Frame.__init__(self, parent) # Zw
www.eeworm.com/read/457308/7328056

py progressbar.py

#!/usr/bin/python # -*- coding: iso-8859-1 -*- """ A basic widget for showing the progress being made in a task. """ from Tkinter import * class ProgressBar: def __init__(self, master=None,
www.eeworm.com/read/448096/7540251

py make_i2cconfig.py

#!/usr/bin/python import sys Output = [] Addr = [] Address = "" Value = "" i = 0 try: # Check argument is given if (len(sys.argv) < 2): print "Call make_config.py name"