Python NetworkProgramming 프레임워크 (HTTP뿐아니라 주요한 IP들을 거의 다 IoMultiplexing으로 구현할 수 있다.)

http://twistedmatrix.com/products/twisted

이 프레임워크 안에 최근의 프로그램기법들이 녹아있다.

Prerequisites

최근, WebApplication templating 모듈로 쓰던 woven이 deprecated되고, Nevow가 사용된다.

관련자료

관련포스트


궁금한것

Q.

관련 스크립트

외부프로세스를 비동기로 돌리기 --yong27, 2004-11-12

   1 import os
   2 from twisted.internet import reactor, utils
   3 
   4 myjob = dict()
   5 
   6 def doRepeatMasker(key, args):
   7     d=utils.getProcessOutput('RepeatMasker',
   8             args,
   9             {'PATH':os.environ['PATH']+':'+'/home/estin/bin'})
  10     def gotOutput(output):
  11         print 'in call back...'
  12         print output
  13         myjob.pop(key)
  14         print '   after poped', myjob
  15         print 'end callback..'
  16         print ' myjob status :', myjob
  17     def gotError(failure):
  18         print 'in errback...'
  19         print failure
  20         print 'end errback...'
  21     d.addCallbacks(gotOutput, gotError)
  22     return d
  23 
  24 job1 = 'rp1', ['-cow', 'testseq']
  25 job2 = 'rp2', ['-cow', 'testseq3']
  26 
  27 print '--------------df1'
  28 print ' myjob status :', myjob
  29 df1 = doRepeatMasker(*job1)
  30 myjob['rp1'] = df1
  31 print ' myjob status :', myjob
  32 
  33 print '--------------df2'
  34 print ' myjob status :', myjob
  35 df2 = doRepeatMasker(*job2)
  36 myjob['rp2'] = df2
  37 print ' myjob status :', myjob
  38 
  39 reactor.run()

관련 팁 정리

의외로 유용한 문서가 없다. 홈페이지에 있는건 너무 개괄적. 직접적인 사용법을 이해하려면, 소스를 직접 봐야한다. 생각난김에 소스를 보며, 몰랐었던 사실들 정리. --yong27, 2004-10-12

기타

Twisted에서 deferred를 UnitTest하는 방법에 대해 질문하다.

몇몇 답변들이 있지만, 아직까지도 감이 안온다. -- yong27 2005-10-02 12:08:11


CategoryProgramLibrary

Twisted (last edited 2011-08-21 16:19:42 by 211)