Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #69421 > unrolled thread
| Started by | Wesley <nispray@gmail.com> |
|---|---|
| First post | 2014-03-31 04:03 -0700 |
| Last post | 2014-04-02 04:24 +0200 |
| Articles | 7 — 5 participants |
Back to article view | Back to comp.lang.python
Python IM server Wesley <nispray@gmail.com> - 2014-03-31 04:03 -0700
Re: Python IM server Lutz Horn <lutz.horn@posteo.de> - 2014-03-31 14:37 +0200
Re: Python IM server Wesley <nispray@gmail.com> - 2014-03-31 19:38 -0700
Re: Python IM server Miki Tebeka <miki.tebeka@gmail.com> - 2014-03-31 22:06 -0700
Re: Python IM server David Hutto <dwightdhutto@gmail.com> - 2014-04-01 01:38 -0400
Re: Python IM server Wesley <nispray@gmail.com> - 2014-04-01 02:14 -0700
Re: Python IM server Tamer Higazi <th982a@googlemail.com> - 2014-04-02 04:24 +0200
| From | Wesley <nispray@gmail.com> |
|---|---|
| Date | 2014-03-31 04:03 -0700 |
| Subject | Python IM server |
| Message-ID | <cd39e1e2-6580-47a6-8cc6-d753f4c0200d@googlegroups.com> |
Hi all, I want to develop a instant message server, simply has user and group entity. Is there any better existing open-source one? Thus I can download and have a look. Thanks. Wesley
[toc] | [next] | [standalone]
| From | Lutz Horn <lutz.horn@posteo.de> |
|---|---|
| Date | 2014-03-31 14:37 +0200 |
| Message-ID | <mailman.8743.1396272420.18130.python-list@python.org> |
| In reply to | #69421 |
Hi, > I want to develop a instant message server, simply has user and > group entity. > > Is there any better existing open-source one? Take a look at XMPP[0]. There are some Python libraries[1]. [0] https://en.wikipedia.org/wiki/XMPP [1] http://xmpp.org/xmpp-software/libraries/ -- Opt out of global data surveillance programs like PRISM, XKeyscore and Tempora. https://prism-break.org
[toc] | [prev] | [next] | [standalone]
| From | Wesley <nispray@gmail.com> |
|---|---|
| Date | 2014-03-31 19:38 -0700 |
| Message-ID | <5956f54e-4db3-4fcb-b0b1-c81651392fc2@googlegroups.com> |
| In reply to | #69428 |
在 2014年3月31日星期一UTC+8下午8时37分32秒,Lutz Horn写道: > Hi, > > > > > I want to develop a instant message server, simply has user and > > > group entity. > > > > > > Is there any better existing open-source one? > > > > Take a look at XMPP[0]. There are some Python libraries[1]. > > > > [0] https://en.wikipedia.org/wiki/XMPP > > [1] http://xmpp.org/xmpp-software/libraries/ > > > > -- > > Opt out of global data surveillance programs like PRISM, XKeyscore and > > Tempora. > > https://prism-break.org I am looking at telepathy, empathy. Currently instant message is urgent, but needs voice/video call in the future. For instant message, I have user-to-user and user-to-group cases. Don't know if it suits well.
[toc] | [prev] | [next] | [standalone]
| From | Miki Tebeka <miki.tebeka@gmail.com> |
|---|---|
| Date | 2014-03-31 22:06 -0700 |
| Message-ID | <50efd79f-d085-4813-97fa-86e4e48e13f7@googlegroups.com> |
| In reply to | #69421 |
> I want to develop a instant message server, simply has user and group entity. > Is there any better existing open-source one? > Thus I can download and have a look. You can take a look at Twisted Words (https://twistedmatrix.com/trac/wiki/TwistedWords).
[toc] | [prev] | [next] | [standalone]
| From | David Hutto <dwightdhutto@gmail.com> |
|---|---|
| Date | 2014-04-01 01:38 -0400 |
| Message-ID | <mailman.8768.1396330741.18130.python-list@python.org> |
| In reply to | #69468 |
[Multipart message — attachments visible in raw view] — view raw
hint: Tkinter server db update the tkinter apps, with the new data, after moving a line down On Tue, Apr 1, 2014 at 1:06 AM, Miki Tebeka <miki.tebeka@gmail.com> wrote: > > I want to develop a instant message server, simply has user and group > entity. > > Is there any better existing open-source one? > > Thus I can download and have a look. > You can take a look at Twisted Words ( > https://twistedmatrix.com/trac/wiki/TwistedWords). > -- > https://mail.python.org/mailman/listinfo/python-list > -- Best Regards, David Hutto *CEO:* *http://www.hitwebdevelopment.com <http://www.hitwebdevelopment.com>*
[toc] | [prev] | [next] | [standalone]
| From | Wesley <nispray@gmail.com> |
|---|---|
| Date | 2014-04-01 02:14 -0700 |
| Message-ID | <dd563a55-da61-4101-8c93-90f080818835@googlegroups.com> |
| In reply to | #69468 |
在 2014年4月1日星期二UTC+8下午1时06分17秒,Miki Tebeka写道: > > I want to develop a instant message server, simply has user and group entity. > > > Is there any better existing open-source one? > > > Thus I can download and have a look. > > You can take a look at Twisted Words (https://twistedmatrix.com/trac/wiki/TwistedWords). Have you tried this before? I just have a look. Seems most samples are just for bot. I have scenarios that user-to-user and user talking in group. So, for the IM server side, may need store some infomation in database,store messages not sent to user .etc Seems twisted words is high wrapped, we still need to develop lots of things. Wesley
[toc] | [prev] | [next] | [standalone]
| From | Tamer Higazi <th982a@googlemail.com> |
|---|---|
| Date | 2014-04-02 04:24 +0200 |
| Message-ID | <mailman.8812.1396405453.18130.python-list@python.org> |
| In reply to | #69421 |
Take Twisted! twistedmatrix.... has all you need! Am 31.03.2014 13:03, schrieb Wesley: > Hi all, > I want to develop a instant message server, simply has user and group entity. > > Is there any better existing open-source one? > Thus I can download and have a look. > > Thanks. > Wesley >
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web