Revit API Resources You Didn't Know About.

Поделиться
HTML-код
  • Опубликовано: 8 сен 2024
  • 📙 Get Free E-Book: Beginner's Guide to Revit API:
    learnrevitapi....
    🎯 Interested in Learning Revit API in the fastest way possible?
    Join Learn Revit API Course: learnrevitapi.com
    --------------------------------------------------
    🔗 Links from Video:
    Blog Post Resources: learnrevitapi....
    --------------------------------------------------
    📝 Video Summary:
    If you ever felt stuck learning Revit API, then I've got good news for you. I will show you a lot of Revit API resources that will help you with your code.
    There are different kind of resources that will help you Learn Revit API, find code samples, show lots of reusable code and also places where you can ask for even more help. I'm sure you will find some resources that you haven't heard before and they might save you hours in the future.
    --------------------------------------------------
    ⌨️ Happy Coding!
    Tags: #LearnRevitAPI #RevitAPI #pyRevit

Комментарии • 12

  • @jmco1045
    @jmco1045 3 месяца назад +2

    The LLM chatbot arena is a fine one.
    I also like your snippets page!

    • @ErikFrits
      @ErikFrits  3 месяца назад

      I also found Chatbot Arena a very interesting resource!
      So easy to test different models quickly without making lots of accounts

  • @jasontian9450
    @jasontian9450 3 месяца назад +3

    Hi Erik, can you push a Tutorial of how to host our own tooltab online?
    i have made a company tool tab for pyrevit, but it takes forever to launch any script since its on our company server, and most of the time, it goes through our VPN.
    so basically i have our server hosting all of our dynamo packages, as well as our dynamo/ python scripts. if we can host everything on github, and install the updates if there is a new version, it would be awesome.

    • @ErikFrits
      @ErikFrits  3 месяца назад

      Hi,
      Thanks for suggestion, I've added it to the list ;)
      In my experience, I actually liked keeping pyRevit extension on the server so everyone points in the same folder, so I only needed to update it in 1 place, instead of updating it on each machine individually. But since you use VPN and pyRevit scripts take long time to execute, then it might justify it.

  • @RajeshKumar-vv8zo
    @RajeshKumar-vv8zo 3 месяца назад

    Thanks for all those resources,

    • @ErikFrits
      @ErikFrits  3 месяца назад +1

      Happy to Help!

  • @SebastianGuzman-dt3kj
    @SebastianGuzman-dt3kj 3 месяца назад +2

    Really cool content. Thanks Erik

  • @maxxtread533
    @maxxtread533 3 месяца назад +1

    Eric, hi, I've been watching you for a long time! Could you give recommendations, or in the future record a video on how to connect external libraries, for example, numpy, pandas to scripts. The error constantly pops up that there are no such modules. Although the path is specified in the Windows variable, the necessary libraries are installed, and the script is also run with #! python 3, but this does not give any result, the latest version of python is installed. Thus, the hands are tied and a lot of things cannot be done.

    • @ErikFrits
      @ErikFrits  3 месяца назад +1

      Great Suggestion, Max!
      I'll look into that, it's a very requested topic about external packages.
      Meanwhile, you can try using sys.path.append to manually push the path to where your numpy is located. Maybe it will force it to find the right path.

  • @user-zx6up8gu3d
    @user-zx6up8gu3d 3 месяца назад +1

    Hi Erik! thank you for this sublime video.
    I encounter a problem generating a Filled Region schedule and also how to export a TextNote in CSV or txt format?
    I would be very grateful for anything that could help me resolve these issues.
    I use python and run the script with pyRevit.

    • @ErikFrits
      @ErikFrits  3 месяца назад

      Happy To Help!
      Did you get any errors or where did you get stuck with your problems?
      - What was the problem with generating schedule?
      - For exporting TextNotes in CSV you can use csv python module. You just need to get and structure your data and then export in a csv format. ChatGPT will be able to help you write the code if you never used csv package ;)