-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathREADME
More file actions
72 lines (51 loc) · 1.66 KB
/
Copy pathREADME
File metadata and controls
72 lines (51 loc) · 1.66 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
python-csp: Communicating Sequential Processes for Python.
Homepage: http://code.google.com/p/python-csp/
Copyright (C) Sarah Mount, 2009 under the GNU GPL v2. See the file
LICENSE for more details.
Installation:
------------
python-csp can be installed using PIP (PIP Installs Python):
$ sudo pip install python-csp
or from a source distribution using setup.py:
$ sudo python setup.py install
Introduction.
------------
python-csp adds C.A.R. (Tony) Hoare's Communicating Sequential
Processes to Python. A brief example:
>>> @process
... def writer(channel, n):
... for i in xrange(n):
... channel.write(i)
... channel.poison()
... return
...
>>> @process
... def reader(channel):
... while True:
... print channel.read()
...
>>> chan = Channel()
>>> Par(reader(chan), writer(chan, 5)).start()
0
1
2
3
4
>>>
Documentation.
-------------
There are several sources of documentation for python-csp:
* If you are running the python-csp shell, type "info csp" to list
available in-shell help.
* A user guide exists online at:
http://code.google.com/p/python-csp/wiki/Tutorial
* tutorial/ contains code from the tutorial pages on the wiki.
* docs/ contains API documentation generated directly from the
python-csp source code.
* examples/ contains some larger example programs.
Publications.
------------
S. Mount, M. Hammoudeh, S. Wilson, R. Newman (2009) CSP as a
Domain-Specific Language Embedded in Python and Jython. In Proceedings
of Communicating Process Architectures 2009. Eindoven,
Netherlands. 1st -- 4th November 2009. Published IOS Press.