Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm just fed up from python codes and spaces can any one help me in this code spaces!!

enter code here

import sys
from threading import Thread
import socket
import MySQLdb

allClients=[]

class Client(Thread):

    def __init__(self,clientSocket):
                Thread.__init__(self)
                self.sockfd = clientSocket #socket client
                self.name = ""
                self.nickName = ""

    def newClientConnect(self):

      allClients.append(self.sockfd)
while True:  
#while True:
      try:
             rm= self.sockfd.recv(2048)
             print rm

             def run(self):
                self.newClientConnect()
                while True:
                        buff = self.sockfd.recv(2048)
                        if buff.strip() == 'quit':
                             self.sockfd.close()
                            break # Exit when break
                            else:
self.sendAll(buff)


if __name__ == "__main__": 

    #Server Connection to socket:
    IP = '10.0.2.2'
    PORT = 5807
    serversocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    serversocket.setsockopt( socket.SOL_SOCKET, socket.SO_REUSEADDR, 1 )
    print ("Server Started")
    try:
        serversocket.bind(('',54638))
    except ValueError,e:
        print e
    serversocket.listen(5)


    db= MySQLdb.connect(host= "localhost",
                  user="root",
                  passwd="newpassword",
                  db="new_schema")
#setup cursor
cursor = db.cursor()
#create anooog1 table
cursor.execute("DROP TABLE IF EXISTS try")
#sql = """CREATE TABLE game (COL1 INT, COL2 INT, PRIMARY KEY (COL1))"""
sql="""CREATE TABLE try (COL1 VARCHAR(45), COL2 VARCHAR(45), PRIMARY KEY (COL1)) """ 
cursor.execute(sql)


#insert to table
cursor.execute("""INSERT INTO try VALUES (%s,%s)""",("opa","myghost"))
db.commit()   
db.rollback()
#show table
cursor.execute("""SELECT * FROM try""")

print cursor.fetchall()
db.close()


#####################    #Server Connection to MySQL:
  #  conn =MySQLdb.connect(host= "localhost",
   #                   user="root",
    #                  passwd="newpassword",
     #                 db="new_schema")

    #x=conn.cursor()

    #x.execute("SELECT *  FROM game")


    #row = x.fetchall()


    print "Connected to the Database"

##################    #Server Waiting for any Clients:  
while True:
        (clientSocket, address) = serversocket.accept()
        print 'New connection from ', address
        ct = Client(clientSocket)
        ct.start()




__all__ = ['allClients','Client']
share|improve this question
5  
This is not www.indent-my-code.com – ThiefMaster Apr 25 '11 at 0:30

closed as not a real question by ThiefMaster, icktoofay, payne, LittleBobbyTables, Tim Cooper Apr 25 '11 at 0:33

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Use spaces. Don't EVER use tabs. Use a consistent number of spaces for indentation (the preferred number is 4). Use tabnanny as well:

python -m tabnanny myscript.py

The problem with your script is inconsistent indentation. Some places you indent 8 spaces, some 1, some 2, and some 4. Use 4 spaces for indentation, no tabs, throughout and you'll be okay.

Configure your editor to use spaces, not tabs, and indent blocks by 4 spaces.

If you can't do that, I don't know what to say.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.