Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: webautomation with an API
Post: webautomation with an API

Good morning, I'll just come straight up to my question. Does webautomation (especially for automation in browsergames) properly work with an API? As far as I'm aware of, does the session ends as so...
Fre3k Web Scraping & Web Development 1 1,792 Apr-15-2022, 07:17 AM
    Thread: Simple Variable Saving in Loop
Post: RE: Simple Variable Saving in Loop

Hi, Well first of all it would be nice, if you could share the logic where you loop over your dictionarys/arrays. Hard to figure out what the problem is w/o the actual code.
Fre3k General Coding Help 3 3,021 Mar-09-2021, 07:17 PM
    Thread: Can't get elements by class on this website
Post: RE: Can't get elements by class on this website

(Mar-09-2021, 04:24 PM)Cknutson575 Wrote: Can you explain what you did on line 17 and why you choose to parse by lxml for your soup? Thanks so much! CK I would suggest to read through snippsat's we...
Fre3k Web Scraping & Web Development 5 3,216 Mar-09-2021, 07:08 PM
    Thread: GUI keeps freezing
Post: RE: GUI keeps freezing

(May-17-2020, 03:28 PM)Yoriz Wrote: Have a look at this Hide/Showimport time import tkinter as tk from concurrent import futures import random thread_pool_executor = futures.ThreadPoolExecutor(max_...
Fre3k GUI 2 3,608 May-23-2020, 05:41 PM
    Thread: GUI keeps freezing
Post: GUI keeps freezing

Good morning, Right now, im totally confused with tkinter, and the GUI freezing problem ... First of all, I read this post from Yoritz, and tried to work after it. What should my program do ? I'v...
Fre3k GUI 2 3,608 May-15-2020, 07:59 AM
    Thread: [FLASK] How to structure the code in my case ?
Post: RE: [FLASK] How to structure the code in my case ?

(May-02-2020, 10:03 AM)Larz60+ Wrote: I would like to recommend the flask mega tutorial: https://blog.miguelgrinberg.com/post/the...ello-world it's the most complete flask tutorial that I know of. T...
Fre3k Web Scraping & Web Development 4 2,659 May-04-2020, 04:43 PM
    Thread: [FLASK] How to structure the code in my case ?
Post: [FLASK] How to structure the code in my case ?

Good morning lads, and gents. I'm currently trying to dig into Flask, and create a simple webpage with it. For better learning, I also have a project beside of that, where I can use the learned thi...
Fre3k Web Scraping & Web Development 4 2,659 May-02-2020, 09:28 AM
    Thread: Calculate the multiple of a number
Post: RE: Calculate the multiple of a number

(Mar-24-2020, 10:30 PM)pythonuser1 Wrote: Hide/ShowHello, #!/usr/bin/python # -*- coding: utf-8 -*- # Les nombre multiples de n compris entre 1 et 60 def multiple(n): for i in range(1,61): ...
Fre3k Homework 7 4,498 Mar-25-2020, 10:16 AM
    Thread: Sublime text not responding
Post: RE: Sublime text not responding

check your env variable(s) Maybe the path got deleted somehow
Fre3k General Coding Help 1 1,974 Mar-23-2020, 11:42 AM
    Thread: Webscrapping creating a dictionary
Post: RE: Webscrapping creating a dictionary

Short desc. how I would do it. get all names and the hrefs. build the urls base_url = 'https://eresearch.fidelity.com/eresearch/goto/markets_sectors/landing.jhtml'now build the new url - parse the ...
Fre3k Homework 3 1,973 Mar-23-2020, 09:35 AM
    Thread: How would I go about repeating/looping this code?
Post: RE: How would I go about repeating/looping this co...

Not sure, if Im just to retarded what you want to achieve, but here's an other way to increase the index. def play_game(moves,max_loop): for x in range(0,max_loop): if moves[x] == ['a',1]...
Fre3k Homework 5 2,115 Mar-20-2020, 12:54 PM
    Thread: Python tool based on website?
Post: RE: Python tool based on website?

You mean something like that ? https://repl.it/repls/IllustriousSentimentalFossil
Fre3k Web Scraping & Web Development 2 2,484 Mar-20-2020, 12:46 PM
    Thread: How would I go about repeating/looping this code?
Post: RE: How would I go about repeating/looping this co...

You could add a parama "loop" which indicates how often to loop. then you could add a counter and use: counter=0 while(counter < loop): counter+=1Or did I missunderstood the point of your ques...
Fre3k Homework 5 2,115 Mar-20-2020, 08:18 AM
    Thread: How can I print the number of unique elements in a list?
Post: RE: How can I print the number of unique elements ...

(Mar-19-2020, 10:53 PM)AnOddGirl Wrote: Hide/ShowUsing the dictionary below, I'm supposed to create a function that returns the number of unique items in the "items" list. shopping_cart = { "t...
Fre3k Homework 5 3,271 Mar-20-2020, 06:45 AM
    Thread: I experimented with a loop, and I don't understand how I got my output
Post: RE: I experimented with a loop, and I don't unders...

(Mar-17-2020, 07:39 PM)thinwheats Wrote: Thank you! However, I don't think I asked my question well: 1. Why did the "x + 1" double my list length? 2. Why does the "x + 1" result in an out put of 2...
Fre3k Homework 7 2,903 Mar-18-2020, 05:01 PM
    Thread: Issue with calling a Class/Method in GUI File
Post: RE: Issue with calling a Class/Method in GUI File

Short update from my side. Since I didnt thought that there were any mistakes while calling the other class, I rebuilded simply everything, with some basics functions like the login , webscraper and...
Fre3k GUI 3 3,029 Mar-08-2020, 12:35 PM
    Thread: Issue with calling a Class/Method in GUI File
Post: RE: Issue with calling a Class/Method in GUI File

(Mar-08-2020, 07:08 AM)michael1789 Wrote: Try calling it with a name: application = app() Thanks for your reply. unfortunately I tried that already. Here are some things I've tried. app = app() ...
Fre3k GUI 3 3,029 Mar-08-2020, 10:44 AM
    Thread: Issue with calling a Class/Method in GUI File
Post: Issue with calling a Class/Method in GUI File

Hello guys, Currently I've a strange issue. I tried to google a lot but it seems that I'm either to dumb, or hopefully to blind to get the point of my issue.. I've a GUI in a file called gui.py GUI...
Fre3k GUI 3 3,029 Mar-07-2020, 10:54 PM
    Thread: enable flash using selenium chromedriver
Post: enable flash using selenium chromedriver

Hello :) Me again,... I'm currently trying to automate some stuff in an older game, which is still running via flash ... After I login to the website, and start the gameworld, I get an error messag...
Fre3k Web Scraping & Web Development 1 4,294 Feb-01-2020, 11:05 AM
    Thread: [Learning:bs4, re.search] - RegEx string cutoff
Post: RE: [Learning:bs4, re.search] - RegEx string cutof...

(Nov-09-2019, 07:37 AM)buran Wrote: don't use regex to parse html - plain and simple. Short question about that statement. What exactly is wrong, or shouldnt be done, when I parse the website with ...
Fre3k Web Scraping & Web Development 5 3,671 Nov-23-2019, 08:58 AM

User Panel Messages

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