├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── concepts ├── forLoopExample.py ├── forWhileLoopCircles.py ├── ifSwitch ├── listAddItemToEnd.py ├── listAddItemToFront.py ├── listChunking.py ├── listDropItems.py ├── listFlatten.py ├── listGetItemAtIndex.py ├── listMinMaxItems.py ├── listSlicingFlatList.py ├── listSlicingListOfLists.py ├── listTranspose.py ├── listTransposeListComprehension.py ├── listTransposeMap.py ├── listTransposeUnpacking.py ├── membershipBoolean.py ├── numberRangeDouble.py ├── numberRanges.py ├── numberSequences.py ├── operatorsArithmetic.py ├── operatorsAssignment.py ├── operatorsComparison.py ├── whileLoopExample.py ├── whileTrueExample.py └── xMasTree.py ├── dynamoAPI ├── dynamoAPICurrentGraphName.py ├── dynamoAPICurrentWorkspaceInfo.py ├── dynamoGetPackageInfoFromFilePath.py ├── dynamoGetUserPackageLocation.py └── dynamologger.py ├── helpers ├── helperDirDic.py ├── helpersCheckInPortsConnected.py ├── helpersContinouslyAddOne.py ├── helpersConvertInputToList.py └── helpersDir ├── images ├── DivingDeeper_ABeginnersLookAtPythonInDynamo_AU_London2018.pdf ├── csNotPlane.gif ├── elementPreDelete01.gif ├── gyroidLowRes.gif ├── helpersDir.gif ├── wrappedUnwrapped01.JPG ├── wrappedUnwrapped02.JPG └── wrappedUnwrapped03.png ├── pythonTemplates ├── RevitPythontemplateFile └── UsefulModules ├── refactored └── refactoredCoreAttractorPoint.py ├── revitAPI ├── CeilingViewsByRooms.py ├── CenterRoom.py ├── CollectRoomByStatus.py ├── CopyPasteFilters.py ├── CreateBeamByModelCurves.py ├── CreateDuctsByModelCurves.py ├── CreateFloorPlansByRooms.py ├── CreateStructuralBeamWithoutElementBinding.py ├── CreateThreeDViewsByRooms.py ├── CreateWallSweep.py ├── DeleteByCategory.py ├── GetAllPerformanceMessages.py ├── GetAllWorksets.py ├── GetElementFromLinkDocument.py ├── GetFabElementParameterValue.py ├── GetLinkDocuments.py ├── GetParameterStorageType ├── HideUnhideLinkLevelsGrids.py ├── IsometricViewsBySectionViews.py ├── PurgeUnused.py ├── ReloadAllLinkDocuments.py ├── RoomTagMoveToRoomLocation.py ├── SetParametersToNull(ListOfParameters) ├── SetParametersToNull(SingleParameter) ├── WallPaintRemove.py ├── applicationGetAllFailureMessages.py ├── collectCurvesByLineStyleAndType.py ├── elementPreDelete.py ├── filteredElementCollectorAllElements.py ├── filteredElementCollectorAllElementsAtLevel.py ├── filteredElementCollectorAllFamilyInstancesOfCategoryInActiveView.py ├── filteredElementCollectorByParameter.py ├── filteredElementCollectorByParameterDouble.py ├── filteredElementCollectorByParameterString.py ├── rdsCsvExporter.py ├── requestViewChange.py ├── roomSvgExporter.py ├── setDimensionAboveTextValue.py ├── viewRemoveCropRegionShape.py └── xmlSvgExporter.py └── workflow ├── colorByGroup.py ├── groupByKey.py ├── listRemoveNulls.py ├── listReplaceNulls.py ├── openHelpFile.py ├── powerbiCatToM.py ├── roundDoublesAsStrings.py ├── sortByIndexValue.py └── sortByIndexValueReversed.py /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/README.md -------------------------------------------------------------------------------- /concepts/forLoopExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/forLoopExample.py -------------------------------------------------------------------------------- /concepts/forWhileLoopCircles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/forWhileLoopCircles.py -------------------------------------------------------------------------------- /concepts/ifSwitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/ifSwitch -------------------------------------------------------------------------------- /concepts/listAddItemToEnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/listAddItemToEnd.py -------------------------------------------------------------------------------- /concepts/listAddItemToFront.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/listAddItemToFront.py -------------------------------------------------------------------------------- /concepts/listChunking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/listChunking.py -------------------------------------------------------------------------------- /concepts/listDropItems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/listDropItems.py -------------------------------------------------------------------------------- /concepts/listFlatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/listFlatten.py -------------------------------------------------------------------------------- /concepts/listGetItemAtIndex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/listGetItemAtIndex.py -------------------------------------------------------------------------------- /concepts/listMinMaxItems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/listMinMaxItems.py -------------------------------------------------------------------------------- /concepts/listSlicingFlatList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/listSlicingFlatList.py -------------------------------------------------------------------------------- /concepts/listSlicingListOfLists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/listSlicingListOfLists.py -------------------------------------------------------------------------------- /concepts/listTranspose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/listTranspose.py -------------------------------------------------------------------------------- /concepts/listTransposeListComprehension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/listTransposeListComprehension.py -------------------------------------------------------------------------------- /concepts/listTransposeMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/listTransposeMap.py -------------------------------------------------------------------------------- /concepts/listTransposeUnpacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/listTransposeUnpacking.py -------------------------------------------------------------------------------- /concepts/membershipBoolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/membershipBoolean.py -------------------------------------------------------------------------------- /concepts/numberRangeDouble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/numberRangeDouble.py -------------------------------------------------------------------------------- /concepts/numberRanges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/numberRanges.py -------------------------------------------------------------------------------- /concepts/numberSequences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/numberSequences.py -------------------------------------------------------------------------------- /concepts/operatorsArithmetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/operatorsArithmetic.py -------------------------------------------------------------------------------- /concepts/operatorsAssignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/operatorsAssignment.py -------------------------------------------------------------------------------- /concepts/operatorsComparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/operatorsComparison.py -------------------------------------------------------------------------------- /concepts/whileLoopExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/whileLoopExample.py -------------------------------------------------------------------------------- /concepts/whileTrueExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/whileTrueExample.py -------------------------------------------------------------------------------- /concepts/xMasTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/concepts/xMasTree.py -------------------------------------------------------------------------------- /dynamoAPI/dynamoAPICurrentGraphName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/dynamoAPI/dynamoAPICurrentGraphName.py -------------------------------------------------------------------------------- /dynamoAPI/dynamoAPICurrentWorkspaceInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/dynamoAPI/dynamoAPICurrentWorkspaceInfo.py -------------------------------------------------------------------------------- /dynamoAPI/dynamoGetPackageInfoFromFilePath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/dynamoAPI/dynamoGetPackageInfoFromFilePath.py -------------------------------------------------------------------------------- /dynamoAPI/dynamoGetUserPackageLocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/dynamoAPI/dynamoGetUserPackageLocation.py -------------------------------------------------------------------------------- /dynamoAPI/dynamologger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/dynamoAPI/dynamologger.py -------------------------------------------------------------------------------- /helpers/helperDirDic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/helpers/helperDirDic.py -------------------------------------------------------------------------------- /helpers/helpersCheckInPortsConnected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/helpers/helpersCheckInPortsConnected.py -------------------------------------------------------------------------------- /helpers/helpersContinouslyAddOne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/helpers/helpersContinouslyAddOne.py -------------------------------------------------------------------------------- /helpers/helpersConvertInputToList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/helpers/helpersConvertInputToList.py -------------------------------------------------------------------------------- /helpers/helpersDir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/helpers/helpersDir -------------------------------------------------------------------------------- /images/DivingDeeper_ABeginnersLookAtPythonInDynamo_AU_London2018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/images/DivingDeeper_ABeginnersLookAtPythonInDynamo_AU_London2018.pdf -------------------------------------------------------------------------------- /images/csNotPlane.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/images/csNotPlane.gif -------------------------------------------------------------------------------- /images/elementPreDelete01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/images/elementPreDelete01.gif -------------------------------------------------------------------------------- /images/gyroidLowRes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/images/gyroidLowRes.gif -------------------------------------------------------------------------------- /images/helpersDir.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/images/helpersDir.gif -------------------------------------------------------------------------------- /images/wrappedUnwrapped01.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/images/wrappedUnwrapped01.JPG -------------------------------------------------------------------------------- /images/wrappedUnwrapped02.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/images/wrappedUnwrapped02.JPG -------------------------------------------------------------------------------- /images/wrappedUnwrapped03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/images/wrappedUnwrapped03.png -------------------------------------------------------------------------------- /pythonTemplates/RevitPythontemplateFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/pythonTemplates/RevitPythontemplateFile -------------------------------------------------------------------------------- /pythonTemplates/UsefulModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/pythonTemplates/UsefulModules -------------------------------------------------------------------------------- /refactored/refactoredCoreAttractorPoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/refactored/refactoredCoreAttractorPoint.py -------------------------------------------------------------------------------- /revitAPI/CeilingViewsByRooms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/CeilingViewsByRooms.py -------------------------------------------------------------------------------- /revitAPI/CenterRoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/CenterRoom.py -------------------------------------------------------------------------------- /revitAPI/CollectRoomByStatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/CollectRoomByStatus.py -------------------------------------------------------------------------------- /revitAPI/CopyPasteFilters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/CopyPasteFilters.py -------------------------------------------------------------------------------- /revitAPI/CreateBeamByModelCurves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/CreateBeamByModelCurves.py -------------------------------------------------------------------------------- /revitAPI/CreateDuctsByModelCurves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/CreateDuctsByModelCurves.py -------------------------------------------------------------------------------- /revitAPI/CreateFloorPlansByRooms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/CreateFloorPlansByRooms.py -------------------------------------------------------------------------------- /revitAPI/CreateStructuralBeamWithoutElementBinding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/CreateStructuralBeamWithoutElementBinding.py -------------------------------------------------------------------------------- /revitAPI/CreateThreeDViewsByRooms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/CreateThreeDViewsByRooms.py -------------------------------------------------------------------------------- /revitAPI/CreateWallSweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/CreateWallSweep.py -------------------------------------------------------------------------------- /revitAPI/DeleteByCategory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/DeleteByCategory.py -------------------------------------------------------------------------------- /revitAPI/GetAllPerformanceMessages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/GetAllPerformanceMessages.py -------------------------------------------------------------------------------- /revitAPI/GetAllWorksets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/GetAllWorksets.py -------------------------------------------------------------------------------- /revitAPI/GetElementFromLinkDocument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/GetElementFromLinkDocument.py -------------------------------------------------------------------------------- /revitAPI/GetFabElementParameterValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/GetFabElementParameterValue.py -------------------------------------------------------------------------------- /revitAPI/GetLinkDocuments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/GetLinkDocuments.py -------------------------------------------------------------------------------- /revitAPI/GetParameterStorageType: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/GetParameterStorageType -------------------------------------------------------------------------------- /revitAPI/HideUnhideLinkLevelsGrids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/HideUnhideLinkLevelsGrids.py -------------------------------------------------------------------------------- /revitAPI/IsometricViewsBySectionViews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/IsometricViewsBySectionViews.py -------------------------------------------------------------------------------- /revitAPI/PurgeUnused.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/PurgeUnused.py -------------------------------------------------------------------------------- /revitAPI/ReloadAllLinkDocuments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/ReloadAllLinkDocuments.py -------------------------------------------------------------------------------- /revitAPI/RoomTagMoveToRoomLocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/RoomTagMoveToRoomLocation.py -------------------------------------------------------------------------------- /revitAPI/SetParametersToNull(ListOfParameters): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/SetParametersToNull(ListOfParameters) -------------------------------------------------------------------------------- /revitAPI/SetParametersToNull(SingleParameter): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/SetParametersToNull(SingleParameter) -------------------------------------------------------------------------------- /revitAPI/WallPaintRemove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/WallPaintRemove.py -------------------------------------------------------------------------------- /revitAPI/applicationGetAllFailureMessages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/applicationGetAllFailureMessages.py -------------------------------------------------------------------------------- /revitAPI/collectCurvesByLineStyleAndType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/collectCurvesByLineStyleAndType.py -------------------------------------------------------------------------------- /revitAPI/elementPreDelete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/elementPreDelete.py -------------------------------------------------------------------------------- /revitAPI/filteredElementCollectorAllElements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/filteredElementCollectorAllElements.py -------------------------------------------------------------------------------- /revitAPI/filteredElementCollectorAllElementsAtLevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/filteredElementCollectorAllElementsAtLevel.py -------------------------------------------------------------------------------- /revitAPI/filteredElementCollectorAllFamilyInstancesOfCategoryInActiveView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/filteredElementCollectorAllFamilyInstancesOfCategoryInActiveView.py -------------------------------------------------------------------------------- /revitAPI/filteredElementCollectorByParameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/filteredElementCollectorByParameter.py -------------------------------------------------------------------------------- /revitAPI/filteredElementCollectorByParameterDouble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/filteredElementCollectorByParameterDouble.py -------------------------------------------------------------------------------- /revitAPI/filteredElementCollectorByParameterString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/filteredElementCollectorByParameterString.py -------------------------------------------------------------------------------- /revitAPI/rdsCsvExporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/rdsCsvExporter.py -------------------------------------------------------------------------------- /revitAPI/requestViewChange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/requestViewChange.py -------------------------------------------------------------------------------- /revitAPI/roomSvgExporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/roomSvgExporter.py -------------------------------------------------------------------------------- /revitAPI/setDimensionAboveTextValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/setDimensionAboveTextValue.py -------------------------------------------------------------------------------- /revitAPI/viewRemoveCropRegionShape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/viewRemoveCropRegionShape.py -------------------------------------------------------------------------------- /revitAPI/xmlSvgExporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/revitAPI/xmlSvgExporter.py -------------------------------------------------------------------------------- /workflow/colorByGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/workflow/colorByGroup.py -------------------------------------------------------------------------------- /workflow/groupByKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/workflow/groupByKey.py -------------------------------------------------------------------------------- /workflow/listRemoveNulls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/workflow/listRemoveNulls.py -------------------------------------------------------------------------------- /workflow/listReplaceNulls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/workflow/listReplaceNulls.py -------------------------------------------------------------------------------- /workflow/openHelpFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/workflow/openHelpFile.py -------------------------------------------------------------------------------- /workflow/powerbiCatToM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/workflow/powerbiCatToM.py -------------------------------------------------------------------------------- /workflow/roundDoublesAsStrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/workflow/roundDoublesAsStrings.py -------------------------------------------------------------------------------- /workflow/sortByIndexValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/workflow/sortByIndexValue.py -------------------------------------------------------------------------------- /workflow/sortByIndexValueReversed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amoursol/dynamoPython/HEAD/workflow/sortByIndexValueReversed.py --------------------------------------------------------------------------------