MSoffice metadata

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • micklee74@hotmail.com

    #1

    MSoffice metadata

    hi
    is there a module in Python to extract metadata in MS office documents
    thanks

  • Gary Herron

    #2
    Re: MSoffice metadata

    micklee74@hotma il.com wrote:[color=blue]
    > hi
    > is there a module in Python to extract metadata in MS office documents
    > thanks
    >
    >[/color]
    Perhaps. OpenOffice can read and write MS office files, and OpenOffice
    has an API (called UNO for Universal Network Objects) which has a Python
    binding (called the Python-UNO bridge). This might (eventually) get you
    what you want.

    Here's a URL for it:


    Good luck,
    Gary Herron

    Comment

    • Diez B. Roggisch

      #3
      Re: MSoffice metadata

      micklee74@hotma il.com schrieb:[color=blue]
      > hi
      > is there a module in Python to extract metadata in MS office documents[/color]

      You can automate MS Office using the python win32 com extensions of Mark
      Hammond. They come bundled with the active-state python build, or can be
      obtained separately.

      Diez

      Comment

      • Roger Upole

        #4
        Re: MSoffice metadata

        <micklee74@hotm ail.com> wrote in message news:1151209771 .276872.299240@ b68g2000cwa.goo glegroups.com.. .[color=blue]
        > hi
        > is there a module in Python to extract metadata in MS office documents
        > thanks
        >[/color]

        The Pywin32 package (http://sourceforge.net/projects/pywin32/)
        wraps the interfaces used to read and write document properties.
        Specifically, you can use pythoncom.StgOp enStorage to retrieve
        an IPropertySetSto rage interface.

        Roger





        ----== Posted via Newsfeeds.Com - Unlimited-Unrestricted-Secure Usenet News==----
        http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
        ---= East/West-Coast Server Farms - Total Privacy via Encryption =---

        Comment

        Working...