Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
i was founding 'AUX'.
in python, i used 'spacy.explain('AUX')'. but, in R, i don't know the method.
You can use the R reticulate library to access Python.
Provided everything is installed correctly and Sys.which('python') points to the correct Python path for the spacy module:
library(reticulate)
sp <- import("spacy")
sp$explain("AUX")
[1] "auxiliary"
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 days ago.
Improve this question
I have python service project (old, not written well) to get data from third party using web socket client, which is not stable. In order to improve trouble shooting, I would like convert it c# solution.
convert python source code to c#
find all nudget packages to matches with python library
Thanks.
try to find a easy way to do conversion.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I do coding using Python I tried to use soundex() in googlecolab by importing fuzzy . But I can not use . Pl. guide
You can add !pip install fuzzy before import fuzzy in colab and you should be able to use soundex()
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
Is there any way to minimize all non active windows using python, leaving the active windows.
There are several ways to do this based on your exact purpose. (Please clarify what exactly you want to do)
However in general these modules are useful for such tasks:
PyAutoGUI; https://pypi.org/project/PyAutoGUI/
Win32gui; https://pypi.org/project/win32gui/
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I am trying to access a module I have written in Python from C? Is this at all possible?
I have tried:
Module = PyImport_ImportModule("<modulename>");
But it doesn't seem to work
please try to add more information of what are you trying to do.
Anyway, I know it is possible. It isn't easy though..
Have you tried looking for any tutorials? I think this was already asked:
Call a Python function from within a C program
https://www.codeproject.com/Articles/11805/Embedding-Python-in-C-C-Part-I
https://www.linuxjournal.com/article/8497
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Can someone help me?
I have a project on Node.js(Cappuccino framework), and I must to use with the project my Python script.
How to do this deal?
You did not consult Google before asking. Searching for 'node.js execute python' got me HERE. I'm guessing this is what you want.
I'm guessing because you're not being very clear. Next time be more specific.