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,297
» Latest member: ichsanputr
» Forum threads: 38,795
» Forum posts: 175,888

Full Statistics

Online Users
There are currently 59 online users.
» 0 Member(s) | 52 Guest(s)
Bing, Google, AOL, Twitter

Latest Threads
My regex function is not ...
Forum: General Coding Help
Last Post: bowlofred
51 minutes ago
» Replies: 2
» Views: 76
best way to learn python
Forum: News and Discussions
Last Post: ichsanputr
1 hour ago
» Replies: 6
» Views: 3,170
silent deployment Python ...
Forum: News and Discussions
Last Post: Larz60+
Yesterday, 11:51 AM
» Replies: 1
» Views: 62
data fetching for indian ...
Forum: Web Scraping & Web Development
Last Post: Pedroski55
Yesterday, 02:50 AM
» Replies: 6
» Views: 236
PyQt5 - Get a parameter f...
Forum: GUI
Last Post: deanhystad
Nov-24-2025, 02:18 PM
» Replies: 5
» Views: 124
Brazil Python Help to aut...
Forum: Jobs
Last Post: MileHigh303
Nov-21-2025, 08:30 PM
» Replies: 0
» Views: 89
My goal to be hired worki...
Forum: News and Discussions
Last Post: mamta25
Nov-21-2025, 06:15 AM
» Replies: 4
» Views: 1,521
[SOLVED] [BeautifulSoup] ...
Forum: Web Scraping & Web Development
Last Post: Winfried
Nov-20-2025, 02:10 PM
» Replies: 2
» Views: 171
How to Implement Real-Tim...
Forum: Web Scraping & Web Development
Last Post: ankitsharma32
Nov-20-2025, 06:48 AM
» Replies: 0
» Views: 80
How to put my game loop i...
Forum: Game Development
Last Post: SledgeNE
Nov-20-2025, 04:59 AM
» Replies: 11
» Views: 6,143

 
  WiFi communication
Posted by: Milad - Sep-06-2019, 07:30 AM - Forum: General Coding Help - Replies (2)

Hi , Im new to python . i want to send a data throw WiFi from my PC to RPi but i dont know how. can i use Socket library ? for example i want to updat..... More

Print this item

  pass captured value from input() to where clause
Posted by: metro17 - Sep-06-2019, 06:49 AM - Forum: General Coding Help - Replies (5)

How can pass the value captured in a variable using input() to a where clause in a select statement?

[python]def ada():
import pyodbc
imp..... More

Print this item

  Sending file html ?
Posted by: JohnnyCoffee - Sep-06-2019, 06:07 AM - Forum: Web Scraping & Web Development - Replies (3)

Hi.

How to make wsgi send an index.html to the browser client ?

Print this item

  I get "None" at the end of my printed result.
Posted by: dyshkant - Sep-06-2019, 04:59 AM - Forum: General Coding Help - Replies (3)

I get "None" at the bottom of my printed result and I don't know where this "None" is coming from.

All works fine. Just really ..... More

Print this item

  authentication required error with urlopen
Posted by: Ranjirock - Sep-06-2019, 03:28 AM - Forum: General Coding Help - Replies (2)

Hello Everyone,
I'm trying following code, but ending up Authentication Required Error. I'm able to browse the website from browser without any crede..... More

Print this item

  a coding style question
Posted by: Skaperen - Sep-06-2019, 03:15 AM - Forum: Bar - Replies (3)

this a question about the style choice you use for your coding in any language. when you have a case of setting a variable to the result of an expres..... More

Print this item

  Use Of Real Names In Postings
Posted by: adt - Sep-06-2019, 02:54 AM - Forum: Board - Replies (19)

It would be nice to know the underlying factors governing non-use of real names in our postings, specially as there is nothing clandestine & the activ..... More

Print this item

  Python thread script gets defunct state
Posted by: xq10907 - Sep-06-2019, 02:02 AM - Forum: General Coding Help - No Replies

I have 2functions

runPA(), it will call a product function to run 10seconds and generate a temp file in /tmp then automatically delete the temp fil..... More

Print this item

  Electric Car battery size updating ????
Posted by: ridgerunnersjw - Sep-06-2019, 01:16 AM - Forum: General Coding Help - Replies (1)

Hello...
I copied the following out of a book as I am trying to teach myself Python....Can someone please tell me how I can create an instance of an ..... More

Print this item

  Loop pandas data frame by position ?
Posted by: Johnse - Sep-05-2019, 08:13 PM - Forum: Data Science - Replies (1)

Hello,

Is there a way to loop a pandas data frame by position ?

The loop is generally this way,

For i, r in a.iterrows():

If I want to st..... More

Print this item

  Not all data returned from sys.argv
Posted by: ecdhyne - Sep-05-2019, 05:21 PM - Forum: General Coding Help - Replies (2)

In my password lookup pgm sys.argv only returns the pgms file location. How do I get the selected input?
[python]
#! python 3
# pw.py - password lo..... More

Print this item

  Trying to understand this GCD recursion
Posted by: ThomasAquinas - Sep-05-2019, 03:52 PM - Forum: General Coding Help - Replies (2)

def euclidean(a, b):
    if b==0: return a
    return euclidean(b, a%b)
It works to give these results:

[python]print(euclide..... More

Print this item

  need code
Posted by: mmm - Sep-05-2019, 03:11 PM - Forum: Homework - Replies (12)

Hello .
I need code to download from the internet a list of files .
Their names + addresses are in a csv file , and no problems with permission / ac..... More

Print this item

  Slow Python Code
Posted by: Jay123 - Sep-05-2019, 02:40 PM - Forum: General Coding Help - Replies (3)

Hi all,

I have two lists that I want to check if the values in the list called data are equal to the values in the list called data2. If they are t..... More

Print this item

  Custom Function to Return Database Values
Posted by: rm78 - Sep-05-2019, 01:01 PM - Forum: General Coding Help - No Replies

A bit new and doing self teaching for python, but I am trying to figure out how best to use an existing dataframe to pass a column value into a where ..... More

Print this item

  multithreading issue with output
Posted by: mr_byte31 - Sep-05-2019, 12:34 PM - Forum: General Coding Help - Replies (4)

My script is working correctly when i have only one thread.
when I make 50 threads, the output result in 'table' seems to have missing entries in each..... More

Print this item

  Problem with For "str" in str["str"]:
Posted by: tarikjabiri - Sep-05-2019, 12:02 PM - Forum: General Coding Help - Replies (2)

Hi, I have a List like this :
[python]
myList = [
"LOT_1,T49359/22",
"LOT_2,T49360/22",
"LOT_3,T49361/22",
"LOT_4,T49362/22",
"LOT_5,T493..... More

Print this item

  reading tab file
Posted by: Mandiph - Sep-05-2019, 08:12 AM - Forum: Data Science - Replies (1)

please help with correct pandas syntax sep to read below pasted tab txt file into columns.It has a lot of header columns>>>

[output]Timestamp Long..... More

Print this item

  missing append in a loop?
Posted by: zarize - Sep-05-2019, 07:45 AM - Forum: Web Scraping & Web Development - Replies (2)

hi guys,

i got stucked on last thing to do my first basic scrapping...

The script is done in a loop but it is getting data only from one page in..... More

Print this item

  Ask for machine learning Python example with 2 data files
Posted by: user5566b - Sep-05-2019, 07:24 AM - Forum: Data Science - Replies (2)

Please advise such simple example in python of machine learning that supports both inputs of training file and test file about code will give output, ..... More

Print this item

  GUI and PDf
Posted by: kevinlau2220 - Sep-05-2019, 04:19 AM - Forum: GUI - Replies (2)

I just started using Python about a week ago and I ran into a road block. I've been trying to make a GUI where a user can select a page on the main me..... More

Print this item

  Is there a coding course for newbies?
Posted by: Edwardstark - Sep-05-2019, 03:21 AM - Forum: Bar - Replies (3)

I'm currently a student and I'm quite interested in learning to code, I have found and read the documentation, but it can only help me the basics, the..... More

Print this item

  Detect system mouse
Posted by: skytag - Sep-05-2019, 02:05 AM - Forum: General Coding Help - Replies (3)

Hi, I'm new to python.
May I know if python is able to detect system mouse from windows and check the connectivity? Undecided

I've been tryi..... More

Print this item

  Bulk insert pandas df data into SQLite dB ?
Posted by: Johnse - Sep-05-2019, 12:35 AM - Forum: News and Discussions - Replies (1)

Hello,

Is there a way to insert BULK data from pandas data frame
into SQLite database that is in memory ? Thanks

Print this item

  IndexError: index out of bounds
Posted by: LeoGER - Sep-05-2019, 12:27 AM - Forum: Data Science - Replies (3)

Hi all, first post to the forum!

I'm getting an index error(shown after script) when running the following code, I would be very grateful if someon..... More

Print this item

  does anyon want to write an untabify command?
Posted by: Skaperen - Sep-04-2019, 11:36 PM - Forum: News and Discussions - Replies (10)

i know Linux has a command called "expand" intended to remove tabs. but it doesn't work right. when you run it with a file name, it just outputs the..... More

Print this item

  Syntax "for" loop, "and", ".isupper()", ".islower", ".isnum()"
Posted by: dcardonaa - Sep-04-2019, 10:11 PM - Forum: Homework - Replies (4)

Hello! I'm trying to run any code but my Kernel needs to be re-started all the time (I have Windows, is that related?), besides I have syntax problems..... More

Print this item

  Paramiko SCPServer Example
Posted by: mickib1 - Sep-04-2019, 08:22 PM - Forum: Networking - No Replies

Hi
I would like to implement a scp server using paramiko,
Can anyone post an example
Below is the SSH server I am using is there a way to teak the ..... More

Print this item

  ImportError: cannot import name 'gui' from 'appJar'
Posted by: CabbageMan - Sep-04-2019, 06:18 PM - Forum: General Coding Help - Replies (1)

I want to use appJar for some simple GUI, but the import function doesn't work. Does anyone know how I can fix it?
The code is taken from "http://app..... More

Print this item

  What's wrong with this if line?
Posted by: Mark17 - Sep-04-2019, 06:08 PM - Forum: Homework - Replies (4)

This gives me the desired output:
[python]
targetfile = input(' Enter a file name: ')
#senders = [] --I don't think I need to create a list, do I?..... More

Print this item

  Need help to extract particular string
Posted by: lokesh - Sep-04-2019, 05:35 PM - Forum: General Coding Help - Replies (3)

Hi,

I want to extract particular string in a file.suppose file contains the following string.

INFO 2019-02-19 20:59:56,178 - Process Start ..... More

Print this item

  Deleting files not present in CSV
Posted by: spw2515 - Sep-04-2019, 05:10 PM - Forum: General Coding Help - Replies (1)

Hi, I am looking for a bit of help with a python method to delete all files 'Not the folders or subfolders' just the files which are listed in a CSV f..... More

Print this item

  Unexpected output: if statement
Posted by: CabbageMan - Sep-04-2019, 04:04 PM - Forum: General Coding Help - Replies (1)

I am pretty new to python, and I am trying to make a encrypter/decrypter, but my "if statement" is not working. Every time i run the program, it runs ..... More

Print this item

  could not find a version that satisfies the requirement geopy
Posted by: beginner1 - Sep-04-2019, 03:29 PM - Forum: General Coding Help - Replies (2)

Hi,

Trying to use geopy and getting message could not find a version that satisfies the requirement geopy
when type pip install geopy

and mess..... More

Print this item

  Applying operation to a pandas multi index dataframe subgroup
Posted by: Nuovoq - Sep-04-2019, 01:56 PM - Forum: Data Science - Replies (1)

Hi all, first time poster, newish to Python.

I have a multi-index pandas dataframe (named dfForex) containing daily forex data for multiple currenc..... More

Print this item

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  My regex function is not ... 51 minutes ago Moltar1997 bowlofred General Codin...
  best way to learn python 1 hour ago dutch ichsanputr News and Disc...
  silent deployment Python ... Yesterday, 11:51 Bummibaer Larz60+ News and Disc...
  data fetching for indian ... Yesterday, 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
  My goal to be hired worki... 11-21, 06:15 GnomeSweetGnome mamta25 News and Disc...
  [SOLVED] [BeautifulSoup] ... 11-20, 14:10 Winfried Winfried Web Scraping ...
  How to Implement Real-Tim... 11-20, 06:48 ankitsharma32 ankitsharma32 Web Scraping ...
  How to put my game loop i... 11-20, 04:59 temlotresid6 SledgeNE Game Developm...
  Help with running PvZ Fus... 11-20, 04:46 Barber532 SledgeNE Game Developm...
Most views
  The best Prog... 579354
  Tutorial Requ... 512299
  Web Scraping ... 442268
  Newbie with P... 386329
  New Users Int... 380140
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+ 12110
buran 8196
snippsat 7390
deanhystad 6916
metulburr 5151
Top referrers
Googlepro 23
metulburr 6
python 6
NonEntity 5
buran 3
Newest members
ichsanputr Today
nicos18 Yesterday
Moltar1997 Yesterday
arthurlouiss Yesterday
LewisByday Yesterday

User Panel Messages

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