Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Writing device driver to stop electric supply to any I/O port
Post: Writing device driver to stop electric supply to a...

I want to know that how to write program to stop electric supply/disable any I/O port like LAN, USB, audio port etc. I know it's a part of writing device driver but I don't have idea how to start with...
sumandas89 General Coding Help 0 1,805 May-02-2019, 10:22 AM
    Thread: Start learning GUI Programming python
Post: Start learning GUI Programming python

I want to learn gui programming using python, let me know that from where I have to start and also let me know if there are any good documentation/tutorials to begin learning.
sumandas89 GUI 1 3,212 Jan-18-2019, 11:44 AM
    Thread: Web Page not opening while web scraping through python selenium
Post: RE: Web Page not opening while web scraping throug...

(Nov-19-2018, 12:23 PM)metulburr Wrote: Quote:what is the permissions of C:\ChromeDirver? The directory ChromeDriver has full permission. Quote:As for firefox it appears you are just passing the s...
sumandas89 Web Scraping & Web Development 4 10,122 Nov-19-2018, 01:00 PM
    Thread: Web Page not opening while web scraping through python selenium
Post: Web Page not opening while web scraping through py...

I am writing codes to do web crawling in windows environment, and using google chrome and mozila firefox as browser. For google chrome I downloaded latest chromedriver and the latest geckodriver for f...
sumandas89 Web Scraping & Web Development 4 10,122 Nov-19-2018, 10:57 AM
    Thread: Try and Exception not properly working with xpath
Post: Try and Exception not properly working with xpath

This is a small code segment of a program and below the output is given - try: print('li 8') lim = driver.find_element_by_xpath('//*[@id="names_load_paginate"]/ul/li[8]/a').text ...
sumandas89 General Coding Help 0 1,987 Aug-29-2018, 02:33 PM
    Thread: Why my python code is throwing several errors?
Post: RE: Why my python code is throwing several errors?

I executed this code and I found no errors. Code is executing smoothly. I think you should check whether the selenium webdriver is installed or not in your system. If not installed first install it fi...
sumandas89 Web Scraping & Web Development 2 2,550 Aug-29-2018, 02:05 PM
    Thread: Getting error str object is not callable in find by xpath
Post: RE: Getting error str object is not callable in fi...

(Aug-14-2018, 10:56 AM)mlieqo Wrote: You are trying to get text by calling it as a function, but it's just a string. Use this instead: driver.find_element_by_xpath(tab_str).text This is not a good ...
sumandas89 General Coding Help 3 10,797 Aug-14-2018, 02:54 PM
    Thread: Getting error str object is not callable in find by xpath
Post: Getting error str object is not callable in find b...

Here is my code segment - for clk in range(1, int(lim)): for i in range(1, 101): tab_str = '//*[@id="tbody_other_search"]/tr[' tab_str = tab_str + str(i) + ']/td[1]' print...
sumandas89 General Coding Help 3 10,797 Aug-14-2018, 10:48 AM
    Thread: Best way to set cell background colour in openpyxl
Post: RE: Best way to set cell background colour in open...

(Feb-20-2018, 08:37 PM)theozh Wrote: try "fgColor" instead of "bgColor" targetFileActiveSheet.cell(row=rowNum, column=colNum).fill = PatternFill(fgColor='FFEE08', fill_type = 'solid')seems to work w...
sumandas89 General Coding Help 4 68,568 Aug-08-2018, 01:24 PM
    Thread: Multiple input box in a webpage have same XPATH
Post: RE: Multiple input box in a webpage have same XPAT...

(Jul-18-2018, 01:29 PM)buran Wrote: it looks like driver.find_elements_by_xpath('(//*[@id="d_value"])') returns list. Check how many elements it has. In any case, even if it is one element list, you...
sumandas89 Web Scraping & Web Development 3 5,186 Jul-19-2018, 08:21 AM
    Thread: Multiple input box in a webpage have same XPATH
Post: Multiple input box in a webpage have same XPATH

I am crawling in a webpage which have two input box in two different tabs inside the page. But the problem is that class name, id name is same for both of the input box. While I am trying to access th...
sumandas89 Web Scraping & Web Development 3 5,186 Jul-18-2018, 01:24 PM
    Thread: Getting error while accessing input box
Post: Getting error while accessing input box

I wrote a code like below - driver.find_element_by_xpath('/html/body/div[4]/div[2]/div/div[2]/div[2]/div/ul/li[2]/a').click() '''Entering The Input Name and Continue Search''' driver.find_element_by_x...
sumandas89 Web Scraping & Web Development 0 2,922 Jul-13-2018, 12:22 PM
    Thread: Getting error when accessing elements in a modal window of an webpage using selenium
Post: RE: Getting error when accessing elements in a mod...

(Jul-12-2018, 02:04 PM)sumandas89 Wrote: I am writing python code to access elements in a modal dialog box of a webpage. After clicking in a link the modal dialog box appears till this point code wo...
sumandas89 Web Scraping & Web Development 3 8,680 Jul-13-2018, 08:52 AM
    Thread: Getting error when accessing elements in a modal window of an webpage using selenium
Post: Getting error when accessing elements in a modal w...

I am writing python code to access elements in a modal dialog box of a webpage. After clicking in a link the modal dialog box appears till this point code works fine but when I am finding elements and...
sumandas89 Web Scraping & Web Development 3 8,680 Jul-12-2018, 02:04 PM
    Thread: Use of Python in field of cyber Security and Ethical Hacking
Post: RE: Use of Python in field of cyber Security and E...

(May-08-2018, 12:55 PM)wavic Wrote: (May-08-2018, 12:26 PM)sumandas89 Wrote: After reading first two chapters,I found that concepts are becoming hard and not easy to grasp. Can you provide any sug...
sumandas89 News and Discussions 7 7,241 May-08-2018, 01:42 PM
    Thread: Use of Python in field of cyber Security and Ethical Hacking
Post: RE: Use of Python in field of cyber Security and E...

(Mar-25-2018, 07:58 PM)sparkz_alot Wrote: Since it is free, I would start with 'Violent Python'. If that proves to advanced, go by the title as an indicator, for instance 'Mastering Python Forensics...
sumandas89 News and Discussions 7 7,241 May-08-2018, 12:26 PM
    Thread: How to access Modal window using Selenium Python
Post: How to access Modal window using Selenium Python

While crawling in a web-page using python selenium, I found a link and after clicking in the link using selenium, I found a modal window appears. Now when I tried to access the window using switch to ...
sumandas89 Web Scraping & Web Development 0 4,225 Mar-30-2018, 08:21 AM
    Thread: Use of Python in field of cyber Security and Ethical Hacking
Post: RE: Use of Python in field of cyber Security and E...

(Mar-24-2018, 01:43 PM)sparkz_alot Wrote: Just a short list of books to help you get started. Violent Python By TJ O'Connor Learning Penetration Testing with Python By Christopher Duffy Mastering...
sumandas89 News and Discussions 7 7,241 Mar-25-2018, 03:57 PM
    Thread: Use of Python in field of cyber Security and Ethical Hacking
Post: Use of Python in field of cyber Security and Ethic...

I maintain cyber security of a small organization. I want to know How can I use python in the field of cyber security? like preventing hackers from accessing databases and detecting them(if they are n...
sumandas89 News and Discussions 7 7,241 Mar-24-2018, 12:28 PM
    Thread: Combining selenium and beautifulsoup for web scraping
Post: RE: Combining selenium and beautifulsoup for web s...

(Jan-29-2018, 07:21 AM)metulburr Wrote: (Jan-29-2018, 07:05 AM)sumandas89 Wrote: can I enter into webpages using selenium and then scrape data from there using beautifulsoup?Yes if you need to get...
sumandas89 Web Scraping & Web Development 3 11,647 Jan-30-2018, 01:39 PM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020