Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am looking for a hex editor or a hex editing component written in Python. So far, the only thing I have come up with is YaHEbwinPy, but it crashes with "pure virtual function call"
upon exit when I finally got it to run.
Have you tried PSPad
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
If I have a program in c++, can I add my own function my_fun() written in Python to this program? Is any simple tutorial how can I do that? I found some suggestions about boost and built-in functions, but I can't find how add my own function
There is information in the Python documentation about embedded Python in C++ programs.
Here is the Python 2 version of the documentation and here is the Python 3 version
Without knowing how simple or complex my_fun is - the "very high level embedding" might be sufficient for your needs.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I need a code editor for Python for Windows. I want something easy to install and i like it if the words are colorful :D
Try Sublime text 2 you will like it - http://www.sublimetext.com/2
also as SwankSwashbucklers said notepad++ is really good too, I've used it for years
Try notepad++, it's easy to work with and colors python.
Here's a link: http://notepad-plus-plus.org/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I want to convert .rdf file (of 1 TeraByte) to .n3 format. I wrote my own parser but it is very inefficient (takes 10 days and more). Can someone please suggest me some good library in python, which I may use to accomplish this. Also if possible please point me to some good examples which me help me understand and use the library
I think you could use cwm,
python cwm.py --rdf source-file.rdf --n3 > target-file.n3
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I would like to code something with augmented reality, do you know any python library to play with?
OpenCV would be the closest match I can think of ...
ARToolKit apparently has python bindings:
http://www.hitlabnz.org/forum/showthread.php?548-PyARTK-0.1-Python-binding-for-ARToolKit-released
I've not experimented, ymmv.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
An ARC file is a lossless data-compression format.
http://en.wikipedia.org/wiki/ARC_%28file_format%29
I've tried googling some, but the Python ARC readers are 404 errors, or cannot be found.
Anyone know of any library I can use?
If you are able to use SWIG then possibly the ARC source code from FreeBSD could be used. Or you could have a look at the source, and perhaps reimplement it in Python. I remember ARC and it did not last very long as a popular tool so I suspect that it is not overly complex.