Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
98 views

When debugging ironpython app in Visual Studio, I have confirmed the JObject's instance extendObj is not null, why does the extendObj.Remove method throw the error? in the 'Watch 1' window i can ...
angen wen's user avatar
1 vote
1 answer
83 views

I'm encountering an issue with a toggle switch embedded inside a text area that allows users to switch between viewing the top 15 and bottom 15 sales on a bar chart. The logic for toggling between ...
Gaurav Upadhyay's user avatar
0 votes
1 answer
68 views

Is there a way to get Revit Python Shell not to buffer the print statement? For example, with this code, it is clear to see that RPS will not show anything on the screen until after the loop has ...
Michelle's user avatar
0 votes
0 answers
99 views

I am attempting to use IronPython 3.4 with my C# / .NET MAUI project. As IronPython 3.4 is pretty new, I am not sure if there is much support for it yet. As a part of experimentation, I am attempting ...
Ben Underwood's user avatar
0 votes
0 answers
29 views

In my WPF form below, I bound the TextBox x_position to listX's SelectedItem. However, I'm struggling to initialize x_position to 0 before clicking the ajouter_X_Click event. When the event is clicked,...
Redouane TEBBOUNE's user avatar
0 votes
0 answers
44 views

Using pyrevit and IronPython, I've created a user control called IntegerUpDown.py, which I want to use in my main script Grids_script.py. However, I'm encountering the folowing error that I don't know ...
Redouane TEBBOUNE's user avatar
0 votes
0 answers
33 views

I’m using pyrevit, and my WPF form is not being displayed (no error appears on the screen). The XAML layout is defined inline as a string. Interestingly, in another form where the XAML layout is also ...
Redouane TEBBOUNE's user avatar
1 vote
2 answers
57 views

With what command inside code can I understand that IronPython or Python is running?
Dmitry Dronov's user avatar
-1 votes
1 answer
82 views

When I run python code in c#, I get error on line of predict model but it run in python well. I used any way such as python.net, ironPython, Process,... but it did not work: private void ...
soheila's user avatar
  • 13
0 votes
0 answers
28 views

We use IronPython 2.7 in a desktop app, which is used to programmatically run simple Python scripts which might import standard modules like 'sys', 'time', and so on. It retrieves these from the C:\...
Andrew Stephens's user avatar
1 vote
1 answer
39 views

I need to determine if a given character in a given font belongs to a given subrange. For example, U+0041 according to Windows Character Map app belongs to the Latin Subrange. Is there a way to get ...
Michelle's user avatar
0 votes
1 answer
115 views

Our codebase is written mostly in C# with some scripting capabilities using IronPython 3.4. Until recently we based the project on the outdated .Net Framework 4.8 but made the move to .Net 8 recently. ...
Matthias Vietz's user avatar
0 votes
0 answers
94 views

From C# we have to call python function, in this case the nltk lib lemmatize function (which still has no good C# implementation). We call it like this: private string Lemmatize(string word) { using (...
Zoltan Hernyak's user avatar
0 votes
1 answer
182 views

I'm working with some API's that require IronPython and I use JetBrains' Pycharm to code. The only problem is that, after formatting my PC, I can't add the IronPython 3.4 interpreter to it. I tried ...
rgheno's user avatar
  • 1
0 votes
1 answer
83 views

Im creating a Windows Forms Project based on C# using python scripts. But when click the button, which should start a python script i have an error "No module named 'openpyxl'" private void ...
Argentrix's user avatar
0 votes
1 answer
91 views

I have no clue what i am doing wrong I have ironpython and winforms installed and vscode sees both I don't have any options for IronPython Project when creating a new project, what can i do to have ...
Fucx's user avatar
  • 1
0 votes
0 answers
43 views

Heads Up: I am using Visual Studio 2022 My python code consists of a machine learning model which is getting trained. So it has python libraries imported within the Python code (Ex: Import numpy as ...
Aksh's user avatar
  • 1
0 votes
1 answer
345 views

I'm working on a spotfire script to build up a data table row by row from a data table each time I press a button. At the same time I'm replacing values in the data table. The newly generated table is ...
dogfrog's user avatar
  • 21
2 votes
3 answers
250 views

I'm writing scripts for Ansys Mechanical, which are written in IronPython 2.7.0.40. In my script, I need to assign a property to ContactTimeStepControls.None. Note that the None here is NOT the None ...
tlewis3348's user avatar
0 votes
2 answers
88 views

In this part of the talk on GIL by Larry Hastings, there is an explanation about how ironclad provides C-extension compatibility with IronPython. This is the interesting part of the talk: We ...
Saleh's user avatar
  • 1,962
0 votes
0 answers
39 views

I'm not sure, what I did wrong: So, I started a thread with the ThreadStart()-delegate from the .net-libary. It's delegating to another method. In the method I have a for-loop. But when I'm looking in ...
Hoernchen117's user avatar
0 votes
1 answer
132 views

We have a struct called Vector3D and for some methods we want the (default) zero vector as default argument but for others we want a different, non-default vector (say, a unit vector in x ditrection) ...
Amos Egel's user avatar
  • 1,240
1 vote
0 answers
91 views

I have 2 Python Scripts embedded into my C# Application. Essentially; 1 python script is a Decode Script and the other Script is to Encode. The idea that I have is; how can I execute these python ...
user23300548's user avatar
1 vote
0 answers
195 views

I'm creating a game on Unity 2023.2.2f1 where the player writes code and I need to execute the code as a Python file. Is it possible to do that with IronPython? I connected it but I can't seem to get ...
juris421's user avatar
2 votes
0 answers
139 views

I'm trying to export the visualizations in Spotfire into a Pre-made company Powerpoint, where specific visualizations going into specific places in the Powerpoint. I've tried following this article: &...
Mattia Sferrazza's user avatar
0 votes
1 answer
317 views

I've installed IronPython 3.4 (https://github.com/IronLanguages/ironpython3/releases/tag/v3.4.1) and I'm trying to run several font-related python scripts that depend upon an active VENV (FontTools, ...
fmotion1's user avatar
  • 577
0 votes
1 answer
338 views

I am trying to reload an individual Data Operations in Spotfire Using IronPython Scripting but I can't. I found a solution on TIBCO community but i t doesn't work. it's this one: from Spotfire.Dxp....
user23139167's user avatar
0 votes
2 answers
726 views

I am trying to run a simple python code using C# using Iron Python Package. Why it throws the below error (attached in screenshot) The code runs fine if i don't import libraries, but it throws error ...
Nayan Nirvikar's user avatar
0 votes
1 answer
89 views

I imported IronPython3.4.1 into my unity project and I have received these error does anyone know how to fix this? I tried deleting and re importing IronPython but that didn't work and I do now know ...
Randomguy660's user avatar
0 votes
1 answer
56 views

I am using IronPython to modify an Autocad file using COM/ActiveX. Reading information from the file is going well but now I want to move a line in the cad file. The Move command is looking for two ...
Michelle's user avatar
0 votes
1 answer
863 views

I am programming in Python 3 in VS Code, using Python.NET to interface with a .NET based API (AudioPrecision.API.dll). I want to use autocomplete similar to Intellisense in Visual Studio, to make it ...
Ben's user avatar
  • 1
1 vote
1 answer
383 views

When trying this basic code snippet to test out a progress bar, I get error message "SystemError: Attempt to execute a ProgressOperation in the context of a document transaction.". from ...
Zegher V's user avatar
  • 139
0 votes
1 answer
110 views

Table1 is loaded as a data source, then undergoes some transformations (replace columns, join columns, etc.) from other tables and then outputs Table1Final. One of the transformations pivots ColumnA ...
Chris's user avatar
  • 515
0 votes
1 answer
86 views

I am reading data in from CSV text file where each line in the file is a distinct record. In that record is the name of a text style which I need to convert to the elementID of a TextNoteType. I have ...
Michelle's user avatar
1 vote
1 answer
231 views

I am trying to create a sample dll with a function that adds two integer. I created a dll for that. Process to create the dll ===> Used VS2022 and created dll with .Net core6 sample code used ...
Rajesh Swain's user avatar
0 votes
1 answer
2k views

in Spotfire I'm trying to write a string into marked rows of a table column. from Spotfire.Dxp.Data import * dataTable = Document.Data.Tables["myTable"] cursor = DataValueCursor....
dogfrog's user avatar
  • 21
0 votes
0 answers
287 views

I am having an issue importing a .dll library in Python 3.11. For IronPython, the import is successfull and looks as follows (example is for using the API of a structural analysis package called Robot ...
Björn Steinhagen's user avatar
2 votes
0 answers
438 views

After banging my head for awhile trying to figure out how to change - using the Revit API - the linestyle of an existing detail line to another given the name of the linestyle, I finally figured it ...
Michelle's user avatar
0 votes
1 answer
414 views

This can be done manually by dragging the borders, but is there a way to set the width of the visualization (not the columns within the visualization) to a set width?
Zegher V's user avatar
  • 139
0 votes
1 answer
1k views

I am executing a data function via ironpython, and the input is predefined (a column from an existing data table). Now I would like to filter this input by applying a filtering scheme to it. How do I ...
Zegher V's user avatar
  • 139
0 votes
1 answer
337 views

In my scatterplot visualization, I added a "Curve from Data Table" with a custom expression that references variables from this data table. How can I do this via ironpython?
Zegher V's user avatar
  • 139
1 vote
0 answers
55 views

I would like to install Python Log Indenter (Document Page ) for use with RevitPytonShell (IronPython version). The docs for Python Log Indenter indicate that PIP be used for installation but I am not ...
Michelle's user avatar
0 votes
1 answer
306 views

The result of my .AsListBoxFilter is None, as per the error message AttributeError: 'NoneType' object has no attribute 'SetValues'. I see no reason why this would fail, since my data is categorical. ...
Zegher V's user avatar
  • 139
1 vote
1 answer
150 views

I want to run a Python application with IronPython. This is the error: Unhandled exception. IronPython.Runtime.Exceptions.ImportException: Cannot import name IntFlag at Microsoft.Scripting.Runtime....
michael aa's user avatar
0 votes
1 answer
374 views

I am trying to install IronPython On Ubuntu 22.04 using Mono. I've followed each of the steps mentioned here - https://davidtavarez.github.io/2018/installing_ironpython/, but I'm still unable to ...
suman paul's user avatar
0 votes
0 answers
88 views

i use ironPython last version 3.4.1 in Nuget (https://www.nuget.org/packages/IronPython/3.4.1#readme-body-tab) so, i got simple .py file with that code (let's name it test.py): import nltk def ...
Kate 's user avatar
  • 33
0 votes
0 answers
169 views

I want to use iron python with visual code in my home pc, the problem is that I can not, the weird thing is that in the laptop which I work I can do it, I do not know what could be missing in my home ...
Gilberto GZ's user avatar
0 votes
1 answer
145 views

I have a data table that I put into a script in a button. It takes the table and formats various visualizations on it, but after it goes through, the items in the filter bar on the right disappears ...
intergalactic's user avatar
0 votes
1 answer
274 views

I am attempting to attach the VS Code debugger to an application that is hosting IronPython from a nuget package. This does not work as Visual Studio Code returns this error: This is my Script.cs ...
user8934733's user avatar
0 votes
1 answer
84 views

I've upgraded from IronPython 2 to IronPython 3, but after upgrading I am no longer able to get output. My class: public class UnityLogWriter : StreamWriter { private readonly Action<string> ...
Riley B's user avatar
  • 15

1
2 3 4 5
53