Author Topic: python messaging program  (Read 963 times)

0 Members and 1 Guest are viewing this topic.

Offline seems_27

  • /dev/null
  • *
  • Posts: 7
  • Cookies: -1
    • View Profile
python messaging program
« on: November 22, 2014, 01:37:07 pm »
Is it possible to make a script that shows if someone read your text or message?
« Last Edit: November 22, 2014, 10:17:29 pm by seems_27 »

Offline s3my0n

  • Knight
  • **
  • Posts: 276
  • Cookies: 58
    • View Profile
    • ::1
Re: python question
« Reply #1 on: November 22, 2014, 01:59:28 pm »
That's a HUUUGGEEEE open ended question. What software is sending texts or messages? What architecture (mobile/pc)?
Easter egg in all *nix systems: E(){ E|E& };E

Offline Axon

  • VIP
  • King
  • *
  • Posts: 2047
  • Cookies: 319
    • View Profile
Re: python question
« Reply #2 on: November 22, 2014, 03:32:28 pm »
I think the op is looking for something to mimic the function of whatsapp when it shows a sign that the recipient has read your message. Right?

Offline seems_27

  • /dev/null
  • *
  • Posts: 7
  • Cookies: -1
    • View Profile
Re: python question
« Reply #3 on: November 22, 2014, 09:57:16 pm »
Yeah thats correct...it would be my first project so I was wondering if its possible
Also I wanted this program to work for both. Mobile and pc
All it would do is let me know when the message wad read.....but would they have to have the same program to allow that?

Staff note: Triple posting faggot.
« Last Edit: November 23, 2014, 09:26:52 am by Kulverstukas »

Offline gray-fox

  • Knight
  • **
  • Posts: 208
  • Cookies: 52
    • View Profile
Re: python messaging program
« Reply #4 on: November 22, 2014, 11:23:17 pm »
Also I wanted this program to work for both. Mobile and pc

Are we talking about sms messages? If yes, then i don't kind of get that pc part.
But about phone. First of all it would be nice to know what OS we are talking about. Let's assume it's android because that's only one i can give you some hints. :D If you want do some kind of python programming with android+sms then android facade+sl4a would be good thing to look into.
https://code.google.com/p/android-scripting/wiki/ApiReference#startActivityForResultIntent

But i think that there isn't any clear solution for sms read reports part. Android does support this kind of thing with mms but not with sms AFAIK.
But even with mms, receivers carrier has to support this kind of service for this to work. With sms you can only have delivery reports, which if i know right only tells that message was succesfully sended.
So if you were talking about sms i don't think there is really way to do this.

If it was some other phone OS you had in mind i have a feeling that you're going to have same problem. But i don't really have any real info about that.

Edit: btw. use edit option, no need to send everything in new post.
« Last Edit: November 22, 2014, 11:27:35 pm by gray-fox »

Offline Kulverstukas

  • Administrator
  • Zeus
  • *
  • Posts: 6627
  • Cookies: 542
  • Fascist dictator
    • View Profile
    • My blog
Re: python messaging program
« Reply #5 on: November 23, 2014, 09:27:53 am »
This shit is so abstract. OP doesn't even understand what he wants...

Offline proxx

  • Avatarception
  • Global Moderator
  • Titan
  • *
  • Posts: 2803
  • Cookies: 256
  • ФФФ
    • View Profile
Re: python messaging program
« Reply #6 on: November 23, 2014, 09:36:43 am »
Wtf where you thinking with that signature? - Phage.
This was another little experiment *evillaughter - Proxx.
Evilception... - Phage

Offline SanCliare

  • /dev/null
  • *
  • Posts: 9
  • Cookies: 2
    • View Profile
Re: python messaging program
« Reply #7 on: November 23, 2014, 08:04:08 pm »
Isn't possible if it's not supported natively. An application would have to be created and if we're talking Android then I suspect that JavaScript would served better. OP, the app you're talking about is a good idea (that's been done already) but I suggest you learn more basic Python concepts before you move towards networked applications.