mirror of
https://github.com/lucaspalomodevelop/Party.git
synced 2026-03-18 02:04:52 +00:00
26 lines
486 B
Python
26 lines
486 B
Python
from argparse import ArgumentParser
|
|
import os
|
|
import shutil
|
|
from webserver import main
|
|
sessionname = "Test Session"
|
|
|
|
def create_session():
|
|
if not os.path.exists(sessionname):
|
|
os.makedirs(sessionname)
|
|
if not os.path.exists('sammlung'):
|
|
os.makedirs('sammlung')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"""
|
|
def main():
|
|
parser = ArgumentParser(description='Lan Party Management')
|
|
"""
|
|
|
|
if __name__ == "__main__":
|
|
sessionname = input("Session Name: ")
|
|
create_session()
|
|
main(sessionname) |