Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Can someone help me please understand this code?
Post: RE: Can someone help me please understand this cod...

Working with lists in python is a bit tricky at the beginning. This resource is helpful for playing with lists.
seco General Coding Help 2 3,372 Mar-02-2019, 07:26 PM
    Thread: Very basic help - python & Excel
Post: RE: Very basic help - python & Excel

You can read Excel sheets using pandas with the help of xlrd module First, install xlrd: pip install xlrd Then you can read from Excel like this: pandas.read_excel('YourExcelFile.xlsx', 'sheet1') Chec...
seco Data Science 6 3,815 Feb-21-2019, 05:00 PM
    Thread: PyQt5: Add Variable Number of Rows to Layout Based on Python Dictionary
Post: RE: PyQt5: Add Variable Number of Rows to Layout B...

Why don't using QtableWidget for display and store your data in a tuple or a list? This tutorial explains many things about PyQt5: PyQt5 tutorial Also, you can insert any widget inside the QTableWidge...
seco GUI 2 4,769 Oct-02-2018, 12:25 PM
    Thread: BeautifulSoup Parsing Error
Post: RE: BeautifulSoup Parsing Error

To scrape specific elements using the class attribute as an example: from urllib.request import urlopen from urllib.error import HTTPError from urllib.error import URLError from bs4 import Beau...
seco Web Scraping & Web Development 6 9,583 Feb-12-2018, 02:55 PM
    Thread: whats the error in this code in python 3.0 as this is running 2.0 pyhon
Post: RE: whats the error in this code in python 3.0 as ...

I think that you should try selenium. It's better. from selenium import webdriver browser = webdriver.Chrome() browser.get("https://www.python.org/") nav = browser.find_element_by_id("mainnav") print...
seco Web Scraping & Web Development 7 5,182 Feb-05-2018, 06:47 AM
    Thread: Detect comments part using web scraping
Post: RE: Detect comments part using web scraping

Who told that comments are ignored by search engines?
seco Web Scraping & Web Development 7 4,902 Jan-18-2018, 10:06 PM
    Thread: Detect comments part using web scraping
Post: RE: Detect comments part using web scraping

I need to identify links in comments sections for a SEO purpose that's all. Because I don't know the effectiveness of a link if it's on a comment compared with it on the body of the text.
seco Web Scraping & Web Development 7 4,902 Jan-18-2018, 10:01 PM
    Thread: Detect comments part using web scraping
Post: RE: Detect comments part using web scraping

What about detecting it using AI libraries if there are any?
seco Web Scraping & Web Development 7 4,902 Jan-18-2018, 09:20 PM
    Thread: Detect comments part using web scraping
Post: Detect comments part using web scraping

Hi I'm following this tutorial to scrape Ajax comments section from a website https://likegeeks.com/python-web-scraping/ I'm using both beautifulSoup and selenium to scrape Ajax comments. The article...
seco Web Scraping & Web Development 7 4,902 Jan-18-2018, 08:06 PM

User Panel Messages

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