├── .devcontainer ├── Dockerfile ├── devcontainer.json └── requirements.txt ├── .gitignore ├── LICENSE ├── README.md ├── df_row_to_multiple_files.py ├── eventhubs_mongo.py ├── eventhubs_xml2json.py ├── extract_eventhubs_json_schema.py ├── generate_large_time_series_csv.py ├── graphWriteCosmosDB.scala ├── graph_write_cosmosdb.py ├── infer_json_column_schema.py ├── innings_per_test_hundred.ipynb ├── iotHubToPowerBI.scala ├── iothub_to_cosmosdb.py ├── machine_availability.py ├── managedTableCosmosDB.sql ├── mountAzureStorage.scala ├── numbeo.ipynb └── pakistan_census.html /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/requirements.txt: -------------------------------------------------------------------------------- 1 | html5lib 2 | jupyter 3 | lxml 4 | matplotlib 5 | pandas -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/README.md -------------------------------------------------------------------------------- /df_row_to_multiple_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/df_row_to_multiple_files.py -------------------------------------------------------------------------------- /eventhubs_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/eventhubs_mongo.py -------------------------------------------------------------------------------- /eventhubs_xml2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/eventhubs_xml2json.py -------------------------------------------------------------------------------- /extract_eventhubs_json_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/extract_eventhubs_json_schema.py -------------------------------------------------------------------------------- /generate_large_time_series_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/generate_large_time_series_csv.py -------------------------------------------------------------------------------- /graphWriteCosmosDB.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/graphWriteCosmosDB.scala -------------------------------------------------------------------------------- /graph_write_cosmosdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/graph_write_cosmosdb.py -------------------------------------------------------------------------------- /infer_json_column_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/infer_json_column_schema.py -------------------------------------------------------------------------------- /innings_per_test_hundred.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/innings_per_test_hundred.ipynb -------------------------------------------------------------------------------- /iotHubToPowerBI.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/iotHubToPowerBI.scala -------------------------------------------------------------------------------- /iothub_to_cosmosdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/iothub_to_cosmosdb.py -------------------------------------------------------------------------------- /machine_availability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/machine_availability.py -------------------------------------------------------------------------------- /managedTableCosmosDB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/managedTableCosmosDB.sql -------------------------------------------------------------------------------- /mountAzureStorage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/mountAzureStorage.scala -------------------------------------------------------------------------------- /numbeo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/numbeo.ipynb -------------------------------------------------------------------------------- /pakistan_census.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhassaanahmed/databricks-notebooks/HEAD/pakistan_census.html --------------------------------------------------------------------------------