Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Code printing twice
#4
Quote:if you only want this to run if the program is executed from command routine, change to:
if __name__ == '__main__':
            # If a giveaway is saved in memory, load it automaticly
    db = database.database()
    db.init()
    print(db.data["userdata"]["help"])
Suprisingly enough, the if '__name__' == '__main__': fixed it.

Quote:Works fine for me (2.7 and 3.6). I did put all the code in one file, and changed the file names, but I don't think that should have changed anything. How exactly are you calling the program?
I'm running it from importing a different file.

(init.py)
initmsg = ["``dsconfig\nInitializing Utilities (Spooper/Utilities/__init__.py)\n\n"]

initmsg.append("Initializing Database.py (Spooper/Utilities/database.py)\n")

import Utilities.database as database

initmsg.append("Finished Initializing Database.py (Spooper/Utilities/database.py)\n\n")

initmsg.append("Initializing Giveaway.py (Spooper/Utilities/giveaway.py)\n")

import Utilities.giveaway as giveaway

initmsg.append("Finished Initializing Giveaway.py (Spooper/Utilities/database.py)\n\n")

initmsg.append("Finished Initializing Utilities (Spooper/Utilities/__init__.py)\n")

initmsg.append("\n``")
initmsg = ''.join(initmsg)
Reply


Messages In This Thread
Code printing twice - by hypersdevelopment - Sep-08-2018, 10:48 PM
RE: Code printing twice - by ichabod801 - Sep-08-2018, 11:32 PM
RE: Code printing twice - by Larz60+ - Sep-08-2018, 11:45 PM
RE: Code printing twice - by hypersdevelopment - Sep-09-2018, 12:06 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  I'm not sure why this code isn't printing... Can someone tell me? Wilminer4 5 3,723 Mar-01-2018, 06:58 PM
Last Post: Wilminer4

Forum Jump:

User Panel Messages

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