omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    Accessing a person's photo in the contacts module

    Pythonista
    3
    3
    2125
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • alpinerunner
      alpinerunner last edited by

      In the new contacts module is there any way to modify the person's picture?

      I'm not finding it, and I wanted to see if I was missing something.

      1 Reply Last reply Reply Quote 0
      • ccc
        ccc last edited by

        Via Python introspection, I do not see a field for photo, image, etc.:

        import contacts, inspect
        first_person = contacts.get_all_people()[0]
        for member in inspect.getmembers(first_person):
            print(member)
        
        1 Reply Last reply Reply Quote 0
        • omz
          omz last edited by

          Currently not possible, sorry. I might add this in a future update though.

          1 Reply Last reply Reply Quote 0
          • First post
            Last post
          Powered by NodeBB Forums | Contributors