'How can i properly use dox import
i want to get info from the internet from a name (string) but its not working, here is my code:
import dox
AutoProccesFromPcName = dox:Resolve_name_of_base("Google Chrome.exe")
def FindInfo(name):
compose = dox.name(name)
netGlobalSearch = dox:FindMatchesForNetwork(AutoProccesFromPcName,compose)
numberOfResults = dox:ComposeFNumFrom(netGlobalSearch)
if numberOfResults > 0:
print("FOUND " + str(numberOfResults) + " RESULTS")
for index, result in netGlobalSearch:
if dox:PackInfo(dox:Compose(result)) != 0:
print("RESULT " + str(result) + " FOUND AT INDEX: " + str(index))
input("Press enter to exit program... ")
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
