attix 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.
- attix-0.1.0/AUTHORS.md +13 -0
- attix-0.1.0/CHANGELOG.md +7 -0
- attix-0.1.0/LICENSE +21 -0
- attix-0.1.0/MANIFEST.in +10 -0
- attix-0.1.0/PKG-INFO +365 -0
- attix-0.1.0/README.md +331 -0
- attix-0.1.0/pyproject.toml +214 -0
- attix-0.1.0/setup.cfg +4 -0
- attix-0.1.0/src/attix/__init__.py +46 -0
- attix-0.1.0/src/attix/attix.py +87 -0
- attix-0.1.0/src/attix/attix_cli.py +24 -0
- attix-0.1.0/src/attix/resources/__init__.py +0 -0
- attix-0.1.0/src/attix.egg-info/PKG-INFO +365 -0
- attix-0.1.0/src/attix.egg-info/SOURCES.txt +18 -0
- attix-0.1.0/src/attix.egg-info/dependency_links.txt +1 -0
- attix-0.1.0/src/attix.egg-info/entry_points.txt +2 -0
- attix-0.1.0/src/attix.egg-info/requires.txt +1 -0
- attix-0.1.0/src/attix.egg-info/top_level.txt +1 -0
- attix-0.1.0/tests/test_attix.py +41 -0
- attix-0.1.0/tests/test_attix_cli.py +41 -0
attix-0.1.0/AUTHORS.md
ADDED
attix-0.1.0/CHANGELOG.md
ADDED
attix-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026, Stephen R A King
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
attix-0.1.0/MANIFEST.in
ADDED
attix-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,365 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: attix
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: store filenames of a remote NAS device for searching
|
|
5
|
+
Author-email: Stephen R A King <sking.github@gmail.com>
|
|
6
|
+
Maintainer-email: Stephen R A King <sking.github@gmail.com>
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Project-URL: Homepage, https://github.com/Stephen-RA-King/attix
|
|
9
|
+
Project-URL: Download, https://github.com/Stephen-RA-King/attix/archive/refs/heads/main.zip
|
|
10
|
+
Project-URL: Documentation, https://attix.readthedocs.io/en/latest/
|
|
11
|
+
Project-URL: CI, https://github.com/Stephen-RA-King/attix/actions
|
|
12
|
+
Project-URL: Release Notes, https://github.com/Stephen-RA-King/attix/releases
|
|
13
|
+
Project-URL: Source Code, https://github.com/Stephen-RA-King/attix/
|
|
14
|
+
Project-URL: Bug Tracker, https://github.com/Stephen-RA-King/attix/issues
|
|
15
|
+
Keywords: utility
|
|
16
|
+
Classifier: Development Status :: 1 - Planning
|
|
17
|
+
Classifier: Environment :: Console
|
|
18
|
+
Classifier: Intended Audience :: Developers
|
|
19
|
+
Classifier: Operating System :: OS Independent
|
|
20
|
+
Classifier: Natural Language :: English
|
|
21
|
+
Classifier: Programming Language :: Python :: 3
|
|
22
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
28
|
+
Requires-Python: >=3.10
|
|
29
|
+
Description-Content-Type: text/markdown
|
|
30
|
+
License-File: LICENSE
|
|
31
|
+
License-File: AUTHORS.md
|
|
32
|
+
Requires-Dist: pyyaml
|
|
33
|
+
Dynamic: license-file
|
|
34
|
+
|
|
35
|
+
# attix
|
|
36
|
+
|
|
37
|
+
> Short blurb about what your product does.
|
|
38
|
+
|
|
39
|
+
[![PyPI][pypi-image]][pypi-url]
|
|
40
|
+
[![Downloads][downloads-image]][downloads-url]
|
|
41
|
+
[![Status][status-image]][pypi-url]
|
|
42
|
+
[![Python Version][python-version-image]][pypi-url]
|
|
43
|
+
[![tests][tests-image]][tests-url]
|
|
44
|
+
[![Codecov][codecov-image]][codecov-url]
|
|
45
|
+
[![CodeQl][codeql-image]][codeql-url]
|
|
46
|
+
[![Docker][docker-image]][docker-url]
|
|
47
|
+
[![pre-commit][pre-commit-image]][pre-commit-url]
|
|
48
|
+
[![pre-commit.ci status][pre-commit.ci-image]][pre-commit.ci-url]
|
|
49
|
+
[![readthedocs][readthedocs-image]][readthedocs-url]
|
|
50
|
+
[![CodeFactor][codefactor-image]][codefactor-url]
|
|
51
|
+
[![Codeclimate][codeclimate-image]][codeclimate-url]
|
|
52
|
+
[![Imports: isort][isort-image]][isort-url]
|
|
53
|
+
[![Code style: black][black-image]][black-url]
|
|
54
|
+
[![Checked with mypy][mypy-image]][mypy-url]
|
|
55
|
+
[![security: bandit][bandit-image]][bandit-url]
|
|
56
|
+
[![Commitizen friendly][commitizen-image]][commitizen-url]
|
|
57
|
+
[![Conventional Commits][conventional-commits-image]][conventional-commits-url]
|
|
58
|
+
[![Versioning][versioning-image]][versioning-url]
|
|
59
|
+
[![DeepSource][deepsource-image]][deepsource-url]
|
|
60
|
+
[![license][license-image]][license-url]
|
|
61
|
+
[![Pydough][pydough-image]][pydough-url]
|
|
62
|
+
[![OpenSSFScorecard][openssf-image]][openssf-url]
|
|
63
|
+
|
|
64
|
+
One to two paragraph statement about your product and what it does.
|
|
65
|
+
|
|
66
|
+

|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
# Contents
|
|
70
|
+
|
|
71
|
+
- [Demo](#-demo)
|
|
72
|
+
- [Project rationale](#-project-rationale)
|
|
73
|
+
- [Quick start](#-quickstart)
|
|
74
|
+
- [Prerequisites](#-prerequisites)
|
|
75
|
+
- [Installation](#-installation)
|
|
76
|
+
- [Basic Usage](#-basic-usage)
|
|
77
|
+
- [Usage](#-usage)
|
|
78
|
+
- [Development setup](#-development-setup)
|
|
79
|
+
- [Configuration](#-configuration)
|
|
80
|
+
- [Documentation](#-documentation)
|
|
81
|
+
- [Read the Docs](https://pynamer.readthedocs.io/en/latest/)
|
|
82
|
+
- [API](https://pynamer.readthedocs.io/en/latest/autoapi/pynamer/pynamer/index.html)
|
|
83
|
+
- [Wiki](https://github.com/Stephen-RA-King/pynamer/wiki)
|
|
84
|
+
- [FAQs](#-faqs)
|
|
85
|
+
- [What's new in version x.x](#-whats-new-in-version-xx)
|
|
86
|
+
- [Planned future enhancements](#-planned-future-enhancements)
|
|
87
|
+
- [Package statistics](#-package-statistics)
|
|
88
|
+
- [License](#-license)
|
|
89
|
+
- [Meta information](#ℹ-meta)
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
## :eyeglasses: TLDR
|
|
93
|
+
|
|
94
|
+
A very succinct paragraph summary regarding the package purpose and operation.
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
# :film_projector: Demo
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
|
|
101
|
+
Put a demo animated gif here.
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
# :bulb: Project rationale
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
Why I built this project
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
# :rocket: Quickstart
|
|
114
|
+
|
|
115
|
+
---
|
|
116
|
+
|
|
117
|
+
Explain succinctly how to use the repository
|
|
118
|
+
|
|
119
|
+
## :spiral_notepad: Prerequisites
|
|
120
|
+
|
|
121
|
+
- A bulleted list of requirements
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
## :floppy_disk: Installation
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
OS X & Linux:
|
|
128
|
+
|
|
129
|
+
```sh
|
|
130
|
+
pip3 install attix
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
Windows:
|
|
134
|
+
|
|
135
|
+
```sh
|
|
136
|
+
pip install attix
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
## :computer: Basic Usage
|
|
140
|
+
|
|
141
|
+
A simple example demonstrating that the package is working
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
# :computer: Usage
|
|
145
|
+
|
|
146
|
+
---
|
|
147
|
+
|
|
148
|
+
A few motivating and useful examples of how your product can be used. Spice this up with code blocks and potentially more screenshots.
|
|
149
|
+
|
|
150
|
+
_For more examples and usage, please refer to the [Wiki][wiki]._
|
|
151
|
+
|
|
152
|
+
# :wrench: Development setup
|
|
153
|
+
|
|
154
|
+
---
|
|
155
|
+
|
|
156
|
+
Describe how to install all development dependencies and how to run an automated test-suite of some kind. Potentially do this for multiple platforms.
|
|
157
|
+
|
|
158
|
+
```sh
|
|
159
|
+
pip install --editable attix
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
# :gear: Configuration
|
|
163
|
+
|
|
164
|
+
---
|
|
165
|
+
|
|
166
|
+
Place configuration information here
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
# :lock: Security Considerations
|
|
170
|
+
|
|
171
|
+
---
|
|
172
|
+
|
|
173
|
+
Write any security concerns that you may have here.
|
|
174
|
+
e.g. exposure of API keys, passwords, old modules etc.
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
# :books: Documentation
|
|
178
|
+
|
|
179
|
+
---
|
|
180
|
+
|
|
181
|
+
[**Read the Docs**](https://attix.readthedocs.io/en/latest/)
|
|
182
|
+
|
|
183
|
+
- [**Example Usage**](https://attix.readthedocs.io/en/latest/example.html)
|
|
184
|
+
- [**Credits**](https://attix.readthedocs.io/en/latest/example.html)
|
|
185
|
+
- [**Changelog**](https://attix.readthedocs.io/en/latest/changelog.html)
|
|
186
|
+
- [**API Reference**](https://attix.readthedocs.io/en/latest/autoapi/index.html)
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
[**Wiki**](https://github.com/Stephen-RA-King/attix/wiki)
|
|
190
|
+
|
|
191
|
+
# :dna: Design Considerations
|
|
192
|
+
|
|
193
|
+
---
|
|
194
|
+
|
|
195
|
+
A few paragraphs on the design considerations if required.
|
|
196
|
+
|
|
197
|
+
# :whale: Using Docker
|
|
198
|
+
|
|
199
|
+
---
|
|
200
|
+
|
|
201
|
+
## Building the Image from Dockerfile
|
|
202
|
+
|
|
203
|
+
Start your docker runtime then:
|
|
204
|
+
|
|
205
|
+
Build the image using ***docker build*** command. e.g.
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
```shell
|
|
209
|
+
$ docker build -t sraking/attix:0.1.0 -t sraking/attix:latest .
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
Once built, run the image using the ***docker run*** command. This will create the container. e.g.
|
|
213
|
+
|
|
214
|
+
```shell
|
|
215
|
+
$ docker run -it sraking/attix:0.1.0 /bin/bash
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
Optional: The image can now be pushed to the repository using the ***docker push*** command. e.g.
|
|
219
|
+
|
|
220
|
+
```shell
|
|
221
|
+
$ docker push sraking/attix:0.1.0
|
|
222
|
+
```
|
|
223
|
+
|
|
224
|
+
## Using the ready built image on dockerhub
|
|
225
|
+
|
|
226
|
+
Pull the latest image from the repository using the ***docker pull*** command. e.g.
|
|
227
|
+
|
|
228
|
+
```bash
|
|
229
|
+
~ $ docker pull sraking/attix
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
Now run the image using the ***docker run*** command. This will create the container. e.g.
|
|
233
|
+
|
|
234
|
+
```bash
|
|
235
|
+
~ $ docker run -it sraking/attix /bin/bash
|
|
236
|
+
```
|
|
237
|
+
|
|
238
|
+
Use the command line as normal in the container.
|
|
239
|
+
|
|
240
|
+
```bash
|
|
241
|
+
root@4d315992ca28:/app# attix -h
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
# :warning: Limitations
|
|
245
|
+
|
|
246
|
+
---
|
|
247
|
+
|
|
248
|
+
Describe any limitation the application may have (if any).
|
|
249
|
+
|
|
250
|
+
# :interrobang: Some Quirks
|
|
251
|
+
|
|
252
|
+
---
|
|
253
|
+
|
|
254
|
+
The reason I wrote this application in the first place.
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
## :question: FAQs
|
|
258
|
+
|
|
259
|
+
---
|
|
260
|
+
|
|
261
|
+
Give examples of frequently asked questions
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
# :newspaper: What's new in version x.x
|
|
265
|
+
|
|
266
|
+
---
|
|
267
|
+
|
|
268
|
+
- bulleted list of new features
|
|
269
|
+
|
|
270
|
+
# :calendar: Planned future enhancements
|
|
271
|
+
|
|
272
|
+
---
|
|
273
|
+
|
|
274
|
+
- Feature 1
|
|
275
|
+
- Feature 2
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
# :bar_chart: Package statistics
|
|
279
|
+
|
|
280
|
+
---
|
|
281
|
+
|
|
282
|
+
- [**libraries.io**](https://libraries.io/pypi/Stephen-RA-King)
|
|
283
|
+
- [**PyPI Stats**](https://pypistats.org/packages/Stephen-RA-King)
|
|
284
|
+
- [**Pepy**](https://www.pepy.tech/projects/Stephen-RA-King)
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
# :scroll: License
|
|
288
|
+
|
|
289
|
+
---
|
|
290
|
+
|
|
291
|
+
Distributed under the MIT license. See [![][license-image]][license-url] for more information.
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
# < :information_source: > Meta
|
|
296
|
+
|
|
297
|
+
---
|
|
298
|
+
|
|
299
|
+
[](https://www.linkedin.com/in/sr-king)
|
|
300
|
+
[](https://github.com/Stephen-RA-King)
|
|
301
|
+
[](https://pypi.org/project/attix)
|
|
302
|
+
[](https://hub.docker.com/r/sraking/attix)
|
|
303
|
+
[](https://stephen-ra-king.github.io/justpython/)
|
|
304
|
+
[](mailto:sking.github@gmail.com)
|
|
305
|
+
[](https://github.com/Stephen-RA-King/attix)
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
Author: Stephen R A King ([sking.github@gmail.com](mailto:sking.github@gmail.com))
|
|
309
|
+
|
|
310
|
+
Created with Cookiecutter template: [![pydough][pydough-image]][pydough-url]
|
|
311
|
+
|
|
312
|
+
Digital object identifier: [](https://zenodo.org/badge/latestdoi/xxxxxxxxx)
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
<!-- Markdown link & img dfn's -->
|
|
316
|
+
|
|
317
|
+
[bandit-image]: https://img.shields.io/badge/security-bandit-yellow.svg
|
|
318
|
+
[bandit-url]: https://github.com/PyCQA/bandit
|
|
319
|
+
[black-image]: https://img.shields.io/badge/code%20style-black-000000.svg
|
|
320
|
+
[black-url]: https://github.com/psf/black
|
|
321
|
+
[codeclimate-image]: https://api.codeclimate.com/v1/badges/7fc352185512a1dab75d/maintainability
|
|
322
|
+
[codeclimate-url]: https://codeclimate.com/github/Stephen-RA-King/attix/maintainability
|
|
323
|
+
[codecov-image]: https://codecov.io/gh/Stephen-RA-King/attix/branch/main/graph/badge.svg
|
|
324
|
+
[codecov-url]: https://app.codecov.io/gh/Stephen-RA-King/attix
|
|
325
|
+
[codefactor-image]: https://www.codefactor.io/repository/github/Stephen-RA-King/attix/badge
|
|
326
|
+
[codefactor-url]: https://www.codefactor.io/repository/github/Stephen-RA-King/attix
|
|
327
|
+
[codeql-image]: https://github.com/Stephen-RA-King/attix/actions/workflows/github-code-scanning/codeql/badge.svg
|
|
328
|
+
[codeql-url]: https://github.com/Stephen-RA-King/attix/actions/workflows/github-code-scanning/codeql
|
|
329
|
+
[commitizen-image]: https://img.shields.io/badge/commitizen-friendly-brightgreen.svg
|
|
330
|
+
[commitizen-url]: http://commitizen.github.io/cz-cli/
|
|
331
|
+
[conventional-commits-image]: https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg?style=flat-square
|
|
332
|
+
[conventional-commits-url]: https://conventionalcommits.org
|
|
333
|
+
[deepsource-image]: https://app.deepsource.com/gh/Stephen-RA-King/attix.svg/?label=active+issues&show_trend=true
|
|
334
|
+
[deepsource-url]: https://app.deepsource.com/gh/Stephen-RA-King/attix/?ref=repository-badge
|
|
335
|
+
[docker-image]: https://github.com/Stephen-RA-King/attix/actions/workflows/docker-image.yml/badge.svg
|
|
336
|
+
[docker-url]: https://github.com/Stephen-RA-King/attix/actions/workflows/docker-image.yml
|
|
337
|
+
[downloads-image]: https://static.pepy.tech/personalized-badge/attix?period=total&units=international_system&left_color=black&right_color=orange&left_text=Downloads
|
|
338
|
+
[downloads-url]: https://pepy.tech/project/attix
|
|
339
|
+
[format-image]: https://img.shields.io/pypi/format/attix
|
|
340
|
+
[isort-image]: https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336
|
|
341
|
+
[isort-url]: https://github.com/pycqa/isort/
|
|
342
|
+
[license-image]: https://img.shields.io/pypi/l/attix
|
|
343
|
+
[license-url]: https://github.com/Stephen-RA-King/attix/blob/main/LICENSE
|
|
344
|
+
[mypy-image]: http://www.mypy-lang.org/static/mypy_badge.svg
|
|
345
|
+
[mypy-url]: http://mypy-lang.org/
|
|
346
|
+
[openssf-image]: https://api.securityscorecards.dev/projects/github.com/Stephen-RA-King/attix/badge
|
|
347
|
+
[openssf-url]: https://api.securityscorecards.dev/projects/github.com/Stephen-RA-King/attix
|
|
348
|
+
[pre-commit-image]: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white
|
|
349
|
+
[pre-commit-url]: https://github.com/pre-commit/pre-commit
|
|
350
|
+
[pre-commit.ci-image]: https://results.pre-commit.ci/badge/github/Stephen-RA-King/attix/main.svg
|
|
351
|
+
[pre-commit.ci-url]: https://results.pre-commit.ci/latest/github/Stephen-RA-King/attix/main
|
|
352
|
+
[pydough-image]: https://img.shields.io/badge/Cookiecutter-pydough-orange?logo=cookiecutter
|
|
353
|
+
[pydough-url]: https://github.com/Stephen-RA-King/pydough
|
|
354
|
+
[pypi-url]: https://pypi.org/project/attix/
|
|
355
|
+
[pypi-image]: https://img.shields.io/pypi/v/attix.svg
|
|
356
|
+
[python-version-image]: https://img.shields.io/pypi/pyversions/attix
|
|
357
|
+
[readthedocs-image]: https://readthedocs.org/projects/attix/badge/?version=latest
|
|
358
|
+
[readthedocs-url]: https://attix.readthedocs.io/en/latest/?badge=latest
|
|
359
|
+
[status-image]: https://img.shields.io/pypi/status/attix.svg
|
|
360
|
+
[tests-image]: https://github.com/Stephen-RA-King/attix/actions/workflows/tests.yml/badge.svg
|
|
361
|
+
[tests-url]: https://github.com/Stephen-RA-King/attix/actions/workflows/tests.yml
|
|
362
|
+
[versioning-image]: https://img.shields.io/badge/versioning-semver_2-blue
|
|
363
|
+
[versioning-url]: https://semver.org/
|
|
364
|
+
[wiki]: https://github.com/Stephen-RA-King/attix/wiki
|
|
365
|
+
|