Skip to content

Commit 8d3b67a

Browse files
committed
Initial commit
0 parents  commit 8d3b67a

27 files changed

+1465
-0
lines changed

.env-example

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
AXONOPS_ORG_ID="youraxonopsorg"
2+
AXONOPS_API_SECRET_TOKEN="yourapitoken"

.gitignore

+231
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,231 @@
1+
config/*
2+
!config/.gittouch
3+
!config/example_config.yaml
4+
5+
6+
results/csv/*/*
7+
!results/csv/.gittouch
8+
9+
logs/*
10+
!logs/.gittouch
11+
12+
# Created by .ignore support plugin (hsz.mobi)
13+
### Python template
14+
# Byte-compiled / optimized / DLL files
15+
__pycache__/
16+
*.py[cod]
17+
*$py.class
18+
19+
# C extensions
20+
*.so
21+
22+
# Distribution / packaging
23+
.Python
24+
env/
25+
build/
26+
develop-eggs/
27+
dist/
28+
downloads/
29+
eggs/
30+
.eggs/
31+
lib/
32+
lib64/
33+
parts/
34+
sdist/
35+
var/
36+
*.egg-info/
37+
.installed.cfg
38+
*.egg
39+
40+
# PyInstaller
41+
# Usually these files are written by a python script from a template
42+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
43+
*.manifest
44+
*.spec
45+
46+
# Installer logs
47+
pip-log.txt
48+
pip-delete-this-directory.txt
49+
50+
# Unit test / coverage reports
51+
htmlcov/
52+
.tox/
53+
.coverage
54+
.coverage.*
55+
.cache
56+
nosetests.xml
57+
coverage.xml
58+
*,cover
59+
.hypothesis/
60+
61+
# Translations
62+
*.mo
63+
*.pot
64+
65+
# Django stuff:
66+
*.log
67+
local_settings.py
68+
69+
# Flask stuff:
70+
instance/
71+
.webassets-cache
72+
73+
# Scrapy stuff:
74+
.scrapy
75+
76+
# Sphinx documentation
77+
docs/_build/
78+
79+
# PyBuilder
80+
target/
81+
82+
# IPython Notebook
83+
.ipynb_checkpoints
84+
85+
# pyenv
86+
.python-version
87+
88+
# celery beat schedule file
89+
celerybeat-schedule
90+
91+
# dotenv
92+
.env
93+
94+
# virtualenv
95+
venv/
96+
ENV/
97+
.pyvenv/
98+
99+
# Spyder project settings
100+
.spyderproject
101+
102+
# Rope project settings
103+
.ropeproject
104+
### VirtualEnv template
105+
# Virtualenv
106+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
107+
[Bb]in
108+
[Ii]nclude
109+
[Ll]ib
110+
[Ll]ib64
111+
[Ll]ocal
112+
[Ss]cripts
113+
pyvenv.cfg
114+
.venv
115+
pip-selfcheck.json
116+
117+
### JetBrains template
118+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
119+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
120+
121+
# User-specific stuff
122+
.idea/**/workspace.xml
123+
.idea/**/tasks.xml
124+
.idea/**/usage.statistics.xml
125+
.idea/**/dictionaries
126+
.idea/**/shelf
127+
128+
# AWS User-specific
129+
.idea/**/aws.xml
130+
131+
# Generated files
132+
.idea/**/contentModel.xml
133+
134+
# Sensitive or high-churn files
135+
.idea/**/dataSources/
136+
.idea/**/dataSources.ids
137+
.idea/**/dataSources.local.xml
138+
.idea/**/sqlDataSources.xml
139+
.idea/**/dynamic.xml
140+
.idea/**/uiDesigner.xml
141+
.idea/**/dbnavigator.xml
142+
143+
# Gradle
144+
.idea/**/gradle.xml
145+
.idea/**/libraries
146+
147+
# Gradle and Maven with auto-import
148+
# When using Gradle or Maven with auto-import, you should exclude module files,
149+
# since they will be recreated, and may cause churn. Uncomment if using
150+
# auto-import.
151+
# .idea/artifacts
152+
# .idea/compiler.xml
153+
# .idea/jarRepositories.xml
154+
# .idea/modules.xml
155+
# .idea/*.iml
156+
# .idea/modules
157+
# *.iml
158+
# *.ipr
159+
160+
# CMake
161+
cmake-build-*/
162+
163+
# Mongo Explorer plugin
164+
.idea/**/mongoSettings.xml
165+
166+
# File-based project format
167+
*.iws
168+
169+
# IntelliJ
170+
out/
171+
172+
# mpeltonen/sbt-idea plugin
173+
.idea_modules/
174+
175+
# JIRA plugin
176+
atlassian-ide-plugin.xml
177+
178+
# Cursive Clojure plugin
179+
.idea/replstate.xml
180+
181+
# SonarLint plugin
182+
.idea/sonarlint/
183+
184+
# Crashlytics plugin (for Android Studio and IntelliJ)
185+
com_crashlytics_export_strings.xml
186+
crashlytics.properties
187+
crashlytics-build.properties
188+
fabric.properties
189+
190+
# Editor-based Rest Client
191+
.idea/httpRequests
192+
193+
# Android studio 3.1+ serialized cache file
194+
.idea/caches/build_file_checksums.ser
195+
196+
# idea folder, uncomment if you don't need it
197+
# .idea
198+
199+
data/results/*
200+
!data/results/.gittouch
201+
202+
data/queryconfig/*
203+
!data/queryconfig/query_config_example.json
204+
205+
# General
206+
.DS_Store
207+
.AppleDouble
208+
.LSOverride
209+
210+
# Icon must end with two \r
211+
Icon
212+
213+
214+
# Thumbnails
215+
._*
216+
217+
# Files that might appear in the root of a volume
218+
.DocumentRevisions-V100
219+
.fseventsd
220+
.Spotlight-V100
221+
.TemporaryItems
222+
.Trashes
223+
.VolumeIcon.icns
224+
.com.apple.timemachine.donotpresent
225+
226+
# Directories potentially created on remote AFP share
227+
.AppleDB
228+
.AppleDesktop
229+
Network Trash Folder
230+
Temporary Items
231+
.apdisk

.idea/.gitignore

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/axonops-csv-extractor.iml

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

+32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)