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,939
» Latest member: goodvicent
» Forum threads: 38,724
» Forum posts: 175,513

Full Statistics

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

Latest Threads
private dating for adults
Forum: General Coding Help
Last Post: xyz987
10 minutes ago
» Replies: 0
» Views: 3
NEED HELP, LOST OF INVEST...
Forum: General Coding Help
Last Post: goodvicent
2 hours ago
» Replies: 0
» Views: 65
403 Error
Forum: Web Scraping & Web Development
Last Post: snippsat
7 hours ago
» Replies: 11
» Views: 4,088
what does % stand for in ...
Forum: General Coding Help
Last Post: arbiel
Sep-19-2025, 07:55 PM
» Replies: 2
» Views: 569
Scraping a page with log ...
Forum: Web Scraping & Web Development
Last Post: Hershien
Sep-19-2025, 12:30 PM
» Replies: 1
» Views: 3,510
C++ program embedding Pyt...
Forum: General Coding Help
Last Post: Alexandros
Sep-19-2025, 11:11 AM
» Replies: 4
» Views: 922
Too much space between gr...
Forum: GUI
Last Post: RonR
Sep-17-2025, 11:22 AM
» Replies: 4
» Views: 2,407
datetime in SQL query.
Forum: General Coding Help
Last Post: Dibbley
Sep-17-2025, 10:31 AM
» Replies: 3
» Views: 1,265
Another app idea - intera...
Forum: News and Discussions
Last Post: Lenowell
Sep-16-2025, 07:07 AM
» Replies: 1
» Views: 1,467
real community
Forum: News and Discussions
Last Post: decuser
Sep-15-2025, 08:16 PM
» Replies: 3
» Views: 2,435

 
  Matching emails in outlook 2016
Posted by: Erdix - Jan-16-2018, 01:15 PM - Forum: News and Discussions - Replies (7)

Hi there,

As a NOC engineer, every morning my first task is to check the NOC emailbox where over 200 emails are coming to. Emails are automatically..... More

Print this item

  Text from sql to python
Posted by: MilkWaffler - Jan-16-2018, 12:46 PM - Forum: General Coding Help - Replies (4)

Hello! How would I make it so, when I put a user into a SQL database, it would automatically transfer over to a Python GUI?

Print this item

  The size of the array returned by func (1) does not match
Posted by: usmankhan - Jan-16-2018, 12:27 PM - Forum: Data Science - No Replies

I am new to python, so please bear with me. I am solving a model using odeint function in Python in which I am getting an error: [b]The size o..... More

Print this item

  Django translation 2 languages( Deutsch and Austrian)
Posted by: sonic911 - Jan-16-2018, 09:48 AM - Forum: Web Scraping & Web Development - Replies (2)

Hello!
Short version of question: Does django have de-at(Austrian version of Deutsch) and how can I define it?
I need to create website with 2 langu..... More

Print this item

  Cant create a py to exe file
Posted by: ranjithcr2 - Jan-16-2018, 09:41 AM - Forum: GUI - Replies (3)

Hi all,

please help me to convert py program to exe which i created with pyqt4. i have tried pyinstaller, py2exe and all available sources,but noth..... More

Print this item

  canvas.create_text doesn't work in a function
Posted by: vmarinelli - Jan-16-2018, 09:31 AM - Forum: GUI - Replies (2)

Hello,

I've been trying to write a reaction time task with stimuli appearing on screen using the tkinter module.

While this function does work:..... More

Print this item

  Free Programming Notes for Professionals Books
Posted by: buran - Jan-16-2018, 09:23 AM - Forum: News and Discussions - Replies (2)

This collection of free books named "Programming Notes for Professionals" looks interesting
http://books.goalkicker.com/

and the Python book
http..... More

Print this item

  Challenging BS4 Problem
Posted by: digitalmatic7 - Jan-16-2018, 08:42 AM - Forum: Web Scraping & Web Development - Replies (5)

Hey guys, I'm trying to improve my scraping abilities, so I've been practicing and trying to scrape some tough to obtain data. I've run into issues wi..... More

Print this item

  problem with PyQt4
Posted by: jss15497 - Jan-16-2018, 08:32 AM - Forum: GUI - No Replies

Hi everyone,
I have developed a python script which uses PyQt to draw an icon on the notification bar. When I run the script, it works fine, but when..... More

Print this item

  C++ accepts "é" "ù" "è" while python3 does not
Posted by: sylas - Jan-16-2018, 08:28 AM - Forum: General Coding Help - Replies (2)

Hi all! I use Pycharm community edition, together with python3. How is it possible they don't accept french characters in the strings, while C++ accep..... More

Print this item

  Looping Input form / results
Posted by: MikeAW2010 - Jan-16-2018, 06:50 AM - Forum: General Coding Help - Replies (5)

I am learning Python and PyMongo a bit on the fly.

Here is a basic gist of what I need but I dont know the best way to pursue it. I need Python to ..... More

Print this item

  Help with pandas dataframe
Posted by: saibottrenham - Jan-16-2018, 06:36 AM - Forum: Data Science - No Replies

Hey guys,

I have a data frame such as

[python]dfA =
id jobtag suc_score
0 54 channel m..... More

Print this item

  I've been programming in a vacuum
Posted by: Rabbyte - Jan-16-2018, 02:46 AM - Forum: Game Development - Replies (9)

I have been developing a program to emulate the terminal operating system from the fallout universe, I aim to make it a fully functional interface add..... More

Print this item

  Writing emojis to file
Posted by: alex36540 - Jan-16-2018, 01:16 AM - Forum: General Coding Help - Replies (1)

Hello, I am dealing with data that involves emojis and I would like to write them to a file. The data does not come from inside the python editor, I r..... More

Print this item

  importing datetime trouble
Posted by: Dixon - Jan-15-2018, 10:52 PM - Forum: General Coding Help - Replies (4)

I'm new here, so please excuse if this is posted in the wrong place. I've been trying to learn Python, using ver. 3.6.4, and for the most part am ent..... More

Print this item

  Question for dataframe to replace INF value
Posted by: zydjohn - Jan-15-2018, 10:00 PM - Forum: Data Science - No Replies

[python]
import pandas as pd
df1 = pd.DataFrame({'a': [1.0, 1.1, 1.2 ], 'b': [ 0.5, 1.1, 1.0 ]})
mid = (df1['a'] + df1['b']) / 2.0
aMid = df1['a']..... More

Print this item

  Alternative for time.sleep()?
Posted by: Atkion - Jan-15-2018, 09:49 PM - Forum: General Coding Help - Replies (1)

Ok, so I'm trying to design a giveaway system for an IRC chatbot. What I want to do is when someone puts in the !giveaway command, it sets isOpen to t..... More

Print this item

  Chaining scripts
Posted by: Steffenwolt - Jan-15-2018, 09:30 PM - Forum: General Coding Help - Replies (3)

Hello all,For datalogging purposes i have concoted several scripts.
One reads a MCP3008 adc, another reads several 1-wire sensors, one gets the date ..... More

Print this item

  What is effort?
Posted by: mamagosia - Jan-15-2018, 08:30 PM - Forum: General Coding Help - Replies (2)

Hello,

I found in the Net a code that is very helpful for me in my project. When I analyze it I have found:

[python]
tab.effort = [b[0],b[1], ..... More

Print this item

  is there a way to automate instatiation of objects?
Posted by: league55 - Jan-15-2018, 08:29 PM - Forum: General Coding Help - Replies (2)

Suppose I want to create a Card class for standard playing cards like this:

[python]class Card:

def __init__(self, description, strength):
..... More

Print this item

  How do I make an advanced shader
Posted by: Rabbyte - Jan-15-2018, 07:26 PM - Forum: Game Development - Replies (3)

I have been using pygame a couple months now and have been using it to recreate the terminal interface from the fallout universe (with a few tweaks to..... More

Print this item

  Backup Retail POS
Posted by: pando - Jan-15-2018, 07:05 PM - Forum: Code sharing - Replies (4)

While at work yesterday (small retail setting) the POS systems all crashed and left us manually writing down and calculating taxes by hand. I experime..... More

Print this item

  How can I create a keystore?
Posted by: kivyuser - Jan-15-2018, 05:41 PM - Forum: General Coding Help - No Replies

What are the steps to create a keystore for android i use XUBUNTU,i know its not right place for post this question please be patience with me but i ..... More

Print this item

  Passing string args to Popen
Posted by: CardBoy - Jan-15-2018, 05:30 PM - Forum: General Coding Help - Replies (3)

Hi
I want to execute this command via Popen in my python script

[quote]
diff --old-line-format="" --new-line-format="%5dn> %L" --unchanged-lin..... More

Print this item

  Phillips hue simple on script
Posted by: Kimzer - Jan-15-2018, 05:10 PM - Forum: General Coding Help - Replies (6)

Any reason this shouldnt work anymore?`
Updated my raspberry pi and since it has been unable to actually turn my phillips hue lights on with the scri..... More

Print this item

  Issue using print statement in a thread
Posted by: bweiss1258 - Jan-15-2018, 03:22 PM - Forum: General Coding Help - Replies (9)

I'm having an issue with text output from a thread staying visible in the interpreter. The code below can be used to demonstrate the problem following..... More

Print this item

  How does multi-processing in python increase the execution time?
Posted by: kadsank - Jan-15-2018, 01:15 PM - Forum: General Coding Help - No Replies

I have tried simple piece of python code containing two for-loops using multi-processing pool.

First I set the pool=1, total execution time was= 22..... More

Print this item

  locating element with selenium after login
Posted by: sumandas89 - Jan-15-2018, 12:44 PM - Forum: Web Scraping & Web Development - Replies (1)

I wrote a script to locate the search bar in my facebook home page. Code for login into my facebook profile using selenium worked perfectly. I got the..... More

Print this item

  Sql Injection using python
Posted by: sumandas89 - Jan-15-2018, 11:29 AM - Forum: General Coding Help - Replies (2)

Is it possible to write sql injection code using python? How can I learn to write this? I know sql and web scraping using pyhton what are the other th..... More

Print this item

  date format without time
Posted by: issac_n - Jan-15-2018, 10:53 AM - Forum: Data Science - Replies (6)

i wanted to truncate the time from this 03/01/2018 00:00 to 2018-01-03 and i tried list comprehension but working. Doh
any idea?
[python] ..... More

Print this item

  Use of zlib and iconv in building lxml
Posted by: sachinsharma - Jan-15-2018, 09:52 AM - Forum: General Coding Help - Replies (3)

up vote
0
down vote
favorite
We have build lxml4.0.0 with python 2 version with 5 dependencies

iconv-1.9.1.win32.zip,

libxml2-2.6.23.win32.z..... More

Print this item

  Looping help
Posted by: Wilson1218 - Jan-15-2018, 06:47 AM - Forum: Homework - Replies (21)

Hello, I need help looping some code. The problem is that there are many lists that I have to .append to and they are all named similarly, but differe..... More

Print this item

  a solution to the Subset Sum Problem
Posted by: league55 - Jan-15-2018, 02:56 AM - Forum: Code sharing - Replies (16)

(The Subset Sum Problem involves determining whether any combination of the elements of a set of integers adds up to zero. For example, for the set {-..... More

Print this item

  Make my codes more simple,
Posted by: Codebringer - Jan-14-2018, 10:18 PM - Forum: General Coding Help - Replies (3)

Hi,
Is there a way to write my code more simple, more readable, cleaner. I need all the help I can get. Im headed to germany for a famillie reunion a..... More

Print this item

  Rock Paper Scissors (Need help)
Posted by: Lukili - Jan-14-2018, 09:21 PM - Forum: General Coding Help - Replies (1)

So i've been trying to figure out what is wrong here but i think that i dont have enough experience in python yet.
Can anyone point out my mistake h..... More

Print this item

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  private dating for adults 10 minutes ago xyz987 xyz987 General Codin...
  NEED HELP, LOST OF INVEST... 2 hours ago goodvicent goodvicent General Codin...
  403 Error 7 hours ago CaptainNewb snippsat Web Scraping ...
  what does % stand for in ... 09-19, 19:55 arbiel arbiel General Codin...
  Scraping a page with log ... 09-19, 12:30 iamaghost Hershien Web Scraping ...
  C++ program embedding Pyt... 09-19, 11:11 Alexandros Alexandros General Codin...
  [Tkinter] Too much space ... 09-17, 11:22 RonR RonR GUI
  datetime in SQL query. 09-17, 10:31 Dibbley Dibbley General Codin...
  Another app idea - intera... 09-16, 07:07 decuser Lenowell News and Disc...
  real community 09-15, 20:16 decuser decuser News and Disc...
  variable changing types f... 09-15, 18:45 Azdaghost Gribouillis General Codin...
Most views
  The best Prog... 576406
  Tutorial Requ... 498158
  Web Scraping ... 440303
  Newbie with P... 384189
  New Users Int... 367154
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 8175
snippsat 7368
deanhystad 6891
metulburr 5151
Top referrers
Googlepro 23
metulburr 6
NonEntity 6
python 6
buran 3
Newest members
goodvicent Yesterday
atylerfraces2254 Yesterday
AdrianCocian Yesterday
humanoidAI Yesterday
Baran12332 09-19

User Panel Messages

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