Skip to content

Instantly share code, notes, and snippets.

View Thomas84's full-sized avatar

Thomas Vogt Thomas84

View GitHub Profile
@AleksandrPidlozhevich
AleksandrPidlozhevich / ExportModels.cs
Last active April 10, 2025 17:49
RevitServerExport
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Autodesk.Revit.DB;
using System.IO;
using Autodesk.Revit.ApplicationServices;
using Autodesk.Revit.UI.Events;
@giobel
giobel / *Dynamo Python snippets*
Last active January 18, 2024 20:44
Dynamo-Python
# collection of Dynamo Python functions.
# credits: archi-lab, MEPover, Bimorph, Clockwork, Rhythm and many more
@mnelson7982
mnelson7982 / ScheduleExporter.cs
Last active November 13, 2024 19:27
Export All Revit Schedules to CSV. Exports to the User's MyDocuments folder under RVT_Schedules \ {{PROJECT NAME}}\
using Autodesk.Revit.UI;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI.Selection;
using System.Collections.Generic;
using System.Linq;
using System.IO;
using System.Text.RegularExpressions;
using System.Text;
namespace BasicMacros