This repository was archived by the owner on Jul 14, 2023. It is now read-only.

Description
Problem:
azure.cosmosdb.table not found when azure-cosmosdb-table is installed via setuptools in development mode:
import azure.cosmosdb.table
ModuleNotFoundError: No module named 'azure.cosmosdb.table'
Quick fix:
Remove azure_cosmosdb_nspkg-2.0.2-py3.7.egg/azure/cosmosdb/__init__.py from site-packages folder:
import os, azure.cosmosdb
os.remove(str(azure.cosmosdb.__file__))