Python Forum
Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 19,965
» Latest member: zalexstolzeoz5360
» Forum threads: 38,730
» Forum posts: 175,547

Full Statistics

Online Users
There are currently 42 online users.
» 1 Member(s) | 31 Guest(s)
Applebot, Bing, Google, AOL, Facebook, AOL, snippsat

Latest Threads
Comparing 2 100GB Drives/...
Forum: General Coding Help
Last Post: noisefloor
5 hours ago
» Replies: 4
» Views: 202
My goal to be hired worki...
Forum: News and Discussions
Last Post: Larz60+
Yesterday, 11:58 PM
» Replies: 1
» Views: 564
what does % stand for in ...
Forum: General Coding Help
Last Post: Gribouillis
Yesterday, 06:49 PM
» Replies: 4
» Views: 2,105
My First App
Forum: Code Review
Last Post: carlbidwell
Yesterday, 10:53 AM
» Replies: 8
» Views: 8,665
Unable to resolve FileNot...
Forum: General Coding Help
Last Post: Pedroski55
Yesterday, 03:54 AM
» Replies: 3
» Views: 565
how to export a dictionar...
Forum: GUI
Last Post: noisefloor
Sep-26-2025, 05:13 PM
» Replies: 4
» Views: 1,045
Is the interpreter that c...
Forum: General Coding Help
Last Post: noisefloor
Sep-26-2025, 01:17 PM
» Replies: 1
» Views: 1,040
pdf file processing: how ...
Forum: General Coding Help
Last Post: noisefloor
Sep-26-2025, 01:14 PM
» Replies: 6
» Views: 5,314
Regarding pdf for PCEP an...
Forum: News and Discussions
Last Post: Biks
Sep-26-2025, 09:50 AM
» Replies: 1
» Views: 1,903
Using Python to SSH and R...
Forum: Networking
Last Post: SprunkiRetake
Sep-26-2025, 03:53 AM
» Replies: 1
» Views: 2,952

 
  How to comapare version UUIDs in python?
Posted by: swamyjrs - Dec-19-2018, 08:44 AM - Forum: General Coding Help - Replies (3)

I have to compare version 4 UUID which i have and version 4 UUID which is there as common name in a certificate. Is there any python in built function..... More

Print this item

  Multiprocessing Module Running An Infinite Child Process Even After Completion
Posted by: hsikora - Dec-19-2018, 08:01 AM - Forum: General Coding Help - No Replies

I have a sample code which uses joblibs and multiprocessing modules. The code works fine when run from the command line, but when I package it ..... More

Print this item

  Python error
Posted by: janho - Dec-19-2018, 07:38 AM - Forum: General Coding Help - Replies (22)

Hi,

Need to install matplotlib on python 3.6.2 but when trying to install it getting this error (installing matplotlib package for designing the gr..... More

Print this item

  Algorithm effect on the CPU
Posted by: Faruk - Dec-19-2018, 06:26 AM - Forum: General Coding Help - Replies (3)

Hello guys. I have a python 2.7 script for my raspberry pi. My problem is When I run code, Raspberry pi use %20 of CPU. I think, wrong something in my..... More

Print this item

  How can i make this code to run faster
Posted by: Prince_Bhatia - Dec-19-2018, 05:10 AM - Forum: Web Scraping & Web Development - Replies (2)

hi,

I have a csv with around 2 lakhs url to download images from them.I am reading a csv and downloading images:

below is my code:
[python]
fr..... More

Print this item

  Issues with async and yielding from API
Posted by: GSerum - Dec-18-2018, 07:35 PM - Forum: General Coding Help - Replies (1)

Heyo guys,

So currently i'm trying to get a Discord bot to work, which uses asyncio, and an API which uses a yield function inside an event loop.

I'..... More

Print this item

  Bind only fires off once?
Posted by: WuchaDoin - Dec-18-2018, 06:58 PM - Forum: GUI - Replies (3)

I have a combobox used with Tkinter I cannot get bind to execute appropriately. Currently I have:

[python]self.ap_reason.bind("<<ComboboxChanged>>", ..... More

Print this item

  gTTS Input non responsive
Posted by: DrNerdly118 - Dec-18-2018, 06:57 PM - Forum: General Coding Help - Replies (9)

in this particular module, after successfully installing the pip files for the required input, the Google Text to Speech element is non responsive and..... More

Print this item

  Clustering Advice
Posted by: Madraykin - Dec-18-2018, 05:05 PM - Forum: General Coding Help - Replies (2)

Hi all,

I'm a bit of a novice Pythoner and have recently been running a K-Means Clustering in Azure Machine Learning. That method doesn't suit the ..... More

Print this item

  Magic method __str__
Posted by: dan789 - Dec-18-2018, 04:11 PM - Forum: General Coding Help - Replies (16)

Hi all, I´m trying to make a method __str__ for my class. It should have just one line (return ...) as usually this method is supposed to look like, a..... More

Print this item

  Segmentation fault when connecting to modbus device with Libmodbus
Posted by: alice - Dec-18-2018, 04:03 PM - Forum: General Coding Help - No Replies

I have a Raspberry Pi with an armhf system. I am getting Data from a Modbus Device with TCP, therefore I use the C Library libmodbus through ctypes. ..... More

Print this item

  some dict's special methods
Posted by: nzcan - Dec-18-2018, 03:20 PM - Forum: Homework - Replies (5)

hello,
i suppose that behind the:

[python]>>> ca = {1:'koko', 2:'boko'}
>>> 1 in ca
True
>>> 5 in ca
F..... More

Print this item

  keyword matching part2
Posted by: janho - Dec-18-2018, 01:50 PM - Forum: General Coding Help - Replies (19)

Script needs to read excel file which has let's say column A having these set of keywords let' s say 100 such keywords in this column and
after read..... More

Print this item

  Image conversion help
Posted by: KJDVolc - Dec-18-2018, 12:37 PM - Forum: Data Science - No Replies

Hi all,

I am trying to converst a series of float32 2D tif images to uint16 images and the read them into a 3D array. I can run the full code to g..... More

Print this item

  PIP sudden ssl error
Posted by: erickroberts - Dec-18-2018, 12:10 PM - Forum: General Coding Help - Replies (5)

Could not install packages due to an EnvironmentError: HTTPSConnectionPool


Could not install packages due to an EnvironmentError: HTTPSConnection..... More

Print this item

  SyntaxError: Invalid syntax in a while loop
Posted by: ludegrae - Dec-18-2018, 09:12 AM - Forum: Homework - Replies (3)

Hello everyone,
I would like to create a list of 12 numbers which each term is equal to the previous triple using a while loop.
Here is my code:
[..... More

Print this item

  cython does not work
Posted by: skorost5 - Dec-18-2018, 07:16 AM - Forum: General Coding Help - Replies (5)

cannot display Hello on cython

file: set.py
[python]
from distutils.core import setup
from Cython.Build import cythonize
import temp

compile..... More

Print this item

  Subtract rows (like r[1]-r[2] and r[3]-r[3]) and no pandas
Posted by: pradeepkumarbe - Dec-18-2018, 07:11 AM - Forum: Data Science - Replies (1)

I have csv file like below

Account Dates Sales
ADBVC 10-dec-2018 12
ADBVC 11-Dec-2018 10
SDFC 14-Dec-2018 15
SDFC 10-Dec-2018 11

I want ..... More

Print this item

  Python Reportlab Wordwrap Table
Posted by: Mady - Dec-18-2018, 06:31 AM - Forum: General Coding Help - No Replies

I have a generated list in python, for having a nice layout i need a wordwrap in it. Because of beeing a list in a list I am not able to use Paragraph..... More

Print this item

  imutils.grab_contours() error - reg
Posted by: ignatius80 - Dec-18-2018, 05:06 AM - Forum: General Coding Help - Replies (1)

Hi,

I am new to Python. Started to develop coding for image processing. I came across an example code for object detection(https://www.pyimagesearc..... More

Print this item

  Proposing "Data Science" sub-forum (again)
Posted by: micseydel - Dec-18-2018, 01:52 AM - Forum: Board - Replies (15)

This has already been discussed (see: https://python-forum.io/Thread-Data-Scie...-sub-forum) and lead to "stalemate" as someone p..... More

Print this item

  While loop explanation
Posted by: rdgbl - Dec-18-2018, 12:39 AM - Forum: General Coding Help - Replies (1)

[python]
num1 = input("Please enter your first number: ")
num2 = input("please enter your second number: ")
op = input("PLease select your operatio..... More

Print this item

  a Word Inside Parenthesis in Class Decleration
Posted by: tahasozgen - Dec-17-2018, 11:57 PM - Forum: General Coding Help - Replies (2)

Hi There;
I am new to python. There is a class definition in python.

[output]class SomeName(object) :
""" You usually define data and code here ..... More

Print this item

  clear all widgets at same time (not delete/remove)
Posted by: shift838 - Dec-17-2018, 11:55 PM - Forum: GUI - No Replies

Is there an easy way to clear all my pyqt5 widgets at the same time. Reset them back to default at form load via code?

Comboboxes, checkboxes, lin..... More

Print this item

  Where can I find a reference to python 3.7 commands?
Posted by: newbie2019 - Dec-17-2018, 11:40 PM - Forum: Data Science - Replies (7)

I am using spyder with python 3.7, I am reading a 2015 book that says this:

">>> plot (x,y,'o')

where the string 'o' ensures that a small circle..... More

Print this item

  Class Object hellp
Posted by: Dneal620 - Dec-17-2018, 11:40 PM - Forum: General Coding Help - Replies (1)

Hello, I am new to python and having a few problems I was hoping to find some help with on here.
I am creating a class object and for some reason whe..... More

Print this item

  Is Python used to make popular games that you can play on the Xbox or PlayStation
Posted by: ironsheep - Dec-17-2018, 10:50 PM - Forum: Game Development - Replies (17)

Hi,

Do games like "Hearthstone" and "World of Warcraft" made by Blizzard Entertainment use Python?? Is Python used to make popular games that you..... More

Print this item

  Pandas and numpy
Posted by: gehrenfeld - Dec-17-2018, 10:49 PM - Forum: Data Science - Replies (7)

I am using anaconda3 and python 3.7

Here is my code:

[python]
import numpy as np
import pandas as pd

data = pd.read_csv("summary.csv")

d..... More

Print this item

  Attaching File
Posted by: tomthirteen - Dec-17-2018, 10:13 PM - Forum: General Coding Help - Replies (2)

Hi, I can't see to be able to figure out how to attach a file. It seems I have to become a "user," but I can't seem to figure out how. Any help is gre..... More

Print this item

  SQLAlchemy, TypeDecorator and alias
Posted by: Master_Sergius - Dec-17-2018, 09:58 PM - Forum: Web Scraping & Web Development - No Replies

Hi all,

I'm fighting with a very complex software. In one place there is a TypeDecorator for datetime.datetime, which is always returns datetime (i..... More

Print this item

  ipaddress.IPv4Network
Posted by: tomthirteen - Dec-17-2018, 08:18 PM - Forum: General Coding Help - Replies (11)

Hello all,

I am trying to go through a file of editors and find the IP addresses of edits if given. Some are IP ranges, others are single IP. It se..... More

Print this item

  analyze list
Posted by: davidm - Dec-17-2018, 08:00 PM - Forum: General Coding Help - Replies (5)

hi don't know how to change my text to ltr, sorry.
I'm new to python - but not to programming
I'm taking as my 1st project a lottery predictor based..... More

Print this item

  Match CSV files for difference
Posted by: Cuz - Dec-17-2018, 06:19 PM - Forum: General Coding Help - Replies (4)

Hi guys!

I have a real-life problem and wanted to know if there is a way to do it in more efficient way. I have two CSV files I need to compare to s..... More

Print this item

  Magic square!
Posted by: frequency - Dec-17-2018, 05:30 PM - Forum: Homework - Replies (1)

Hello! I was asked to make a magic square solver program.By breaking the program into categories,i must get the user input which will be given with en..... More

Print this item

  Tkinter coords
Posted by: dan789 - Dec-17-2018, 04:26 PM - Forum: GUI - Replies (3)

Hi, I want to move my object (image) in tkinter, but it doesn´t work. This is what I have so far:

[python]
class Playfield:
...
def build_playfield(s..... More

Print this item

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  Comparing 2 100GB Drives/... 5 hours ago tester_V noisefloor General Codin...
  My goal to be hired worki... Yesterday, 23:58 GnomeSweetGnome Larz60+ News and Disc...
  what does % stand for in ... Yesterday, 18:49 arbiel Gribouillis General Codin...
  My First App Yesterday, 10:53 BCopeland64 carlbidwell Code Review
  Unable to resolve FileNot... Yesterday, 03:54 llarkin6 Pedroski55 General Codin...
  [Tkinter] how to export a... 09-26, 17:13 RonR noisefloor GUI
  Is the interpreter that c... 09-26, 13:17 helendamdam noisefloor General Codin...
  pdf file processing: how ... 09-26, 13:14 Pavel_47 noisefloor General Codin...
  Regarding pdf for PCEP an... 09-26, 09:50 P212 Biks News and Disc...
  Using Python to SSH and R... 09-26, 03:53 justaguy SprunkiRetake Networking
  extracting data from a us... 09-25, 13:49 Perry DeaD_EyE General Codin...
Most views
  The best Prog... 577243
  Tutorial Requ... 500286
  Web Scraping ... 440932
  Newbie with P... 384948
  New Users Int... 369260
Most reputation
buran 581
snippsat 508
Larz60+ 452
Gribouillis 362
deanhystad 327
Most replies
  New Users Int... 451
  [book] Variou... 188
  CKEditor / Ri... 100
  moving from t... 95
  Free keys and... 91
Top posters
Larz60+ 12089
buran 8176
snippsat 7368
deanhystad 6896
metulburr 5151
Top referrers
Googlepro 23
metulburr 6
NonEntity 6
python 6
buran 3
Newest members
zalexstolzeoz5360 Today
Edzed4431 Yesterday
chaoh1911 Yesterday
KaydenJonah098 Yesterday
carlbidwell Yesterday

User Panel Messages

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