Search results

  1. simong1993

    Python Chromedriver Automated image downloader not working.

    Hey. The issue i am getting says :- selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable Is this the error you get?
  2. simong1993

    Python Go through hidden elements one by one.

    I think the first thing we need is the website you are trying to use Selenium on and what you are trying to do. The reason i ask is if you are trying to go through each hidden div you could instead do :- browser.find_elements(By.XPATH, "/html/body/app-root/ac-site-layout/div") and this would...
  3. simong1993

    Hello

    Hello Conrad and welcome, What brings you to Codeforum :)
  4. simong1993

    Python Problem with split() and rstrip()

    Give this a try :D import requests #Get the page html = requests.get("https://www.py4e.com/code3/mbox-short.txt").text #set counter to 0 counter = 0 #Turn all lines into a list for line in html.split('\n'): #Check to see if from is in the line if "From" in line: #now turn...
  5. simong1993

    Python Adding brackets to a list and sort it

    Its this bit:- [word_list.append(word) for line in lines for word in line.split() if word not in word_list] for someone new to python it works and i understand what's happening lol but for someone new it could be troublesome lol
  6. simong1993

    Python Adding brackets to a list and sort it

    @cbreemer ooops i tagged the wrong person sorry lol, i should have tagged @menator01
  7. simong1993

    Python Adding brackets to a list and sort it

    I think @cbreemer example would be great for us programmers who have been doing this a while lol, its short its sweet, we understand what it does and there is less code to read but mine is designed to be a bit longer but easier for someone new to follow and understand, broken down a bit so you...
  8. simong1993

    Python Adding brackets to a list and sort it

    Hey so the issue you have is your making a list with: lst = list(fh) then your trying to make a list again with a list with: new_lst = lst.split()) what you will need to do is loop the list you just created then you can turn each of the first lists into a new list if that makes sense. I have...
  9. simong1993

    What should I do Before I give up programming?

    If i was to show you some of the ground breaking websites i built back in 2010 when i was 16 you would laugh at me. If i was to show you some of the macros i built in AHK a few years ago, you would probably say WHY. If i showed you my python scripts from when i started 3 years ago you would ask...
  10. simong1993

    Python how to grouping/merge rows in to single row

    Hey Mate, upload your code and something for us to work with and we can help you more :D
  11. simong1993

    "fake" BITS Job to keep it running?

    Hey heheyy2 can you expand a bit on what you are after please as your current request makes no sense :S
  12. simong1993

    JavaScript Phone Repair Booking

    That booking is made by a company called WeFix and the issue you will face here isnt making the system but instead getting all of the price etc. That's the bit that's taking me the longest, once you have found a way of automating that part, i use python for that then you can use PHP to build the...
  13. simong1993

    Python Ebay - 'error': 'invalid_grant', 'error_description': 'the provided authorization refresh token is invalid or was issued to another client'

    Yep the docs are pants when it comes to python lol but from what i can tell everything seems the same :S
  14. simong1993

    Python Ebay - 'error': 'invalid_grant', 'error_description': 'the provided authorization refresh token is invalid or was issued to another client'

    Ebay dev community is pants and Ebay is just as bad, i spoke to them and they only change they have made is they now use Oauth as well as Auth where i was Auth but they have assured me that will no cause me any issues :S
  15. simong1993

    Python Ebay - 'error': 'invalid_grant', 'error_description': 'the provided authorization refresh token is invalid or was issued to another client'

    Up until last month, my code was working perfectly. I was able to get a refresh token from eBay using AuthToken but for some reason, it just stopped. I have tried getting a new AuthToken with the same results and i have got the token manually from eBay and it works. I am at a loss as to what has...
  16. simong1993

    Node.JS Scraping and Automation

    As far as I am aware as you do not need to login to the site it makes the information public and fair game :D and my script does not bypass any security features or use any vulnerabilities I see no issues :D So to get the data I used Chrome developer menu, and watched the network as I submit...
  17. simong1993

    Node.JS Scraping and Automation

    I was going to do a video but i have been so busy lately but i might do next week and upload it explaining everything :D In a nutshell, Coding is about thinking outside the box. We know this data is coming from somewhere all I did was request the page with data and then converted the returned...
  18. simong1993

    Node.JS Scraping and Automation

    That's easy work :D this is the output from the script I just built :D do you have any experience with python?
  19. simong1993

    Node.JS Scraping and Automation

    I can help and guide you on how to create such a system but i need a bit more info on what you are trying to do :D
  20. simong1993

    Node.JS Scraping and Automation

    Incase no one comes to help, I cant help in Node but i could help in Python :D
Top Bottom