Jump to content
UBot Underground

Pete_UK

Members
  • Content Count

    133
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Pete_UK

  1. I'm having difficulty using this plugin with the XML files I'm getting from Amazon API's. See attached file. When I try XML to Table I only get 3 columns (see image) Code: plugin command("xml plugin.dll", "XML to Table", "C:\\Users\\Pete\\Desktop\\ubot.xml", &myXML) http://screencast.com/t/CVpnomHq7zcc Also, I can't figure out how I would select an element such as SalesRank from the XML file. Any help would be appreciated. ubot.xml
  2. What is included in the REGEX source code? I couldn't work it out from the sales page?
  3. Got it. I now see all the options available for custom formatting. I didn't realise the drop-downs on that page were active. I though it was a screen shot! Thanks, and sorry for being a dumb-ass
  4. The RoundTrip format is the one I want to use but I can't get it to return the Off-Sett value: 2014-09-21T17:06:32.0000000
  5. Is it possible to add in the option to get the date and time in ISO 8601 formats? http://www.w3.org/TR/NOTE-datetime What I am needing is complete date plus hours, minutes, seconds, decimal fraction of a second and time zone offset of "+hh:mm"YYYY-MM-DDThh:mm:ss.sTZD(eg) 2014-08-05T13:46:02.06+01:002014-09-15T19:22:33.45-06:00
  6. Answered my own question.... http://robobest.com/2013/11/22/hmac-sha1/
  7. I think I may need this Kev. Do you have an example of it's use to put me on track?
  8. I turned to using regular expressions to scrape each item individually.
  9. Thanks TJ. Most appreciated. Q... What version of VS do you recommend ..... 2010 or 2012 or something else?
  10. Thanks guys. Tables it is from now on.
  11. What's the best way to update an item in a LARGE LIST? Should I be using a Large Table and use the SET LARGE TABLE CELL instead?
  12. No worries Dan.I'll let you know when i'm stuck.
  13. Sharing my language file. Not perfect but something you can add to. ubot
  14. Hi Dan, I am focused on Amazon right now (I'm a market place seller), so creating bots to help automate my workload (Listing, repricing etc..). One thing I am going to tackle is working working with the Amazon Seller Central API. I haven't done anything with it at the moment but I guess it boils down to Get/Post requests and dealing with XML etc.., but as far as training videos go this my not be a good topic for everyone as you need an Amazon Seller account. So, a similar topic could be something to do with the Amazon Associates Product Advertising API. I would think the way it works is go
  15. Just signed up Will be watching tonight Roll-on a new bonus video!
  16. Yep, I figured it must have been something to do with the append. That's actually what got me to try a list and watch in debug mode. From one issue to another So for this example do you recommend saving the data to a Large List (your plugin Kev) while in a thread and then processing the data once all threads are complete? I take it there shouldn't be any problem writing to the same list in multiple threads at the same time?
  17. Thanks for the info Kev. I'll check it out. I've noticed similar issues when writing out to a file when not using lists too. set(#i, 0, "Global") loop(10) { loop(15) { runMe(#i) increment(#i) } } define runMe(#counter) { thread { set(#gotPage, "{#counter} - QWERTY ", "Local") append to file("{$special folder("Desktop")}\\thread.txt", #gotPage, "End") } } Is this down to the THREAD command not working correctly or something else? Was thinking may be down to the APPEND TO FILE command. If one thread is already appending to the file when another
  18. I decided to test out the thread command. When I run the script below it seems to work okay. Watching the Debug window show the #i variable is the same as the %zlist list. But, when I run script several times in quick succession I notice some time there is a discrepancy See the attached image. As you can see the code is very simple so there doesn't seem to be much room for error, but obviously I am doing something wrong, somewhere .... OR ... is it that the thread command isn't working right? clear list(%zlist) set(#i, 0, "Global") loop(20) { loop(5) { runMe(#i) increm
  19. I saw you have a video covering something to do with Amazon Seller Central. Is that how to use the Seller Central API to get data?
×
×
  • Create New...