This commit is contained in:
marcus 2022-03-17 13:07:35 +01:00
commit 4ae2368f80
10 changed files with 78 additions and 0 deletions

3
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
# Default ignored files
/shelf/
/workspace.xml

10
.idea/_ihk.iml Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/venv" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

4
.idea/misc.xml Normal file
View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.10 (_ihk)" project-jdk-type="Python SDK" />
</project>

8
.idea/modules.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/_ihk.iml" filepath="$PROJECT_DIR$/.idea/_ihk.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

6
README.md Normal file
View File

@ -0,0 +1,6 @@
<h1> Projekt Fragen - Katalog</h1>
Ziel ist es ein Programm mit einer Datenbank zu erstellen, welches:
- Fragen und Antworen einließt
- Ein Auswahlmenü bietet
- Fragen abfragt und die Antwor vergleicht

1
database_connection.py Normal file
View File

@ -0,0 +1 @@
# TODO Database verbindung herstellen

30
datenbank.py Normal file
View File

@ -0,0 +1,30 @@
# TODO: Datenbank Klasse (CRUD)
def create_database():
# TODO Datenbank erstellen
return
def create_table():
# TODO Table erstellen
return
def add():
# TODO Frage / Antwort hinzufügen
return
def read_question():
# TODO Frage / Antwort auslesen
return
def update_question():
# TODO Frage / Antwort Aktualisieren
return
def del_question():
# TODO Frage / Antworte löschen
return

4
main.py Normal file
View File

@ -0,0 +1,4 @@
# TODO: Datenbankabfrage
# Auswahlmenü ( Neue Fragen/ Oder Abrfrage)
# Ein und Ausgabe der Fragen/Antworten