[Solved] How can I implement a word to PDF conversion in python without importing any libraries? [closed]


Code it from scratch. If you’re not going to use an external library, that is by definition pretty much your only option.

You’ll want to become an expert in the formal specifications for both PDF
and MS Word. Given the complexity and history of each of those, I expect a senior developer will want 6-12 months of experience with each to obtain the necessary understanding.

You should also have 6-12 months’ experience with Python, since you’ll likely need to be familiar with the language in order to define and use all the functions you’ll need. But in just a few years of dedication, you should be able to write the necessary code.

MORE REALISTICALLY, import Python libraries for managing PDFs and MS Word. That should only take a week or two.

0

solved How can I implement a word to PDF conversion in python without importing any libraries? [closed]