Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I need to import this python project to Unity3d. How can i do that? Based on my search, i see that there are plugins like this. However, i need to perform this tasks without using any plugin? How should i do that, i am experienced in Unity but i have no python experience? Can i get .dlls from python project so that i can use the .dlls in Unity. Or should i do something else?
If someone lead me, i'd appereciate.
I'm not sure if you can. I know that's not what you're looking for, and don't let me discourage you, but start looking for another answer. I've been trying for a while now, and even with plugins the best I could do cost about $40, and that guy spent about a year working on it. Maybe try manually converting it to C#?
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I started working on some beginner projects and games to test my abilities.
I found that all I was doing is simply writing a code and seeing the ugly output next to it (in the interactive window). The code works, but that's not how I want a normal user to interfere with it.
I'm looking for a way to display my python program properly to a user. Is there some sort of interface manipulating that I should learn in order to accomplish that? thanks.
It sounds like you're seeking to build a GUI for your programs.
In several of my early projects, I used the built-in Tkinter module to accomplish what you're suggesting. It may not give you the most modern-looking GUI, but it's nice to use due to it being included with Python by default and the abundance of documentation and tutorials.
There are tons of great videos on YT that walk you through step-by-step on everything from pop-up, dialog-box messages, to full on user-input, menu-laden GUIs. Just search "tkinter tutorials".
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Okay, so I'm new to coding, so don't kill me. I just started about a year ago and I use repl.it. I want to learn how to save user data. Also I want to know what python IDE is best suited for this.
If you want human-readable cross-programming-language data files, check out the json module.
If you want data that is faster, but that only python can read, check out the pickle module.
About your IDE Question:
From my point of view, you don`t need an full featured IDE at this point, though PyCharm is quite nice, despite the fact that it's written in java xD... (and it has a ton oof features that will be noise for a beginner (ME 2 ...)) you can make sth. like VS Code quite easy to sth. like a lightweight IDE. If you don't like Microsoft, go for Sublime, or Atom (both also Editors with nice plugins and extensions for Python and other languages...)
If you want to go for scientific python features: check out https://www.spyder-ide.org/
Have fun :-)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I am trying to communicate with an Allen Bradley L16ER PLC via python. What I've found online says that I should use either CPPPO or pycomm modules to accomplish this. I have looked for a good source of documentation for these, and was unable to find one. Is there a good place to find an explanation of the basics of how to use either of these? Also, is there an alternative solution that may work better?
To further define my problem, let's define understanding of using this module into three layers.
Understanding Python.
Understanding how PLCs communicate.
Understanding how to use these modules.
While I understand level 1, I don't understand level 2. This makes it very hard to understand level 3.
You can look at pylogix, it has some example code for it:
https://github.com/dmroeder/pylogix
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I would like to know whether there is something equivalent to R-markdown in Python which can help me do reproducible research.
Please note: I'm not interested in IPython Notebooks as an answer.
I want to have the syntactic joy of r-markdown with code in python. I know that one can supply engine="python" in r-markdown and get going but the problem comes when you want to include plots produced using matplotlib in the reproducible doc by simply writing plt.show() where plt is alias to matplotlib.pyplot.
Do you know about any such modules / tools in python which can help me achieve this? I want to use such tools with Spyder / IntelliJ.
I would also like the option similar to echo=FALSE to be present in such a tool.
If no such project exists, then do you guys know about someone / some organization who are working on such a thing.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I would like to generate Python Expect (pexpect) code automatically, does something like autoexpect exist for pexpect?
I have written one:
https://github.com/ianmiell/autopexpect
which works in very basic form. Please contribute if you can!
Use it much the same way as autoexpect:
./autoexpect
[your session]
[exit session]
./script.py
As with autoexpect, you may need to fiddle with the produced script.
Not really, AFAIK, but you could use expy AKA expectpy, rather than pexpect, if you depend on autoexpect's functionality. There's nothing conceptually standing in the way of implementing a pyautoexpect -- it's just that, as far as I know, nobody's taken the trouble of doing it (since I've never felt a need for autoexpect myself, I'm not really surprised;-).