Das Wissen aller Anwender nutzen

Im Allplan Connect Forum tauschen sich Anwender aus, geben wertvolle Tipps oder beraten sich bei ganz konkreten Aufgabenstellungen − auch international.
Und damit wirklich keine Frage unbeantwortet bleibt, unterstützen die Mitarbeiter des Technischen Supports ebenfalls aktiv das Forum.

Es erwarten Sie:

  • Foren-Vielfalt aus CAD Architektur, CAD Ingenieurbau uvm.
  • Tipps von User für User
  • international: Deutsch, Englisch, Italienisch, Französisch und Tschechisch

Melden Sie sich jetzt an und diskutieren Sie mit!

Zur Registrierung

[Frage] Import additional libraries [Gelöst]

Schlagworte:
  • Allplan
  • PythonParts
  • Plugins

Hello AllPlan community,

I would like to know about the possibility of bringing additional python libraries to work with Allplan API, e.g. Can I import pandas, numpy, matplotlib, among others ?
Thanks in advance for your help!

Lösung anzeigen Lösung verbergen

Hello!
Yes, you can use additional packages in your PythonPart scripts. First of all, install your package. There are two ways to do it:

  • manually by saving the files in ...\Prg\Python\lib\site-packages.
  • using the PythonPart InstallPythonPackage located in …\etc\Examples\PythonParts\ToolsAndStartExamples

then you import the packege in your script as usual using import ___ statement

I hope, I could help you!

Hello!
Yes, you can use additional packages in your PythonPart scripts. First of all, install your package. There are two ways to do it:

  • manually by saving the files in ...\Prg\Python\lib\site-packages.
  • using the PythonPart InstallPythonPackage located in …\etc\Examples\PythonParts\ToolsAndStartExamples

then you import the packege in your script as usual using import ___ statement

I hope, I could help you!