elm-tool 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. elm_tool-0.1.0/.gitignore +179 -0
  2. elm_tool-0.1.0/LICENSE +674 -0
  3. elm_tool-0.1.0/PKG-INFO +567 -0
  4. elm_tool-0.1.0/README.md +531 -0
  5. elm_tool-0.1.0/elm/__init__.py +48 -0
  6. elm_tool-0.1.0/elm/api.py +569 -0
  7. elm_tool-0.1.0/elm/cli.py +8 -0
  8. elm_tool-0.1.0/elm/core/__init__.py +48 -0
  9. elm_tool-0.1.0/elm/core/config.py +199 -0
  10. elm_tool-0.1.0/elm/core/copy.py +997 -0
  11. elm_tool-0.1.0/elm/core/environment.py +667 -0
  12. elm_tool-0.1.0/elm/core/exceptions.py +65 -0
  13. elm_tool-0.1.0/elm/core/generation.py +274 -0
  14. elm_tool-0.1.0/elm/core/masking.py +401 -0
  15. elm_tool-0.1.0/elm/core/streaming.py +695 -0
  16. elm_tool-0.1.0/elm/core/types.py +127 -0
  17. elm_tool-0.1.0/elm/core/utils.py +190 -0
  18. elm_tool-0.1.0/elm/core/venv.py +295 -0
  19. elm_tool-0.1.0/elm/elm.py +34 -0
  20. elm_tool-0.1.0/elm/elm_commands/__init__.py +8 -0
  21. elm_tool-0.1.0/elm/elm_commands/config.py +228 -0
  22. elm_tool-0.1.0/elm/elm_commands/copy.py +145 -0
  23. elm_tool-0.1.0/elm/elm_commands/environment.py +421 -0
  24. elm_tool-0.1.0/elm/elm_commands/generate.py +99 -0
  25. elm_tool-0.1.0/elm/elm_commands/mask.py +219 -0
  26. elm_tool-0.1.0/elm/elm_utils/__init__.py +13 -0
  27. elm_tool-0.1.0/elm/elm_utils/command_utils.py +61 -0
  28. elm_tool-0.1.0/elm/elm_utils/data_utils.py +46 -0
  29. elm_tool-0.1.0/elm/elm_utils/db_utils.py +400 -0
  30. elm_tool-0.1.0/elm/elm_utils/encryption.py +91 -0
  31. elm_tool-0.1.0/elm/elm_utils/file_lock.py +150 -0
  32. elm_tool-0.1.0/elm/elm_utils/mask_algorithms.py +37 -0
  33. elm_tool-0.1.0/elm/elm_utils/random_data.py +210 -0
  34. elm_tool-0.1.0/elm/elm_utils/variables.py +23 -0
  35. elm_tool-0.1.0/elm/elm_utils/venv.py +136 -0
  36. elm_tool-0.1.0/elm/models.py +40 -0
  37. elm_tool-0.1.0/pyproject.toml +55 -0
@@ -0,0 +1,179 @@
1
+ test_output.csv
2
+ venv_elm_tool/
3
+ .vscode
4
+ .*pyc
5
+
6
+ # Byte-compiled / optimized / DLL files
7
+ __pycache__/
8
+ *.py[cod]
9
+ *$py.class
10
+
11
+ # C extensions
12
+ *.so
13
+
14
+ # Distribution / packaging
15
+ .Python
16
+ build/
17
+ develop-eggs/
18
+ dist/
19
+ downloads/
20
+ eggs/
21
+ .eggs/
22
+ lib/
23
+ lib64/
24
+ parts/
25
+ sdist/
26
+ var/
27
+ wheels/
28
+ share/python-wheels/
29
+ *.egg-info/
30
+ .installed.cfg
31
+ *.egg
32
+ MANIFEST
33
+
34
+ # PyInstaller
35
+ # Usually these files are written by a python script from a template
36
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
37
+ *.manifest
38
+ *.spec
39
+
40
+ # Installer logs
41
+ pip-log.txt
42
+ pip-delete-this-directory.txt
43
+
44
+ # Unit test / coverage reports
45
+ htmlcov/
46
+ .tox/
47
+ .nox/
48
+ .coverage
49
+ .coverage.*
50
+ .cache
51
+ nosetests.xml
52
+ coverage.xml
53
+ *.cover
54
+ *.py,cover
55
+ .hypothesis/
56
+ .pytest_cache/
57
+ cover/
58
+
59
+ # Translations
60
+ *.mo
61
+ *.pot
62
+
63
+ # Django stuff:
64
+ *.log
65
+ local_settings.py
66
+ db.sqlite3
67
+ db.sqlite3-journal
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
+ .pybuilder/
81
+ target/
82
+
83
+ # Jupyter Notebook
84
+ .ipynb_checkpoints
85
+
86
+ # IPython
87
+ profile_default/
88
+ ipython_config.py
89
+
90
+ # pyenv
91
+ # For a library or package, you might want to ignore these files since the code is
92
+ # intended to run in multiple environments; otherwise, check them in:
93
+ # .python-version
94
+
95
+ # pipenv
96
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
97
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
98
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
99
+ # install all needed dependencies.
100
+ #Pipfile.lock
101
+
102
+ # UV
103
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
104
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
105
+ # commonly ignored for libraries.
106
+ #uv.lock
107
+
108
+ # poetry
109
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
110
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
111
+ # commonly ignored for libraries.
112
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
113
+ #poetry.lock
114
+
115
+ # pdm
116
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
117
+ #pdm.lock
118
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
119
+ # in version control.
120
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
121
+ .pdm.toml
122
+ .pdm-python
123
+ .pdm-build/
124
+
125
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
126
+ __pypackages__/
127
+
128
+ # Celery stuff
129
+ celerybeat-schedule
130
+ celerybeat.pid
131
+
132
+ # SageMath parsed files
133
+ *.sage.py
134
+
135
+ # Environments
136
+ .env
137
+ .venv
138
+ env/
139
+ venv/
140
+ ENV/
141
+ env.bak/
142
+ venv.bak/
143
+
144
+ # Spyder project settings
145
+ .spyderproject
146
+ .spyproject
147
+
148
+ # Rope project settings
149
+ .ropeproject
150
+
151
+ # mkdocs documentation
152
+ /site
153
+
154
+ # mypy
155
+ .mypy_cache/
156
+ .dmypy.json
157
+ dmypy.json
158
+
159
+ # Pyre type checker
160
+ .pyre/
161
+
162
+ # pytype static type analyzer
163
+ .pytype/
164
+
165
+ # Cython debug symbols
166
+ cython_debug/
167
+
168
+ # PyCharm
169
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
170
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
171
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
172
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
173
+ #.idea/
174
+
175
+ # Ruff stuff:
176
+ .ruff_cache/
177
+
178
+ # PyPI configuration file
179
+ .pypirc