Write Processing sketches in Python
-
I posted to delicious.com
processing.py
http://github.com/jdf/processing.py
- Tags:
- python
- jython
- graphics
- processing
August 18 2010, 6:06pm | Comments a>
-
I posted to delicious.com
Python Package Index : mailer 0.5
http://pypi.python.org/pypi/mailer
Single class to send plain text, HTML email, and attachments Auto detects attachment types Support for internationalized headers
August 12 2010, 6:07pm | Comments a>
-
I posted to delicious.com
Python Regex Tool
Python Regular Expression Testing Tool
- Tags:
- python
- text
- regex
- regularexpression
- re
July 29 2010, 9:13am | Comments a>
-
I posted to delicious.com
MeCab: Yet Another Part-of-Speech and Morphological Analyzer
http://mecab.sourceforge.net/#install-unix
"MeCabは 京都大学情報学研究科−日本電信電話株式会社コミュニケーション科学基礎研究所 共同研究ユニットプロジェクトを通じて開発されたオープンソース 形態素解析エンジンです. 言語, 辞書,コーパスに依存しない汎用的な設計を 基本方針としています. パラメータの推定に Conditional Random Fields (CRF) を用 いており, ChaSenが採用している 隠れマルコフモデルに比べ性能が向上しています。また、平均的に ChaSen, Juman, KAKASIより高速に動作します. ちなみに和布蕪(めかぶ)は, 作者の好物です."
June 30 2010, 9:12am | Comments a>
-
I posted to stuart.woodward.jp
Python Generators
http://stuart.woodward.jp/?p=3101
divs = ( line.strip() for line in open("tmp.html") if line.find(">DIV")>0 ) for line in divs: print line
I started reading Apress Pro Python and immediately learned something new. I knew about Generators as a pattern for writing classes but I didn’t know you could make them on the fly and use in a similar way to List Comprehensions. The above code lists all the lines in an HTML file which contain a DIV tag, while stripping the white space off the start and end of the lines. Previously I would have written it in a much more clunky way. Yep. Nothing beats actually stepping away from the PC and reading a book.
- Tags:
- python
- programming
- Book
- generator
- apress
June 30 2010, 5:53am | Comments a>
-
I posted to delicious.com
The MessagePack Project
"Extremely efficient object serialization library for cross-language communication." It's like JSON, but very fast and small.
- Tags:
- python
- json
- serialization
- ruby
June 25 2010, 8:45pm | Comments a>
-
I posted to delicious.com
rfoo (remote foo) is a fast Python RPC package
http://code.google.com/p/rfoo/
"rfoo (remote foo) is a fast Python RPC package which can do 130,000 RPC calls per second on a regular PC. It includes a fast serialization module called rfoo.marsh which extends the Python built in marshal module by eliminating serialization of code objects and protecting against bad input. The result is a safe to use ultra fast serializer."
June 21 2010, 10:14am | Comments a>
-
I posted to delicious.com
PiCloud
http://www.picloud.com/product/
"PiCloud is a cloud-computing platform that integrates into the Python Programming Language. It enables you to leverage the computing power of Amazon Web Services without having to manage, maintain, or configure virtual servers."
- Tags:
- python
- server
- cloud
- cloud_computing
- amazon
May 15 2010, 9:08am | Comments a>
-
I posted to delicious.com
Home - dumbo - GitHub
http://wiki.github.com/klbostee/dumbo/
"Dumbo is a project that allows you to easily write and run Hadoop programs in Python (it’s named after Disney’s flying circus elephant, since the logo of Hadoop is an elephant and Python was named after the BBC series “Monty Python’s Flying Circus”). More generally, Dumbo can be considered to be a convenient Python API for writing MapReduce program"
May 15 2010, 8:37am | Comments a>