ShayHill / docx2python

Extract docx headers, footers, (formatted) text, footnotes, endnotes, properties, and images.
https://docx2python.readthedocs.io/en/latest/
MIT License
164 stars 35 forks source link

syntax error when running sample code #2

Closed stefan-hock20 closed 4 years ago

stefan-hock20 commented 4 years ago

when running the following snippet from the sampel code

from docx2python import docx2python

extract docx content

docx2python('E:/nlp/author_it/docuvera/IT5562S_CCDS 0281-09_clean.docx')

the following error is thrown:

Traceback (most recent call last): File "E:/.../tests/test_wod_images.py", line 1, in from docx2python import docx2python File "C:...\Python\Python35\lib\site-packages\docx2python__init__.py", line 1, in from .main import docx2python File "C:...\Python\Python35\lib\site-packages\docx2python\main.py", line 14, in from docx2python.docx_output import DocxContent File "C:...\Python\Python35\lib\site-packages\docx2python\docx_output.py", line 27 ) -> None: ^ SyntaxError: invalid syntax

Any hints?

ShayHill commented 4 years ago

Thank you for the report. What is your python version? And will you please send IT5562S_CCDS 0281-09_clean.docx?

-Shay

From: stefan-hock20 notifications@github.com Sent: Monday, January 13, 2020 7:35 AM To: ShayHill/docx2python docx2python@noreply.github.com Cc: Subscribed subscribed@noreply.github.com Subject: [ShayHill/docx2python] syntax error when running sample code (#2)

when running the following snippet from the sampel code

from docx2python import docx2python

extract docx content

docx2python('E:/nlp/author_it/docuvera/IT5562S_CCDS 0281-09_clean.docx')

the following error is thrown:

Traceback (most recent call last): File "E:/.../tests/test_wod_images.py", line 1, in from docx2python import docx2python File "C:...\Python\Python35\lib\site-packages\docx2pythoninit.py", line 1, in from .main import docx2python File "C:...\Python\Python35\lib\site-packages\docx2python\main.py", line 14, in from docx2python.docx_output import DocxContent File "C:...\Python\Python35\lib\site-packages\docx2python\docx_output.py", line 27 ) -> None: ^ SyntaxError: invalid syntax

Any hints?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE5K6X4TYSXWGYLUC73Q5RUYBA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4IFYCEUQ, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIEYFOVBBWHLNIVVFNYLQ5RUYBANCNFSM4KGCIOQA.

stefan-hock20 commented 4 years ago

I found the problem   in file ...\Python\Python35\lib\site-packages\docx2python\docx_output.py

class DocxContent:     """Holds return values for docx content."""     def init(         self,         *,         header: TablesList,         footer: TablesList,         body: TablesList,         footnotes: TablesList,         endnotes: TablesList,         properties: Dict[str, Any],         images: Dict[str, bytes],    --->>>>>>>>>>>>>>>>>> CHANGED THIS TO >> images: Dict[str, bytes]  >> removed comma     ) -> None:         self.header = header         self.footer = footer         self.body = body         self.footnotes = footnotes         self.endnotes = endnotes         self.properties = properties         self.images = images     @property     def document(self) -> TablesList:         """All docx "tables" concatenated."""         return self.header + self.body + self.footer + self.footnotes + self.endnotes     @property     def text(self) -> str:         """All docx paragraphs, "\n\n" delimited."""         return "\n\n".join(iter_at_depth(self.document, 4))     @property     def html_map(self) -> str:         """A visual mapping of docx content."""         return get_html_map(self.document)

stefan-hock20 commented 4 years ago

Hi Shay   I found the problem   in file ...\Python\Python35\lib\site-packages\docx2python\docx_output.py  

class DocxContent:    """Holds return values for docx content."""     def init(        self,        *,        header: TablesList,        footer: TablesList,        body: TablesList,        footnotes: TablesList,        endnotes: TablesList,        properties: Dict[str, Any],        images: Dict[str, bytes],    --->>>>>>>>>>>>>>>>>> CHANGED THIS TO >> images: Dict[str, bytes]  >> removed comma    ) -> None:        self.header = header        self.footer = footer        self.body = body        self.footnotes = footnotes        self.endnotes = endnotes        self.properties = properties        self.images = images     @property    def document(self) -> TablesList:        """All docx "tables" concatenated."""        return self.header + self.body + self.footer + self.footnotes + self.endnotes     @property    def text(self) -> str:        """All docx paragraphs, "\n\n" delimited."""        return "\n\n".join(iter_at_depth(self.document, 4))     @property    def html_map(self) -> str:        """A visual mapping of docx content."""        return get_html_map(self.document)


Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt.

-----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.comGesendet: Dienstag, 14. Januar 2020 13:14An: ShayHill/docx2python docx2python@noreply.github.comCc: stefan-hock20 stefan.hock@web.de; Author author@noreply.github.comBetreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com/stefan.hock@web.de/docx2python@noreply.github.com

Thank you for the report. What is your python version? And will you please send IT5562S_CCDS 0281-09_clean.docx? -Shay From: stefan-hock20 notifications@github.com Sent: Monday, January 13, 2020 7:35 AM To: ShayHill/docx2python docx2python@noreply.github.com Cc: Subscribed subscribed@noreply.github.com Subject: [ShayHill/docx2python] syntax error when running sample code (#2) when running the following snippet from the sampel code from docx2python import docx2python extract docx content docx2python('E:/nlp/author_it/docuvera/IT5562S_CCDS 0281-09_clean.docx') the following error is thrown: Traceback (most recent call last): File "E:/.../tests/test_wod_images.py", line 1, in from docx2python import docx2python File "C:...\Python\Python35\lib\site-packages\docx2pythoninit.py", line 1, in from .main import docx2python File "C:...\Python\Python35\lib\site-packages\docx2python\main.py", line 14, in from docx2python.docx_output import DocxContent File "C:...\Python\Python35\lib\site-packages\docx2python\docx_output.py", line 27 ) -> None: ^ SyntaxError: invalid syntax Any hints? — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE5K6X4TYSXWGYLUC73Q5RUYBA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4IFYCEUQ, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIEYFOVBBWHLNIVVFNYLQ5RUYBANCNFSM4KGCIOQA. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe.

stefan-hock20 commented 4 years ago

Hi Shay my document.xml file codes images in the follwowing way:

Looks like this is not captured in your implmenetatiion? Any hint on how to incorporate this?
ShayHill commented 4 years ago

Thank you. That's pretty huge!

Iirc,

  1. Such trailing commas are allowed in Python 3.6+ but not before.

  2. My editor is configured to flag incompatibilities for 3.4+.

If I'm right about both of those, the editor missed it, and I need to submit a bug report.

Either way, I'll find and remove these manually and test explicitly with 3.4+. Thank you again.

Sent via the Samsung Galaxy S9+, an AT&T 5G Evolution capable smartphone Get Outlook for Androidhttps://aka.ms/ghei36


From: stefan-hock20 notifications@github.com Sent: Tuesday, January 14, 2020 7:07:29 AM To: ShayHill/docx2python docx2python@noreply.github.com Cc: Shay Hill shay_public@hotmail.com; Comment comment@noreply.github.com Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2)

Hi Shay

I found the problem

in file ...\Python\Python35\lib\site-packages\docx2python\docx_output.py

class DocxContent: """Holds return values for docx content.""" def init( self, *, header: TablesList, footer: TablesList, body: TablesList, footnotes: TablesList, endnotes: TablesList, properties: Dict[str, Any], images: Dict[str, bytes], --->>>>>>>>>>>>>>>>>> CHANGED THIS TO >> images: Dict[str, bytes] >> removed comma ) -> None: self.header = header self.footer = footer self.body = body self.footnotes = footnotes self.endnotes = endnotes self.properties = properties self.images = images @property def document(self) -> TablesList: """All docx "tables" concatenated.""" return self.header + self.body + self.footer + self.footnotes + self.endnotes @property def text(self) -> str: """All docx paragraphs, "\n\n" delimited.""" return "\n\n".join(iter_at_depth(self.document, 4)) @property def html_map(self) -> str: """A visual mapping of docx content.""" return get_html_map(self.document)


Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt.

-----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.comGesendet: Dienstag, 14. Januar 2020 13:14An: ShayHill/docx2python docx2python@noreply.github.comCc: stefan-hock20 stefan.hock@web.de; Author author@noreply.github.comBetreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com/stefan.hock@web.de/docx2python@noreply.github.com

Thank you for the report. What is your python version? And will you please send IT5562S_CCDS 0281-09_clean.docx? -Shay From: stefan-hock20 notifications@github.com Sent: Monday, January 13, 2020 7:35 AM To: ShayHill/docx2python docx2python@noreply.github.com Cc: Subscribed subscribed@noreply.github.com Subject: [ShayHill/docx2python] syntax error when running sample code (#2) when running the following snippet from the sampel code from docx2python import docx2python extract docx content docx2python('E:/nlp/author_it/docuvera/IT5562S_CCDS 0281-09_clean.docx') the following error is thrown: Traceback (most recent call last): File "E:/.../tests/test_wod_images.py", line 1, in from docx2python import docx2python File "C:...\Python\Python35\lib\site-packages\docx2pythoninit.py", line 1, in from .main import docx2python File "C:...\Python\Python35\lib\site-packages\docx2python\main.py", line 14, in from docx2python.docx_output import DocxContent File "C:...\Python\Python35\lib\site-packages\docx2python\docx_output.py", line 27 ) -> None: ^ SyntaxError: invalid syntax Any hints? — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE5K6X4TYSXWGYLUC73Q5RUYBA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4IFYCEUQ, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIEYFOVBBWHLNIVVFNYLQ5RUYBANCNFSM4KGCIOQA. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe.

— You are receiving this because you commented. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE2CJDYOTN6A26T2ZUDQ5W2JDA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEI4RABA#issuecomment-574164996, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIE4KO4KUSDO6ZBTUOY3Q5W2JDANCNFSM4KGCIOQA.

ShayHill commented 4 years ago

I'd like to incorporate that functionality into my package. Can you send an example file?

Sent via the Samsung Galaxy S9+, an AT&T 5G Evolution capable smartphone Get Outlook for Androidhttps://aka.ms/ghei36


From: Shay Lastname shay_public@hotmail.com Sent: Tuesday, January 14, 2020 8:33:10 AM To: ShayHill/docx2python reply@reply.github.com; ShayHill/docx2python docx2python@noreply.github.com Cc: Comment comment@noreply.github.com Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2)

Thank you. That's pretty huge!

Iirc,

  1. Such trailing commas are allowed in Python 3.6+ but not before.

  2. My editor is configured to flag incompatibilities for 3.4+.

If I'm right about both of those, the editor missed it, and I need to submit a bug report.

Either way, I'll find and remove these manually and test explicitly with 3.4+. Thank you again.

Sent via the Samsung Galaxy S9+, an AT&T 5G Evolution capable smartphone Get Outlook for Androidhttps://aka.ms/ghei36


From: stefan-hock20 notifications@github.com Sent: Tuesday, January 14, 2020 7:07:29 AM To: ShayHill/docx2python docx2python@noreply.github.com Cc: Shay Hill shay_public@hotmail.com; Comment comment@noreply.github.com Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2)

Hi Shay

I found the problem

in file ...\Python\Python35\lib\site-packages\docx2python\docx_output.py

class DocxContent: """Holds return values for docx content.""" def init( self, *, header: TablesList, footer: TablesList, body: TablesList, footnotes: TablesList, endnotes: TablesList, properties: Dict[str, Any], images: Dict[str, bytes], --->>>>>>>>>>>>>>>>>> CHANGED THIS TO >> images: Dict[str, bytes] >> removed comma ) -> None: self.header = header self.footer = footer self.body = body self.footnotes = footnotes self.endnotes = endnotes self.properties = properties self.images = images @property def document(self) -> TablesList: """All docx "tables" concatenated.""" return self.header + self.body + self.footer + self.footnotes + self.endnotes @property def text(self) -> str: """All docx paragraphs, "\n\n" delimited.""" return "\n\n".join(iter_at_depth(self.document, 4)) @property def html_map(self) -> str: """A visual mapping of docx content.""" return get_html_map(self.document)


Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt.

-----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.comGesendet: Dienstag, 14. Januar 2020 13:14An: ShayHill/docx2python docx2python@noreply.github.comCc: stefan-hock20 stefan.hock@web.de; Author author@noreply.github.comBetreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com/stefan.hock@web.de/docx2python@noreply.github.com

Thank you for the report. What is your python version? And will you please send IT5562S_CCDS 0281-09_clean.docx? -Shay From: stefan-hock20 notifications@github.com Sent: Monday, January 13, 2020 7:35 AM To: ShayHill/docx2python docx2python@noreply.github.com Cc: Subscribed subscribed@noreply.github.com Subject: [ShayHill/docx2python] syntax error when running sample code (#2) when running the following snippet from the sampel code from docx2python import docx2python extract docx content docx2python('E:/nlp/author_it/docuvera/IT5562S_CCDS 0281-09_clean.docx') the following error is thrown: Traceback (most recent call last): File "E:/.../tests/test_wod_images.py", line 1, in from docx2python import docx2python File "C:...\Python\Python35\lib\site-packages\docx2pythoninit.py", line 1, in from .main import docx2python File "C:...\Python\Python35\lib\site-packages\docx2python\main.py", line 14, in from docx2python.docx_output import DocxContent File "C:...\Python\Python35\lib\site-packages\docx2python\docx_output.py", line 27 ) -> None: ^ SyntaxError: invalid syntax Any hints? — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE5K6X4TYSXWGYLUC73Q5RUYBA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4IFYCEUQ, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIEYFOVBBWHLNIVVFNYLQ5RUYBANCNFSM4KGCIOQA. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe.

— You are receiving this because you commented. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE2CJDYOTN6A26T2ZUDQ5W2JDA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEI4RABA#issuecomment-574164996, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIE4KO4KUSDO6ZBTUOY3Q5W2JDANCNFSM4KGCIOQA.

stefan-hock20 commented 4 years ago

here it is test-figure-2.docx

ShayHill commented 4 years ago

Excellent. Thank you.

From: stefan-hock20 notifications@github.com Sent: Tuesday, January 14, 2020 9:12 AM To: ShayHill/docx2python docx2python@noreply.github.com Cc: Shay Hill shay_public@hotmail.com; Comment comment@noreply.github.com Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2)

here it is test-figure-2.docxhttps://github.com/ShayHill/docx2python/files/4059828/test-figure-2.docx

— You are receiving this because you commented. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIEZBK3YHMSDA62ALDQLQ5XI5NA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEI46T4I#issuecomment-574220785, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIE47QC63LTSEIKSIETTQ5XI5NANCNFSM4KGCIOQA.

ShayHill commented 4 years ago

I have updated the package to handle files like yours. All I need is your permission to include your file, test-figure-2.docx, in the test cases. Is this alright with you? I cannot create a file like yours with my version of Word.

-Shay

From: stefan-hock20 notifications@github.com Sent: Tuesday, January 14, 2020 9:12 AM To: ShayHill/docx2python docx2python@noreply.github.com Cc: Shay Hill shay_public@hotmail.com; Comment comment@noreply.github.com Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2)

here it is test-figure-2.docxhttps://github.com/ShayHill/docx2python/files/4059828/test-figure-2.docx

— You are receiving this because you commented. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIEZBK3YHMSDA62ALDQLQ5XI5NA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEI46T4I#issuecomment-574220785, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIE47QC63LTSEIKSIETTQ5XI5NANCNFSM4KGCIOQA.

ShayHill commented 4 years ago

Updated. Trailing commas removed to allow 3.4 and 3.5 compatibility. Will now capture and mark images in elements.

stefan-hock20 commented 4 years ago

Hi Shay     can you resend the word file I provided? Need to double check if the customer and/or product is removed from the figure   regards Stefan


Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt.

-----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.comGesendet: Montag, 3. Februar 2020 12:55An: ShayHill/docx2python docx2python@noreply.github.comCc: stefan-hock20 stefan.hock@web.de; Author author@noreply.github.comBetreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com/stefan.hock@web.de/docx2python@noreply.github.com

Closed #2. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe.

ShayHill commented 4 years ago

Here it is.

From: stefan-hock20 notifications@github.com Sent: Monday, February 3, 2020 6:21 AM To: ShayHill/docx2python docx2python@noreply.github.com Cc: Shay Hill shay_public@hotmail.com; State change state_change@noreply.github.com Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2)

Hi Shay

can you resend the word file I provided? Need to double check if the customer and/or product is removed from the figure

regards Stefan


Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt.

-----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.com<mailto:notifications@github.com>Gesendet: Montag, 3. Februar 2020 12:55An: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com>Cc: stefan-hock20 stefan.hock@web.de<mailto:stefan.hock@web.de>; Author author@noreply.github.com<mailto:author@noreply.github.com>Betreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com<mailto:/author@noreply.github.com>/stefan.hock@web.de<mailto:/stefan.hock@web.de>/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com>

Closed #2. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe.

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE66C6IZMNHJVCP3LM3RBAD3TA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEKTUU5A#issuecomment-581388916, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIEZGJMZCZZF5QHGD5LDRBAD3TANCNFSM4KGCIOQA.

stefan-hock20 commented 4 years ago

no files attached


Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt.

-----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.comGesendet: Montag, 3. Februar 2020 14:14An: ShayHill/docx2python docx2python@noreply.github.comCc: stefan-hock20 stefan.hock@web.de; Author author@noreply.github.comBetreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com/stefan.hock@web.de/docx2python@noreply.github.com

Here it is. From: stefan-hock20 notifications@github.com Sent: Monday, February 3, 2020 6:21 AM To: ShayHill/docx2python docx2python@noreply.github.com Cc: Shay Hill shay_public@hotmail.com; State change state_change@noreply.github.com Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2) Hi Shay can you resend the word file I provided? Need to double check if the customer and/or product is removed from the figure regards Stefan --- Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt. -----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.com<mailto:notifications@github.com>Gesendet: Montag, 3. Februar 2020 12:55An: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com>Cc: stefan-hock20 stefan.hock@web.de<mailto:stefan.hock@web.de>; Author author@noreply.github.com<mailto:author@noreply.github.com>Betreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com<mailto:/author@noreply.github.com>/stefan.hock@web.de<mailto:/stefan.hock@web.de>/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com> Closed #2. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe. — You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE66C6IZMNHJVCP3LM3RBAD3TA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEKTUU5A#issuecomment-581388916, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIEZGJMZCZZF5QHGD5LDRBAD3TANCNFSM4KGCIOQA. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe.

ShayHill commented 4 years ago

How about now? If this doesn’t work, I’ll log into github and try something from there.

From: stefan-hock20 notifications@github.com Sent: Monday, February 3, 2020 7:16 AM To: ShayHill/docx2python docx2python@noreply.github.com Cc: Shay Hill shay_public@hotmail.com; State change state_change@noreply.github.com Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2)

no files attached


Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt.

-----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.com<mailto:notifications@github.com>Gesendet: Montag, 3. Februar 2020 14:14An: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com>Cc: stefan-hock20 stefan.hock@web.de<mailto:stefan.hock@web.de>; Author author@noreply.github.com<mailto:author@noreply.github.com>Betreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com<mailto:/author@noreply.github.com>/stefan.hock@web.de<mailto:/stefan.hock@web.de>/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com>

Here it is. From: stefan-hock20 notifications@github.com<mailto:notifications@github.com> Sent: Monday, February 3, 2020 6:21 AM To: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com> Cc: Shay Hill shay_public@hotmail.com<mailto:shay_public@hotmail.com>; State change state_change@noreply.github.com<mailto:state_change@noreply.github.com> Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2) Hi Shay can you resend the word file I provided? Need to double check if the customer and/or product is removed from the figure regards Stefan --- Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt. -----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.com<mailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com>>Gesendet: Montag, 3. Februar 2020 12:55An: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com>>Cc: stefan-hock20 stefan.hock@web.de<mailto:stefan.hock@web.de<mailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de>>; Author author@noreply.github.com<mailto:author@noreply.github.com<mailto:author@noreply.github.com%3cmailto:author@noreply.github.com>>Betreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com<mailto:/author@noreply.github.com<mailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com>>/stefan.hock@web.de<mailto:/stefan.hock@web.de<mailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de>>/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com>> Closed #2. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe. — You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE66C6IZMNHJVCP3LM3RBAD3TA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEKTUU5A#issuecomment-581388916, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIEZGJMZCZZF5QHGD5LDRBAD3TANCNFSM4KGCIOQA. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe.

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE3DADL2LRVGNXZU5NTRBAKH3A5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEKTZMKY#issuecomment-581408299, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIEYBRLXZECBPK6ROEB3RBAKH3ANCNFSM4KGCIOQA.

stefan-hock20 commented 4 years ago

no


Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt.

-----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.comGesendet: Montag, 3. Februar 2020 14:16An: ShayHill/docx2python docx2python@noreply.github.comCc: stefan-hock20 stefan.hock@web.de; Author author@noreply.github.comBetreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com/stefan.hock@web.de/docx2python@noreply.github.com

How about now? If this doesn’t work, I’ll log into github and try something from there. From: stefan-hock20 notifications@github.com Sent: Monday, February 3, 2020 7:16 AM To: ShayHill/docx2python docx2python@noreply.github.com Cc: Shay Hill shay_public@hotmail.com; State change state_change@noreply.github.com Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2) no files attached --- Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt. -----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.com<mailto:notifications@github.com>Gesendet: Montag, 3. Februar 2020 14:14An: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com>Cc: stefan-hock20 stefan.hock@web.de<mailto:stefan.hock@web.de>; Author author@noreply.github.com<mailto:author@noreply.github.com>Betreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com<mailto:/author@noreply.github.com>/stefan.hock@web.de<mailto:/stefan.hock@web.de>/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com> Here it is. From: stefan-hock20 notifications@github.com<mailto:notifications@github.com> Sent: Monday, February 3, 2020 6:21 AM To: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com> Cc: Shay Hill shay_public@hotmail.com<mailto:shay_public@hotmail.com>; State change state_change@noreply.github.com<mailto:state_change@noreply.github.com> Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2) Hi Shay can you resend the word file I provided? Need to double check if the customer and/or product is removed from the figure regards Stefan --- Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt. -----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.com<mailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com>>Gesendet: Montag, 3. Februar 2020 12:55An: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com>>Cc: stefan-hock20 stefan.hock@web.de<mailto:stefan.hock@web.de<mailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de>>; Author author@noreply.github.com<mailto:author@noreply.github.com<mailto:author@noreply.github.com%3cmailto:author@noreply.github.com>>Betreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com<mailto:/author@noreply.github.com<mailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com>>/stefan.hock@web.de<mailto:/stefan.hock@web.de<mailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de>>/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com>> Closed #2. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe. — You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE66C6IZMNHJVCP3LM3RBAD3TA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEKTUU5A#issuecomment-581388916, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIEZGJMZCZZF5QHGD5LDRBAD3TANCNFSM4KGCIOQA. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe. — You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE3DADL2LRVGNXZU5NTRBAKH3A5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEKTZMKY#issuecomment-581408299, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIEYBRLXZECBPK6ROEB3RBAKH3ANCNFSM4KGCIOQA. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe.

ShayHill commented 4 years ago

Hmmmm. Can you get it from here?

https://github.com/ShayHill/docx2python/issues/2#issuecomment-574220785

-Shay

From: stefan-hock20 notifications@github.com Sent: Monday, February 3, 2020 7:18 AM To: ShayHill/docx2python docx2python@noreply.github.com Cc: Shay Hill shay_public@hotmail.com; State change state_change@noreply.github.com Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2)

no


Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt.

-----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.com<mailto:notifications@github.com>Gesendet: Montag, 3. Februar 2020 14:16An: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com>Cc: stefan-hock20 stefan.hock@web.de<mailto:stefan.hock@web.de>; Author author@noreply.github.com<mailto:author@noreply.github.com>Betreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com<mailto:/author@noreply.github.com>/stefan.hock@web.de<mailto:/stefan.hock@web.de>/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com>

How about now? If this doesn’t work, I’ll log into github and try something from there. From: stefan-hock20 notifications@github.com<mailto:notifications@github.com> Sent: Monday, February 3, 2020 7:16 AM To: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com> Cc: Shay Hill shay_public@hotmail.com<mailto:shay_public@hotmail.com>; State change state_change@noreply.github.com<mailto:state_change@noreply.github.com> Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2) no files attached --- Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt. -----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.com<mailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com>>Gesendet: Montag, 3. Februar 2020 14:14An: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com>>Cc: stefan-hock20 stefan.hock@web.de<mailto:stefan.hock@web.de<mailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de>>; Author author@noreply.github.com<mailto:author@noreply.github.com<mailto:author@noreply.github.com%3cmailto:author@noreply.github.com>>Betreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com<mailto:/author@noreply.github.com<mailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com>>/stefan.hock@web.de<mailto:/stefan.hock@web.de<mailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de>>/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com>> Here it is. From: stefan-hock20 notifications@github.com<mailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com>> Sent: Monday, February 3, 2020 6:21 AM To: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com>> Cc: Shay Hill shay_public@hotmail.com<mailto:shay_public@hotmail.com<mailto:shay_public@hotmail.com%3cmailto:shay_public@hotmail.com>>; State change state_change@noreply.github.com<mailto:state_change@noreply.github.com<mailto:state_change@noreply.github.com%3cmailto:state_change@noreply.github.com>> Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2) Hi Shay can you resend the word file I provided? Need to double check if the customer and/or product is removed from the figure regards Stefan --- Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt. -----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.com<mailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com%3cmailto:notifications@github.com%3cmailto:notifications@github.com>>>Gesendet: Montag, 3. Februar 2020 12:55An: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com>>>Cc: stefan-hock20 stefan.hock@web.de<mailto:stefan.hock@web.de<mailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de<mailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de>>>; Author author@noreply.github.com<mailto:author@noreply.github.com<mailto:author@noreply.github.com%3cmailto:author@noreply.github.com<mailto:author@noreply.github.com%3cmailto:author@noreply.github.com%3cmailto:author@noreply.github.com%3cmailto:author@noreply.github.com>>>Betreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com<mailto:/author@noreply.github.com<mailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com<mailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com>>>/stefan.hock@web.de<mailto:/stefan.hock@web.de<mailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de<mailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de>>>/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com>>> Closed #2. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe. — You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE66C6IZMNHJVCP3LM3RBAD3TA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEKTUU5A#issuecomment-581388916, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIEZGJMZCZZF5QHGD5LDRBAD3TANCNFSM4KGCIOQA. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe. — You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE3DADL2LRVGNXZU5NTRBAKH3A5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEKTZMKY#issuecomment-581408299, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIEYBRLXZECBPK6ROEB3RBAKH3ANCNFSM4KGCIOQA. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe.

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE7L2I4OOCW436VCJXLRBAKOXA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEKTZSAA#issuecomment-581409024, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIE3LZWYEP6GHB2NZSADRBAKOXANCNFSM4KGCIOQA.

stefan-hock20 commented 4 years ago

 that works   I am fine with the figure, please delete all text that is not needed from the document (e.g. header , confidentiallity info etc.)      


Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt.

-----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.comGesendet: Montag, 3. Februar 2020 14:20An: ShayHill/docx2python docx2python@noreply.github.comCc: stefan-hock20 stefan.hock@web.de; Author author@noreply.github.comBetreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com/stefan.hock@web.de/docx2python@noreply.github.com

Hmmmm. Can you get it from here? https://github.com/ShayHill/docx2python/issues/2#issuecomment-574220785 -Shay From: stefan-hock20 notifications@github.com Sent: Monday, February 3, 2020 7:18 AM To: ShayHill/docx2python docx2python@noreply.github.com Cc: Shay Hill shay_public@hotmail.com; State change state_change@noreply.github.com Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2) no --- Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt. -----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.com<mailto:notifications@github.com>Gesendet: Montag, 3. Februar 2020 14:16An: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com>Cc: stefan-hock20 stefan.hock@web.de<mailto:stefan.hock@web.de>; Author author@noreply.github.com<mailto:author@noreply.github.com>Betreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com<mailto:/author@noreply.github.com>/stefan.hock@web.de<mailto:/stefan.hock@web.de>/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com> How about now? If this doesn’t work, I’ll log into github and try something from there. From: stefan-hock20 notifications@github.com<mailto:notifications@github.com> Sent: Monday, February 3, 2020 7:16 AM To: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com> Cc: Shay Hill shay_public@hotmail.com<mailto:shay_public@hotmail.com>; State change state_change@noreply.github.com<mailto:state_change@noreply.github.com> Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2) no files attached --- Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt. -----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.com<mailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com>>Gesendet: Montag, 3. Februar 2020 14:14An: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com>>Cc: stefan-hock20 stefan.hock@web.de<mailto:stefan.hock@web.de<mailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de>>; Author author@noreply.github.com<mailto:author@noreply.github.com<mailto:author@noreply.github.com%3cmailto:author@noreply.github.com>>Betreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com<mailto:/author@noreply.github.com<mailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com>>/stefan.hock@web.de<mailto:/stefan.hock@web.de<mailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de>>/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com>> Here it is. From: stefan-hock20 notifications@github.com<mailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com>> Sent: Monday, February 3, 2020 6:21 AM To: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com>> Cc: Shay Hill shay_public@hotmail.com<mailto:shay_public@hotmail.com<mailto:shay_public@hotmail.com%3cmailto:shay_public@hotmail.com>>; State change state_change@noreply.github.com<mailto:state_change@noreply.github.com<mailto:state_change@noreply.github.com%3cmailto:state_change@noreply.github.com>> Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2) Hi Shay can you resend the word file I provided? Need to double check if the customer and/or product is removed from the figure regards Stefan --- Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt. -----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.com<mailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com%3cmailto:notifications@github.com%3cmailto:notifications@github.com>>>Gesendet: Montag, 3. Februar 2020 12:55An: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com>>>Cc: stefan-hock20 stefan.hock@web.de<mailto:stefan.hock@web.de<mailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de<mailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de>>>; Author author@noreply.github.com<mailto:author@noreply.github.com<mailto:author@noreply.github.com%3cmailto:author@noreply.github.com<mailto:author@noreply.github.com%3cmailto:author@noreply.github.com%3cmailto:author@noreply.github.com%3cmailto:author@noreply.github.com>>>Betreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com<mailto:/author@noreply.github.com<mailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com<mailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com>>>/stefan.hock@web.de<mailto:/stefan.hock@web.de<mailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de<mailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de>>>/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com>>> Closed #2. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe. — You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE66C6IZMNHJVCP3LM3RBAD3TA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEKTUU5A#issuecomment-581388916, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIEZGJMZCZZF5QHGD5LDRBAD3TANCNFSM4KGCIOQA. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe. — You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE3DADL2LRVGNXZU5NTRBAKH3A5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEKTZMKY#issuecomment-581408299, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIEYBRLXZECBPK6ROEB3RBAKH3ANCNFSM4KGCIOQA. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe. — You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE7L2I4OOCW436VCJXLRBAKOXA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEKTZSAA#issuecomment-581409024, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIE3LZWYEP6GHB2NZSADRBAKOXANCNFSM4KGCIOQA. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe.

ShayHill commented 4 years ago

Thank you.

From: stefan-hock20 notifications@github.com Sent: Monday, February 3, 2020 7:50 AM To: ShayHill/docx2python docx2python@noreply.github.com Cc: Shay Hill shay_public@hotmail.com; State change state_change@noreply.github.com Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2)

that works

I am fine with the figure, please delete all text that is not needed from the document (e.g. header , confidentiallity info etc.)


Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt.

-----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.com<mailto:notifications@github.com>Gesendet: Montag, 3. Februar 2020 14:20An: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com>Cc: stefan-hock20 stefan.hock@web.de<mailto:stefan.hock@web.de>; Author author@noreply.github.com<mailto:author@noreply.github.com>Betreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com<mailto:/author@noreply.github.com>/stefan.hock@web.de<mailto:/stefan.hock@web.de>/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com>

Hmmmm. Can you get it from here? https://github.com/ShayHill/docx2python/issues/2#issuecomment-574220785 -Shay From: stefan-hock20 notifications@github.com<mailto:notifications@github.com> Sent: Monday, February 3, 2020 7:18 AM To: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com> Cc: Shay Hill shay_public@hotmail.com<mailto:shay_public@hotmail.com>; State change state_change@noreply.github.com<mailto:state_change@noreply.github.com> Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2) no --- Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt. -----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.com<mailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com>>Gesendet: Montag, 3. Februar 2020 14:16An: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com>>Cc: stefan-hock20 stefan.hock@web.de<mailto:stefan.hock@web.de<mailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de>>; Author author@noreply.github.com<mailto:author@noreply.github.com<mailto:author@noreply.github.com%3cmailto:author@noreply.github.com>>Betreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com<mailto:/author@noreply.github.com<mailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com>>/stefan.hock@web.de<mailto:/stefan.hock@web.de<mailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de>>/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com>> How about now? If this doesn’t work, I’ll log into github and try something from there. From: stefan-hock20 notifications@github.com<mailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com>> Sent: Monday, February 3, 2020 7:16 AM To: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com>> Cc: Shay Hill shay_public@hotmail.com<mailto:shay_public@hotmail.com<mailto:shay_public@hotmail.com%3cmailto:shay_public@hotmail.com>>; State change state_change@noreply.github.com<mailto:state_change@noreply.github.com<mailto:state_change@noreply.github.com%3cmailto:state_change@noreply.github.com>> Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2) no files attached --- Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt. -----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.com<mailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com%3cmailto:notifications@github.com%3cmailto:notifications@github.com>>>Gesendet: Montag, 3. Februar 2020 14:14An: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com>>>Cc: stefan-hock20 stefan.hock@web.de<mailto:stefan.hock@web.de<mailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de<mailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de>>>; Author author@noreply.github.com<mailto:author@noreply.github.com<mailto:author@noreply.github.com%3cmailto:author@noreply.github.com<mailto:author@noreply.github.com%3cmailto:author@noreply.github.com%3cmailto:author@noreply.github.com%3cmailto:author@noreply.github.com>>>Betreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com<mailto:/author@noreply.github.com<mailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com<mailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com>>>/stefan.hock@web.de<mailto:/stefan.hock@web.de<mailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de<mailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de>>>/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com>>> Here it is. From: stefan-hock20 notifications@github.com<mailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com%3cmailto:notifications@github.com%3cmailto:notifications@github.com>>> Sent: Monday, February 3, 2020 6:21 AM To: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com>>> Cc: Shay Hill shay_public@hotmail.com<mailto:shay_public@hotmail.com<mailto:shay_public@hotmail.com%3cmailto:shay_public@hotmail.com<mailto:shay_public@hotmail.com%3cmailto:shay_public@hotmail.com%3cmailto:shay_public@hotmail.com%3cmailto:shay_public@hotmail.com>>>; State change state_change@noreply.github.com<mailto:state_change@noreply.github.com<mailto:state_change@noreply.github.com%3cmailto:state_change@noreply.github.com<mailto:state_change@noreply.github.com%3cmailto:state_change@noreply.github.com%3cmailto:state_change@noreply.github.com%3cmailto:state_change@noreply.github.com>>> Subject: Re: [ShayHill/docx2python] syntax error when running sample code (#2) Hi Shay can you resend the word file I provided? Need to double check if the customer and/or product is removed from the figure regards Stefan --- Ich habe diese Nachricht mit der WEB.DE Mail App für Windows erstellt. -----Ursprüngliche Nachricht-----Von: "Shay Hill" notifications@github.com<mailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com%3cmailto:notifications@github.com%3cmailto:notifications@github.com<mailto:notifications@github.com%3cmailto:notifications@github.com%3cmailto:notifications@github.com%3cmailto:notifications@github.com%3cmailto:notifications@github.com%3cmailto:notifications@github.com%3cmailto:notifications@github.com%3cmailto:notifications@github.com>>>>Gesendet: Montag, 3. Februar 2020 12:55An: ShayHill/docx2python docx2python@noreply.github.com<mailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com<mailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com%3cmailto:docx2python@noreply.github.com>>>>Cc: stefan-hock20 stefan.hock@web.de<mailto:stefan.hock@web.de<mailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de<mailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de<mailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de%3cmailto:stefan.hock@web.de>>>>; Author author@noreply.github.com<mailto:author@noreply.github.com<mailto:author@noreply.github.com%3cmailto:author@noreply.github.com<mailto:author@noreply.github.com%3cmailto:author@noreply.github.com%3cmailto:author@noreply.github.com%3cmailto:author@noreply.github.com<mailto:author@noreply.github.com%3cmailto:author@noreply.github.com%3cmailto:author@noreply.github.com%3cmailto:author@noreply.github.com%3cmailto:author@noreply.github.com%3cmailto:author@noreply.github.com%3cmailto:author@noreply.github.com%3cmailto:author@noreply.github.com>>>>Betreff: Re: [ShayHill/docx2python] syntax error when running sample code (#2)/author@noreply.github.com<mailto:/author@noreply.github.com<mailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com<mailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com<mailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com%3cmailto:/author@noreply.github.com>>>>/stefan.hock@web.de<mailto:/stefan.hock@web.de<mailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de<mailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de<mailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de%3cmailto:/stefan.hock@web.de>>>>/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com<mailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com%3cmailto:/docx2python@noreply.github.com>>>> Closed #2. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe. — You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE66C6IZMNHJVCP3LM3RBAD3TA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEKTUU5A#issuecomment-581388916, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIEZGJMZCZZF5QHGD5LDRBAD3TANCNFSM4KGCIOQA. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe. — You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE3DADL2LRVGNXZU5NTRBAKH3A5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEKTZMKY#issuecomment-581408299, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIEYBRLXZECBPK6ROEB3RBAKH3ANCNFSM4KGCIOQA. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe. — You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE7L2I4OOCW436VCJXLRBAKOXA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEKTZSAA#issuecomment-581409024, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIE3LZWYEP6GHB2NZSADRBAKOXANCNFSM4KGCIOQA. —You are receiving this because you authored the thread.Reply to this email directly, view it on GitHub, or unsubscribe.

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHubhttps://github.com/ShayHill/docx2python/issues/2?email_source=notifications&email_token=ADAKIE5TWHJT7TWHOVR54FLRBAOHDA5CNFSM4KGCIOQKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEKT4ZZQ#issuecomment-581422310, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADAKIE7PVMHSZLTVJKVHNXDRBAOHDANCNFSM4KGCIOQA.