Skip to content

Commit b3d4ab1

Browse files
author
Pinklesh Parjapati
committed
first commit
0 parents  commit b3d4ab1

8 files changed

Lines changed: 3004 additions & 0 deletions

File tree

.gitignore

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
build/
8+
develop-eggs/
9+
dist/
10+
downloads/
11+
eggs/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
sdist/
17+
var/
18+
wheels/
19+
*.egg-info/
20+
.installed.cfg
21+
*.egg
22+
MANIFEST
23+
24+
# Virtual Environment
25+
venv/
26+
env/
27+
ENV/
28+
.venv
29+
30+
# Poetry
31+
poetry.lock
32+
33+
# IDE
34+
.vscode/
35+
.idea/
36+
*.swp
37+
*.swo
38+
*~
39+
.DS_Store
40+
41+
# Environment variables
42+
.env
43+
.env.local
44+
.env.*.local
45+
46+
# Testing
47+
.pytest_cache/
48+
.coverage
49+
htmlcov/
50+
.tox/
51+
*.cover
52+
.hypothesis/
53+
54+
# Logs
55+
*.log
56+
logs/
57+
58+
# OS
59+
.DS_Store
60+
Thumbs.db
61+
62+
# Generated test projects (from testing the CLI)
63+
fastapi-project/
64+
test-*/
65+
demo-*/
66+
my-*/
67+
quick-*/
68+
69+
# PyCharm
70+
.idea/
71+
72+
# Jupyter Notebook
73+
.ipynb_checkpoints
74+
75+
# pyenv
76+
.python-version
77+
78+
# Backup files
79+
*.bak
80+
*.swp
81+
*~

0 commit comments

Comments
 (0)