| Author |
Thread Statistics | Show CCP posts - 0 post(s) |

Splodger
Ausbruch Outbreak.
27
|
Posted - 2012.07.31 13:53:00 -
[1] - Quote
running both the example datadump.py and a marketorder script run without errors, but I do not get any files in my outpath folder. outpath folder is already made aswell.
installed both PyYAML and rev 2.7 (64bit)
any help as iam fairly new with python and at a loss |

Splodger
Ausbruch Outbreak.
27
|
Posted - 2012.07.31 15:33:00 -
[2] - Quote
Entity wrote:Splodger wrote:running both the example datadump.py and a marketorder script run without errors, but I do not get any files in my outpath folder. outpath folder is already made aswell.
installed both PyYAML and rev 2.7 (64bit)
any help as iam fairly new with python and at a loss edit : tried the implants example aswell, I do get an implants.html but it is blank. Yeah, datadump.py is out of date, haven't updated that yet (lazy me) implants.py works fine, make sure you point it at your eve install in the source.
EVEPATH = "C:/Program Files (x86)/CCP/EVE"
if i remove the space or set it wrong, will get error saying path to cache is wrong so I know the path is correct. but alas no data. |

Splodger
Ausbruch Outbreak.
27
|
Posted - 2012.07.31 15:46:00 -
[3] - Quote
Entity wrote:Splodger wrote:if i remove the space or set it wrong, will get error saying path to cache is wrong so I know the path is correct. but alas no data. No idea. As I said, it works fine. Try running it just with python implants.py (no output redirect). It should be spitting out html. if it doesn't, it should be giving an exception. if it doesn't even do that, then I dont know :P
well as per my normal coding practices, its now working lol, cheers again. cant wait to experiment with it. |

Splodger
Ausbruch Outbreak.
27
|
Posted - 2012.08.05 18:56:00 -
[4] - Quote
Iam not getting any output with the following, anyone able to send any light? Was reading up on python dictionaries but my for loop below doesnt output anything, so either Iam doign it wrong or something is up. (installed evementat to make sure my cache was working and it is - valid dat in there)
import time import os import sys from reverence import blue
EVEROOT = 'C:\Program Files (x86)\CCP\EVE'
eve = blue.EVE(EVEROOT) cfg = eve.getconfigmgr() cachemgr = eve.getcachemgr() cmc = cachemgr.LoadCacheFolder('CachedMethodCalls')
#cache = eve.getcachemgr() #print "Protocol version :", cache.machoVersion #print "Installation Root :", cache.root #print "Installation Bulkdata :", cache.BULK_SYSTEM_PATH #print "AppData Cache Root :", cache.cachepath #print "AppData MachoNet Cache :", cache.machocachepath #print "AppData Bulkdata Updates:", cache.BULK_CACHE_PATH
for key, obj in cmc.iteritems(): if key[1]=="GetOrders": item = cfg.invtypes.Get(key[3]) region = cfg.evelocations.Get(key[2]) print "Processing " + item.name + " [" + region.locationName +"]... \n"
|
| |
|