Skip to content

Commit 557dd70

Browse files
committed
Project structure setup added
1 parent c81b3d8 commit 557dd70

18 files changed

Lines changed: 11086 additions & 0 deletions

File tree

.github/workflows/main.yaml

Whitespace-only changes.

.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Python-generated files
2+
__pycache__/
3+
*.py[oc]
4+
build/
5+
dist/
6+
wheels/
7+
*.egg-info
8+
9+
# Virtual environments
10+
.venv
11+
12+
# Environment variables
13+
.env
14+
15+
# System-generated files
16+
.DS_Store

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.12

Dockerfile

Whitespace-only changes.

Network_Data/phisingData.csv

Lines changed: 11056 additions & 0 deletions
Large diffs are not rendered by default.

main.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
def main():
2+
print("Hello from network-security-system-mlops-project!")
3+
4+
5+
if __name__ == "__main__":
6+
main()

network_security/__init__.py

Whitespace-only changes.

network_security/cloud/__init__.py

Whitespace-only changes.

network_security/components/__init__.py

Whitespace-only changes.

network_security/constant/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)