Server-Side PDF Conversion with LibreOffice and IIS

|
| By Sahil Kumar

When building web applications on Windows servers using IIS, you may occasionally need to utilize locally installed desktop applications — like LibreOffice — for server-side tasks. A common example is converting Microsoft Word documents into PDF format. In this post,

How to Delete files from azure storage using python

| By Webner

First, install azure-storage-blob module. pip3 intall azure-storage-blob Then import ContainerClient: from azure.storage.blob import ContainerClient After that get your Credentials “Connection string” from the Microsoft official site https://portal.azure.com/#home inside the storage account option. After that just follow the below-mentioned code: from