Differences between revisions 1 and 6 (spanning 5 versions)
Revision 1 as of 2005-10-14 02:51:28
Size: 171
Editor: leal
Comment: leal
Revision 6 as of 2009-12-25 07:19:13
Size: 2679
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
== XingMing 姓名 == ## page was renamed from ZhPythonicerTemplate
##language:zh
'''
leal
'''
Line 3: Line 7:
电子邮件地址: [[MailTo(linxiao.li AT SPAMFREE example DOT com)]] <<TableOfContents>>
'''
记录成长'''
Line 5: Line 11:
... = 个人兴趣 =
coming soon
Line 7: Line 14:
此页的英文版本:HomepageTemplate == scripting ==
 * [[http://www.edaboard.com/viewtopic.php?t=76718&sid=d1a842f8bb135206c95564ed51f25332|Using perl or cshell script to perform daily task]]
 * Tcl/Tk is a glue language, a good artical [[http://wiki.tcl.tk/11834|Tcl over Python]]
 * [[http://www.equi4.com/minotaur/minotaur.html|Minotaur]] for Perl, Python and Tcl, if you need to mix these scripting languages in one file, try this. The bad thing is that nobody maintain it anymore and no document about the actual usage.
 * [[http://aspn.activestate.com/ASPN/CodeDoc/Inline-Tcl/Tcl.html|Inline Tcl]] best, I think, anybody can tell me is there a corespond in python?
== documentation ==
 * latex
 * wiki, I use moinmoin as the engine, and sometimes, use python package [[https://moin.conectiva.com.br/EditMoin|EditMoin]] to edit the moin pages with vim. It is a pure python implementation, and I made the following modification to make it works for me :)
{{{#!python
# original code commented out
# self.datestamp = self._get_data(DATESTAMPRE, "datestamp")
self.datestamp = ''
}}}
== processing excel with python ==
=== read ===
[[http://www.lexicon.net/sjmachin/xlrd.htm|xlrd]]从python.cn上看到的介绍,自己没有试过。
=== write ===
[[http://sourceforge.net/projects/pyxlwriter/|xlwriter]] I have ever used this package to generate the summary verification report, quite good to do the same kind of work like report auto-generation. It is also platform independent. The bad side is not very easy to control the format. Some sample code:
{{{#!python
import pyXLWriter as xl
def report_autogen(filename):
    wbk = xl.Writer(filename)
    sumsheet = wbk.add_worksheet('Summary')
    wbk.close()
    return 0
}}}
== xml and python ==
XML-RPC for distributed computation, functions will be defined in the server side, client side can call these functions via http POST with xml as the embeded content.

= 技术类 =
<<Include(ChunLinZhang/bookmark)>>
 * [[ChunLinZhang/projects|我的项目]]

{{{
#!python
from myhdl import *
}}}
= QA =
 * [[http://www.qaforums.com/ultimatebb.php?ubb=get_topic;f=39;t=000528|Procedure Templates]]
= 精品电子书 =

 * [[http://www.amazon.com/exec/obidos/tg/detail/-/1402078757/104-1722879-4423959?v=glance|Professional Verification]] -- A Guide to Advanced Funcational Verication, by Paul Wilcox, Cadence Design Systems, Inc.
comment: This book is almost same as the IUS document UVM

{zh} [email protected] :)

<<MonthCalendar>>
Line 9: Line 62:
个人网页类 CategoryHomepage

leal

记录成长

个人兴趣

coming soon

scripting

documentation

  • latex
  • wiki, I use moinmoin as the engine, and sometimes, use python package EditMoin to edit the moin pages with vim. It is a pure python implementation, and I made the following modification to make it works for me :)

   1 # original code commented out
   2 # self.datestamp = self._get_data(DATESTAMPRE, "datestamp")
   3 self.datestamp = ''

processing excel with python

read

xlrd从python.cn上看到的介绍,自己没有试过。

write

xlwriter I have ever used this package to generate the summary verification report, quite good to do the same kind of work like report auto-generation. It is also platform independent. The bad side is not very easy to control the format. Some sample code:

   1 import pyXLWriter as xl
   2 def report_autogen(filename):
   3     wbk = xl.Writer(filename)
   4     sumsheet = wbk.add_worksheet('Summary')
   5     wbk.close()
   6     return 0

xml and python

XML-RPC for distributed computation, functions will be defined in the server side, client side can call these functions via http POST with xml as the embeded content.

技术类

   1 from myhdl import *

QA

精品电子书

comment: This book is almost same as the IUS document UVM

{zh} [email protected] :)

<< <  2025 / 6 >  >>
Mon Tue Wed Thu Fri Sat Sun
            1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30            

CategoryHomepage

leal (last edited 2009-12-25 07:19:13 by localhost)