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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 20,303
» Latest member: IFDA123
» Forum threads: 38,798
» Forum posts: 175,906

Full Statistics

Online Users
There are currently 45 online users.
» 0 Member(s) | 40 Guest(s)
Bing, Google, AOL, Mojeek, AOL

Latest Threads
No new line from print in...
Forum: General Coding Help
Last Post: snippsat
9 hours ago
» Replies: 4
» Views: 151
Python is not working on ...
Forum: General Coding Help
Last Post: noisefloor
Yesterday, 10:44 AM
» Replies: 4
» Views: 167
Help with Serial.write in...
Forum: General Coding Help
Last Post: Larz60+
Yesterday, 04:44 AM
» Replies: 8
» Views: 683
Can I develop a live vide...
Forum: Web Scraping & Web Development
Last Post: mamta25
Nov-27-2025, 04:48 AM
» Replies: 6
» Views: 7,813
silent deployment Python ...
Forum: News and Discussions
Last Post: Larz60+
Nov-26-2025, 09:58 PM
» Replies: 3
» Views: 156
Proposal for PEP
Forum: News and Discussions
Last Post: Gribouillis
Nov-26-2025, 03:53 PM
» Replies: 1
» Views: 136
My regex function is not ...
Forum: General Coding Help
Last Post: perfringo
Nov-26-2025, 08:47 AM
» Replies: 3
» Views: 218
best way to learn python
Forum: News and Discussions
Last Post: ichsanputr
Nov-26-2025, 04:40 AM
» Replies: 6
» Views: 3,220
data fetching for indian ...
Forum: Web Scraping & Web Development
Last Post: Pedroski55
Nov-25-2025, 02:50 AM
» Replies: 6
» Views: 329
PyQt5 - Get a parameter f...
Forum: GUI
Last Post: deanhystad
Nov-24-2025, 02:18 PM
» Replies: 5
» Views: 217

 
  Delphi code to Python
Posted by: juliocsrj84 - Dec-20-2018, 01:47 PM - Forum: General Coding Help - Replies (6)

I have this code bellow that was written in delphi:

Delphi ( this is a part of function in DDL)
function InitializeMarket ( const pwcActiva..... More

Print this item

  The problem with pithonwin.
Posted by: Jimi - Dec-20-2018, 12:56 PM - Forum: General Coding Help - Replies (1)

Hello. Install python 2.7.15, install pwin32 with pip, and when trying to start pythonwin, this is the window:
..... More

Print this item

  pysftp pop-up 'Client forking'
Posted by: micksulley - Dec-20-2018, 12:17 PM - Forum: General Coding Help - Replies (5)

Running Python 2.7.15rc1 (default, Nov 12 2018, 14:31:15) on Linux Mint

I am trying to use pysftp, the test code [python]
#!/usr/bin/python

# t..... More

Print this item

  Looping and nested loops
Posted by: albry - Dec-20-2018, 10:52 AM - Forum: General Coding Help - Replies (5)

[python]
all_days = ["Monday", Tuesday", "Wednesday", "Thursday","Friday", "Saturday", "Sunday")
total_rain = 0
total_weeks = 0

# number of we..... More

Print this item

  make a frequency table
Posted by: davidm - Dec-20-2018, 10:27 AM - Forum: General Coding Help - Replies (6)

Hi, I'd like to make a table showing the frequency with which numbers occur each month.
My input is a csv file with a row format of:

Date(d/m/y) num..... More

Print this item

  sum of int in list in a list
Posted by: Dbeah - Dec-20-2018, 10:19 AM - Forum: General Coding Help - Replies (1)

i have a list with list in it and i want to add the numbers from first list to another list , i need to add all lists together to form one list any he..... More

Print this item

  Help analyzing this data
Posted by: MAZambelli4353 - Dec-20-2018, 06:13 AM - Forum: General Coding Help - Replies (1)

[python]
Dates AAPL Returns
22 2018-02-02 -2.00
31 2018-02-15 1.87
64 2018-04-05 0.13
70 2018-04-13 ..... More

Print this item

  Python Now Has a Steering Council
Posted by: ichabod801 - Dec-20-2018, 04:05 AM - Forum: News and Discussions - Replies (3)

PEP 8016

Edit: or at least the plans for one.

Print this item

  run code in a window vs console
Posted by: gehrenfeld - Dec-20-2018, 12:43 AM - Forum: General Coding Help - Replies (1)

I have a .py file that runs great in a python console. Prints my output to the console screen.

How can I run that code in a nice looking window ins..... More

Print this item

  The Python Tkinter Youtube Audio Downloader for Linux
Posted by: rootVIII - Dec-19-2018, 11:33 PM - Forum: Code sharing - No Replies

Make sure to use the img/ and downloads/ folders as shown in the Github Repository

The following pa..... More

Print this item

  Fix Error and clenup code
Posted by: zinho - Dec-19-2018, 09:40 PM - Forum: General Coding Help - Replies (5)

Hi

I would like someone help with my python code.
What I need:
1. Solve error
2. Change code to something more clear and organized

I use Linu..... More

Print this item

  how to call WCF from python
Posted by: Rehan11 - Dec-19-2018, 06:52 PM - Forum: General Coding Help - Replies (5)

can anybody help with the script

I don't understand how to call WCF from python running on the raspberry ?

Is this script enough to call WCF ?..... More

Print this item

  CODE for Bubble sorting an unsorted list of 5 numbers.
Posted by: SIJAN - Dec-19-2018, 06:08 PM - Forum: Homework - Replies (1)

help me write a code to sort a list of 5 unsorted numbers with bubble sort algorithm using "for" loop.

Print this item

  I'm having trouble with an OOP version of Pickle functionality
Posted by: CodeWolf - Dec-19-2018, 05:30 PM - Forum: General Coding Help - Replies (2)

Well I'm pretty novice at OOP so I thought I'd take one of my working non-OOP version of a Pickle program and create this object-oriented version:

..... More

Print this item

  Creating a variable in for loop
Posted by: dan789 - Dec-19-2018, 04:35 PM - Forum: General Coding Help - Replies (9)

Hi all, this is what I have so far:

[python]for i in range(len(self.my_tuple)):
"self.furniture{0}".format(i) == self.my_tuple[i][/pyt..... More

Print this item

  check how many times an item appears in list
Posted by: davidm - Dec-19-2018, 04:27 PM - Forum: General Coding Help - Replies (8)

Hi, I want to know how many times an item appears in a list.
If I have a list [1, 2, 2, 2] how would I check if 2 occurs 3 times.
Thanks for any hel..... More

Print this item

  Change language settings to English
Posted by: davidm - Dec-19-2018, 04:16 PM - Forum: Board - Replies (3)

Hi because i live in Israel text in my post message box is aligned to the right - Hebrew is a rtl language How can I change the language settings to E..... More

Print this item

  rising edge of detection
Posted by: peter14 - Dec-19-2018, 03:46 PM - Forum: General Coding Help - Replies (7)

Hello, i'm new in the forum and i' begin in Python. I want to detect rising edge of incremental encoder and mesure the time between tow rising edge.
..... More

Print this item

  No module named Playback
Posted by: ABadLab - Dec-19-2018, 03:21 PM - Forum: General Coding Help - Replies (1)

Hi All,

I am getting the following error when I try to run a script in Python. My question is: is playback an extra module that I must add to pytho..... More

Print this item

  Move PhotoImage
Posted by: dan789 - Dec-19-2018, 02:49 PM - Forum: GUI - Replies (2)

Hi, I don´t know what to do to get my object (picture) to move. This is what I have so far:

1st method in a class:
self.player1 = tkinter.PhotoImage(..... More

Print this item

  Clearpass script
Posted by: barb - Dec-19-2018, 02:44 PM - Forum: General Coding Help - Replies (3)

Hello,

I'm complete new with python and scripting.

I want to create a script that recovers information via an API get and convert this XML outpu..... More

Print this item

  RFC downloader not working
Posted by: sidsr003 - Dec-19-2018, 01:29 PM - Forum: Web Scraping & Web Development - Replies (2)

I am using the following code to download rfc pages. I am however getting
only html and not plain English text like on the webpage http://www.ietf.or..... More

Print this item

  Is there an error in the code?
Posted by: himanibansal - Dec-19-2018, 12:21 PM - Forum: Homework - Replies (2)

I cannot find the problem with the following piece of code-
[python]>>> def func(n=[]):
#playing around
pass
>>> fu..... More

Print this item

  Finding phrases of one semantic meaning
Posted by: VladislavMz - Dec-19-2018, 11:48 AM - Forum: General Coding Help - Replies (2)

Hi!
I have a document in .doc format which consists of various contents are texts, tables, and so on. I use the python-docx library to work with word..... More

Print this item

  python
Posted by: Cornor006 - Dec-19-2018, 10:52 AM - Forum: Web Scraping & Web Development - Replies (1)

listout checklist when we developed the web design

Print this item

  writing numbers to csv file
Posted by: SchroedingersLion - Dec-19-2018, 10:51 AM - Forum: General Coding Help - Replies (7)

Greetings,

can someone tell me wether the following is correct?
I have float values stored in two lists, namely x2 and y2.
I want to print a csv ..... More

Print this item

  Django. Lock records without actual selecting
Posted by: GrahamDumpleton - Dec-19-2018, 10:39 AM - Forum: Web Scraping & Web Development - Replies (2)

Hello!

I want to lock thousands of records(using select_for_update), but I don't really need that records will be extracted from database.
..... More

Print this item

  is there a debug mode available while creating python egg
Posted by: BhushanPathak - Dec-19-2018, 10:09 AM - Forum: General Coding Help - Replies (1)

I have written a python module & building egg file for it. Is there a debug mode available while building, similar to what is available while compilin..... More

Print this item

  crypto import issue
Posted by: saisankalpj - Dec-19-2018, 09:23 AM - Forum: General Coding Help - Replies (2)

[python]from Crypto.PublicKey import RSA
File "C:\Program Files\Python36\lib\site-packages\crypto\PublicKey\__init__.py", line 21, in <module>
f..... More

Print this item

  Issue listening to a networked device.
Posted by: Will86 - Dec-19-2018, 09:14 AM - Forum: Networking - Replies (2)

Hi all,

I am trying to code a script to record what return a networked device.
I can connect to that device via RAW PuTTY. The device first retur..... More

Print this item

  How to check UUID format and verion
Posted by: swamyjrs - Dec-19-2018, 08:58 AM - Forum: General Coding Help - Replies (1)

I have to check version 4 UUID which is there as common name in a certificate. Is there any python in built function available to check whether UUID p..... More

Print this item

  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

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  No new line from print in... 9 hours ago Lou snippsat General Codin...
  Python is not working on ... Yesterday, 10:44 lary_p noisefloor General Codin...
  Help with Serial.write in... Yesterday, 04:44 racingsubby Larz60+ General Codin...
  Can I develop a live vide... 11-27, 04:48 mtrkhan mamta25 Web Scraping ...
  silent deployment Python ... 11-26, 21:58 Bummibaer Larz60+ News and Disc...
  Proposal for PEP 11-26, 15:53 matt Gribouillis News and Disc...
  My regex function is not ... 11-26, 08:47 Moltar1997 perfringo General Codin...
  best way to learn python 11-26, 04:40 dutch ichsanputr News and Disc...
  data fetching for indian ... 11-25, 02:50 drakhsin Pedroski55 Web Scraping ...
  PyQt5 - Get a parameter f... 11-24, 14:18 Ninja2112 deanhystad GUI
  Brazil Python Help to aut... 11-21, 20:30 MileHigh303 MileHigh303 Jobs
Most views
  The best Prog... 579474
  Tutorial Requ... 512680
  Web Scraping ... 442333
  Newbie with P... 386390
  New Users Int... 381167
Most reputation
buran 581
snippsat 511
Larz60+ 452
Gribouillis 362
deanhystad 328
Most replies
  New Users Int... 452
  [book] Variou... 188
  CKEditor / Ri... 100
  moving from t... 95
  Free keys and... 91
Top posters
Larz60+ 12113
buran 8196
snippsat 7391
deanhystad 6916
metulburr 5151
Top referrers
Googlepro 23
python 6
metulburr 6
NonEntity 5
buran 3
Newest members
IFDA123 Yesterday
TimTom420 11-27
cruisesfares 11-27
SNR 11-27
Jonathan 11-27

User Panel Messages

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