Quellcode durchsuchen

Initial commit

master
Ellis vor 5 Jahren
Commit
5410fa1494
2 geänderte Dateien mit 125 neuen und 0 gelöschten Zeilen
  1. 123
    0
      .gitignore
  2. 2
    0
      README.md

+ 123
- 0
.gitignore Datei anzeigen

@@ -0,0 +1,123 @@
1
+# ---> VisualStudioCode
2
+.vscode/*
3
+!.vscode/settings.json
4
+!.vscode/tasks.json
5
+!.vscode/launch.json
6
+!.vscode/extensions.json
7
+
8
+# ---> Python
9
+# Byte-compiled / optimized / DLL files
10
+__pycache__/
11
+*.py[cod]
12
+*$py.class
13
+
14
+# C extensions
15
+*.so
16
+
17
+# Distribution / packaging
18
+.Python
19
+build/
20
+develop-eggs/
21
+dist/
22
+downloads/
23
+eggs/
24
+.eggs/
25
+lib/
26
+lib64/
27
+parts/
28
+sdist/
29
+var/
30
+wheels/
31
+*.egg-info/
32
+.installed.cfg
33
+*.egg
34
+MANIFEST
35
+
36
+# PyInstaller
37
+#  Usually these files are written by a python script from a template
38
+#  before PyInstaller builds the exe, so as to inject date/other infos into it.
39
+*.manifest
40
+*.spec
41
+
42
+# Installer logs
43
+pip-log.txt
44
+pip-delete-this-directory.txt
45
+
46
+# Unit test / coverage reports
47
+htmlcov/
48
+.tox/
49
+.nox/
50
+.coverage
51
+.coverage.*
52
+.cache
53
+nosetests.xml
54
+coverage.xml
55
+*.cover
56
+.hypothesis/
57
+.pytest_cache/
58
+
59
+# Translations
60
+*.mo
61
+*.pot
62
+
63
+# Django stuff:
64
+*.log
65
+local_settings.py
66
+db.sqlite3
67
+
68
+# Flask stuff:
69
+instance/
70
+.webassets-cache
71
+
72
+# Scrapy stuff:
73
+.scrapy
74
+
75
+# Sphinx documentation
76
+docs/_build/
77
+
78
+# PyBuilder
79
+target/
80
+
81
+# Jupyter Notebook
82
+.ipynb_checkpoints
83
+
84
+# IPython
85
+profile_default/
86
+ipython_config.py
87
+
88
+# pyenv
89
+.python-version
90
+
91
+# celery beat schedule file
92
+celerybeat-schedule
93
+
94
+# SageMath parsed files
95
+*.sage.py
96
+
97
+# Environments
98
+.env
99
+.venv
100
+env/
101
+venv/
102
+ENV/
103
+env.bak/
104
+venv.bak/
105
+
106
+# Spyder project settings
107
+.spyderproject
108
+.spyproject
109
+
110
+# Rope project settings
111
+.ropeproject
112
+
113
+# mkdocs documentation
114
+/site
115
+
116
+# mypy
117
+.mypy_cache/
118
+.dmypy.json
119
+dmypy.json
120
+
121
+# Pyre type checker
122
+.pyre/
123
+

+ 2
- 0
README.md Datei anzeigen

@@ -0,0 +1,2 @@
1
+# chouse_train
2
+

Laden…
Abbrechen
Speichern