Skip to content

Commit 75c4852

Browse files
committed
refactor: remove all the python code
1 parent 0f25f5c commit 75c4852

33 files changed

+119
-4194
lines changed

.dockerignore

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
1-
21
examples/
3-
.venv/
42
.github/
53
.idea/
64
.vscode/
75
.env
86
.gitignore
97
CONTRIBUTING.md
10-
flake8.ini
118
LICENSE.*
129
README.md
13-
__pycache__/*
1410
lib/
15-
.python-version
11+
.secrets

.gitignore

Lines changed: 118 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,123 @@
1-
# Byte-compiled / optimized / DLL files
2-
__pycache__/
3-
*.py[cod]
4-
*$py.class
1+
# Created by https://www.toptal.com/developers/gitignore/api/go,jetbrains+all,direnv
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=go,jetbrains+all,direnv
53

6-
# C extensions
4+
### direnv ###
5+
.direnv
6+
.secrets
7+
.env
8+
9+
### Go ###
10+
# If you prefer the allow list template instead of the deny list, see community template:
11+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
12+
#
13+
# Binaries for programs and plugins
14+
*.exe
15+
*.exe~
16+
*.dll
717
*.so
18+
*.dylib
819

9-
# Distribution / packaging
10-
.Python
11-
env/
12-
build/
13-
!build/sysdig_client-1.0.0.tar.gz
14-
develop-eggs/
15-
dist/
16-
downloads/
17-
eggs/
18-
.eggs/
19-
lib/
20-
lib64/
21-
parts/
22-
sdist/
23-
var/
24-
*.egg-info/
25-
.installed.cfg
26-
*.egg
27-
.env
20+
# Test binary, built with `go test -c`
21+
*.test
2822

29-
# PyInstaller
30-
# Usually these files are written by a python script from a template
31-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32-
*.manifest
33-
*.spec
34-
35-
# Installer logs
36-
pip-log.txt
37-
pip-delete-this-directory.txt
38-
39-
# Unit test / coverage reports
40-
htmlcov/
41-
.tox/
42-
.coverage
43-
.coverage.*
44-
.cache
45-
nosetests.xml
46-
coverage.xml
47-
pytest.xml
48-
*,cover
49-
.hypothesis/
50-
venv/
51-
.venv/
52-
.python-version
53-
.pytest_cache
54-
55-
# Translations
56-
*.mo
57-
*.pot
58-
59-
# Django stuff:
60-
*.log
61-
62-
# Sphinx documentation
63-
docs/_build/
64-
65-
# PyBuilder
66-
target/
67-
68-
#Ipython Notebook
69-
.ipynb_checkpoints
70-
71-
# VSCode
72-
.vscode/
73-
74-
# Nix development
75-
.direnv/
76-
.secrets
23+
# Output of the go coverage tool, specifically when used with LiteIDE
24+
*.out
25+
26+
# Dependency directories (remove the comment below to include it)
27+
# vendor/
28+
29+
# Go workspace file
30+
go.work
31+
32+
### JetBrains+all ###
33+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
34+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
35+
36+
# User-specific stuff
37+
.idea/**/workspace.xml
38+
.idea/**/tasks.xml
39+
.idea/**/usage.statistics.xml
40+
.idea/**/dictionaries
41+
.idea/**/shelf
42+
43+
# AWS User-specific
44+
.idea/**/aws.xml
45+
46+
# Generated files
47+
.idea/**/contentModel.xml
48+
49+
# Sensitive or high-churn files
50+
.idea/**/dataSources/
51+
.idea/**/dataSources.ids
52+
.idea/**/dataSources.local.xml
53+
.idea/**/sqlDataSources.xml
54+
.idea/**/dynamic.xml
55+
.idea/**/uiDesigner.xml
56+
.idea/**/dbnavigator.xml
57+
58+
# Gradle
59+
.idea/**/gradle.xml
60+
.idea/**/libraries
61+
62+
# Gradle and Maven with auto-import
63+
# When using Gradle or Maven with auto-import, you should exclude module files,
64+
# since they will be recreated, and may cause churn. Uncomment if using
65+
# auto-import.
66+
# .idea/artifacts
67+
# .idea/compiler.xml
68+
# .idea/jarRepositories.xml
69+
# .idea/modules.xml
70+
# .idea/*.iml
71+
# .idea/modules
72+
# *.iml
73+
# *.ipr
74+
75+
# CMake
76+
cmake-build-*/
77+
78+
# Mongo Explorer plugin
79+
.idea/**/mongoSettings.xml
80+
81+
# File-based project format
82+
*.iws
83+
84+
# IntelliJ
85+
out/
86+
87+
# mpeltonen/sbt-idea plugin
88+
.idea_modules/
89+
90+
# JIRA plugin
91+
atlassian-ide-plugin.xml
92+
93+
# Cursive Clojure plugin
94+
.idea/replstate.xml
95+
96+
# SonarLint plugin
97+
.idea/sonarlint/
98+
99+
# Crashlytics plugin (for Android Studio and IntelliJ)
100+
com_crashlytics_export_strings.xml
101+
crashlytics.properties
102+
crashlytics-build.properties
103+
fabric.properties
104+
105+
# Editor-based Rest Client
106+
.idea/httpRequests
107+
108+
# Android studio 3.1+ serialized cache file
109+
.idea/caches/build_file_checksums.ser
110+
111+
### JetBrains+all Patch ###
112+
# Ignore everything but code style settings and run configurations
113+
# that are supposed to be shared within teams.
114+
115+
.idea/*
116+
117+
!.idea/codeStyles
118+
!.idea/runConfigurations
119+
120+
### Nix ###
77121
result
122+
123+
# End of https://www.toptal.com/developers/gitignore/api/go,jetbrains+all,direnv

Makefile

Lines changed: 0 additions & 24 deletions
This file was deleted.

main.py

Lines changed: 0 additions & 65 deletions
This file was deleted.

pyproject.toml

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)