This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
import os | |
import time | |
def create_exe_direct_method(): | |
"""Creează executabilul în subfolderul dist""" | |
# Calea completă a fișierului Python într-un singur rând | |
python_file = r"e:\Carte\BB\17 - Site Leadership\alte\Ionel Balauta\Aryeht\Task 1 - Traduce tot site-ul\Doar Google Web\Andreea\Meditatii\2023\Formular jucatori Claude.py" | |
dist_dir = os.path.join(os.path.dirname(python_file), "dist") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
import subprocess | |
def create_exe_clean(): | |
"""Creează executabilul și afișează mesaj elegant de succes""" | |
print("🔨 CREATOR EXECUTABIL FORMULAR JUCĂTORI FOTBAL") | |
print("="*60) | |
print("🎯 Se creează fișierul .exe pentru aplicația de gestiune jucători") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
import subprocess | |
def create_python_launcher(): | |
"""Creează un launcher care rulează aplicația direct cu Python""" | |
print("🚀 SOLUȚIE ALTERNATIVĂ - LAUNCHER PYTHON DIRECT") | |
print("="*60) | |
print("🎯 Obiectiv: Rulează aplicația fără a crea executabil PyInstaller") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
import os | |
def create_exe_direct_method(): | |
"""Creează executabilul în subfolderul output""" | |
# Calea completă a fișierului Python într-un singur rând | |
python_file = r"e:\Carte\BB\17 - Site Leadership\alte\Ionel Balauta\Aryeht\Task 1 - Traduce tot site-ul\Doar Google Web\Andreea\Meditatii\2023\Formular jucatori Claude.py" | |
output_dir = os.path.join(os.path.dirname(python_file), "output") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
import os | |
def create_exe_direct_method(): | |
"""Creează executabilul în subfolderul output""" | |
base_dir = r"e:\Carte\BB\17 - Site Leadership\alte\Ionel Balauta\Aryeht\Task 1 - Traduce tot site-ul\Doar Google Web\Andreea\Meditatii\2023" | |
python_file = os.path.join(base_dir, "Formular jucatori Claude.py") | |
output_dir = os.path.join(base_dir, "output") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
import sys | |
import os | |
# Configurație auto-py-to-exe | |
config = { | |
"script_location": r"e:\Carte\BB\17 - Site Leadership\alte\Ionel Balauta\Aryeht\Task 1 - Traduce tot site-ul\Doar Google Web\Andreea\Meditatii\2023\Formular jucatori Claude.py", | |
"onefile": True, | |
"console": False, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
import subprocess | |
def create_python_launcher(): | |
"""Creează un launcher care rulează aplicația direct cu Python""" | |
print("🚀 SOLUȚIE ALTERNATIVĂ - LAUNCHER PYTHON DIRECT") | |
print("="*60) | |
print("🎯 Obiectiv: Rulează aplicația fără a crea executabil PyInstaller") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tkinter as tk | |
from tkinter import ttk, messagebox | |
import sqlite3 | |
class FootballPlayersApp: | |
def __init__(self, root): | |
self.root = root | |
self.root.title("🏆 Gestiune Jucători Fotbal - Aplicație Avansată") | |
self.root.geometry("1200x800") | |
self.root.configure(bg='#f0f0f0') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tkinter as tk | |
from tkinter import ttk, messagebox | |
import sqlite3 | |
class FootballPlayersApp: | |
def __init__(self, root): | |
self.root = root | |
self.root.title("🏆 Gestiune Jucători Fotbal - Aplicație Avansată") | |
self.root.geometry("1200x800") | |
self.root.configure(bg='#f0f0f0') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tkinter as tk | |
from tkinter import ttk, messagebox | |
import sqlite3 | |
from datetime import datetime | |
import math | |
class FootballPlayersApp: | |
def __init__(self, root): | |
self.root = root | |
self.root.title("🏆 Gestiune Jucători Fotbal - Aplicație Avansată") |
NewerOlder