Skip to content

Commit c90d8c4

Browse files
committed
updates
1 parent 73970c6 commit c90d8c4

File tree

8 files changed

+88
-1
lines changed

8 files changed

+88
-1
lines changed

.gitignore

Lines changed: 88 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,89 @@
11
model_inventory.csv
2-
/.venv
2+
3+
# Byte-compiled / optimized / DLL files
4+
__pycache__/
5+
*.py[cod]
6+
*$py.class
7+
8+
# C extensions
9+
*.so
10+
11+
# Distribution / packaging
12+
.Python
13+
build/
14+
develop-eggs/
15+
dist/
16+
downloads/
17+
eggs/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
wheels/
25+
pip-wheel-metadata/
26+
share/python-wheels/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
MANIFEST
31+
32+
# Virtual environments
33+
.venv/
34+
venv/
35+
ENV/
36+
env/
37+
env.bak/
38+
venv.bak/
39+
40+
# PyInstaller
41+
*.manifest
42+
*.spec
43+
44+
# Installer logs
45+
pip-log.txt
46+
pip-delete-this-directory.txt
47+
48+
# Unit test / coverage
49+
htmlcov/
50+
.tox/
51+
.nox/
52+
.coverage
53+
.coverage.*
54+
.cache
55+
nosetests.xml
56+
coverage.xml
57+
*.cover
58+
.hypothesis/
59+
.pytest_cache/
60+
pytestdebug.log
61+
62+
# mypy
63+
.mypy_cache/
64+
.dmypy.json
65+
dmypy.json
66+
67+
# Pyre
68+
.pyre/
69+
70+
# pytype
71+
.pytype/
72+
73+
# Cython debug symbols
74+
cython_debug/
75+
76+
# VS Code
77+
.vscode/
78+
79+
# IDEs
80+
.idea/
81+
*.sublime-project
82+
*.sublime-workspace
83+
84+
# macOS
85+
.DS_Store
86+
87+
# Jupyter
88+
.ipynb_checkpoints/
89+
-601 Bytes
Binary file not shown.
-601 Bytes
Binary file not shown.
-598 Bytes
Binary file not shown.
-598 Bytes
Binary file not shown.
-2.45 KB
Binary file not shown.
-597 Bytes
Binary file not shown.
-3.63 KB
Binary file not shown.

0 commit comments

Comments
 (0)