summaryrefslogtreecommitdiff
path: root/src/xmpppy-0.5.0rc1/README
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-07-20 00:10:39 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-07-20 00:10:39 +0000
commit5eeebb36bfe73dcf17dc8b72bd190c266e25c45e (patch)
treeb686f572beea4c420b773219ca2d24a43f3e1694 /src/xmpppy-0.5.0rc1/README
parent6af387dead3afd22797b94473686cae6d3219b42 (diff)
downloadpoezio-5eeebb36bfe73dcf17dc8b72bd190c266e25c45e.tar.gz
poezio-5eeebb36bfe73dcf17dc8b72bd190c266e25c45e.tar.bz2
poezio-5eeebb36bfe73dcf17dc8b72bd190c266e25c45e.tar.xz
poezio-5eeebb36bfe73dcf17dc8b72bd190c266e25c45e.zip
remove xmpppy from the repos
Diffstat (limited to 'src/xmpppy-0.5.0rc1/README')
-rw-r--r--src/xmpppy-0.5.0rc1/README43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/xmpppy-0.5.0rc1/README b/src/xmpppy-0.5.0rc1/README
deleted file mode 100644
index 1042740d..00000000
--- a/src/xmpppy-0.5.0rc1/README
+++ /dev/null
@@ -1,43 +0,0 @@
- Introduction to xmpppy.
- http://xmpppy.sf.net/
-
- This is my work to replace the jabberpy with the current and maintained
-project.
- Now the project nears feature freese of 0.2 branch. Almost all goals are
-achieved already. Though the main goal was to write a documentation - at least
-a line for every feature of library. Yesterday I have checked in last docstrings
-for all yet undocumented modules and now I can say that this issue is resolved
-(at least for 0.2 release level).
- Documentation exists in three formats.
- - The first is the examples that I wrote to show xmpppy in action. This is
- two simple scripts - README.py and xsend.py.
- - The second is the html pages where I try to describe the idea of library
- and the ways the goals are achieved.
- - Third is the docstrings. I am currently using epydoc but other tools
- should work too (at least the pydoc works)
-
- Installation
-If you are using Debian (sarge or above) you can simply run
-apt-get install python-xmpp
-and you will get the current stable release of xmpppy installed. After installation
-you can do 'import xmpp'. Though currently debian contains 0.1 release of xmpppy so
-if you want to use 0.2 branch you should install it manually (python2.3 required).
-Here you have several options:
- - run 'python setup.py install' from xmpppy distribution as root.
- All should work nice.
- - if you don't like python installator - just copy xmpp directory into python's
- site-packages directory (this is what setup.py does).
- - If you have no intention to install library system-wide (or just have no
- privileges to do it) you can copy xmpp directory just in your application's
- directory. Example:
- myxmpppytry/
- xmpp/
- ...xmpppy modules
- test.py
-
-If you have any questions about xmpppy usage or you have find a bug or want
-to share some ideas - you are welcome in xmpppy-devel maillist - see
-http://lists.sourceforge.net/lists/listinfo/xmpppy-devel
-for details of subscription.
-
-2004.12.26 Alexey Nezhdanov