praw-cli 0.6.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 (47) hide show
  1. praw_cli-0.6.0/.env.example +5 -0
  2. praw_cli-0.6.0/.github/workflows/pypi-publish.yml +25 -0
  3. praw_cli-0.6.0/.gitignore +671 -0
  4. praw_cli-0.6.0/.python-version +1 -0
  5. praw_cli-0.6.0/Makefile +42 -0
  6. praw_cli-0.6.0/PKG-INFO +105 -0
  7. praw_cli-0.6.0/README.md +83 -0
  8. praw_cli-0.6.0/docs/development/architecture.md +140 -0
  9. praw_cli-0.6.0/docs/development/contributing.md +108 -0
  10. praw_cli-0.6.0/docs/development/decisions.md +43 -0
  11. praw_cli-0.6.0/docs/getting-started.md +70 -0
  12. praw_cli-0.6.0/docs/usage/commands.md +94 -0
  13. praw_cli-0.6.0/docs/usage/outputs.md +30 -0
  14. praw_cli-0.6.0/docs/usage/pipelines-filters.md +64 -0
  15. praw_cli-0.6.0/docs/usage/reproducibility.md +78 -0
  16. praw_cli-0.6.0/pyproject.toml +59 -0
  17. praw_cli-0.6.0/src/prawler/__init__.py +10 -0
  18. praw_cli-0.6.0/src/prawler/__main__.py +4 -0
  19. praw_cli-0.6.0/src/prawler/cli/__init__.py +3 -0
  20. praw_cli-0.6.0/src/prawler/cli/app.py +16 -0
  21. praw_cli-0.6.0/src/prawler/cli/commands/__init__.py +11 -0
  22. praw_cli-0.6.0/src/prawler/cli/commands/comments.py +41 -0
  23. praw_cli-0.6.0/src/prawler/cli/commands/posts.py +33 -0
  24. praw_cli-0.6.0/src/prawler/cli/commands/search.py +34 -0
  25. praw_cli-0.6.0/src/prawler/cli/commands/user.py +44 -0
  26. praw_cli-0.6.0/src/prawler/cli/options.py +96 -0
  27. praw_cli-0.6.0/src/prawler/client/__init__.py +5 -0
  28. praw_cli-0.6.0/src/prawler/client/reddit_praw.py +64 -0
  29. praw_cli-0.6.0/src/prawler/config.py +31 -0
  30. praw_cli-0.6.0/src/prawler/crawler/__init__.py +35 -0
  31. praw_cli-0.6.0/src/prawler/crawler/comment.py +58 -0
  32. praw_cli-0.6.0/src/prawler/crawler/post.py +125 -0
  33. praw_cli-0.6.0/src/prawler/crawler/redditor.py +23 -0
  34. praw_cli-0.6.0/src/prawler/model/__init__.py +9 -0
  35. praw_cli-0.6.0/src/prawler/model/comment.py +71 -0
  36. praw_cli-0.6.0/src/prawler/model/post.py +71 -0
  37. praw_cli-0.6.0/src/prawler/model/redditor.py +57 -0
  38. praw_cli-0.6.0/src/prawler/output/__init__.py +14 -0
  39. praw_cli-0.6.0/src/prawler/output/base.py +15 -0
  40. praw_cli-0.6.0/src/prawler/output/formatters.py +79 -0
  41. praw_cli-0.6.0/src/prawler/output/registry.py +22 -0
  42. praw_cli-0.6.0/src/prawler/output/sinks.py +41 -0
  43. praw_cli-0.6.0/src/prawler/pipeline/__init__.py +10 -0
  44. praw_cli-0.6.0/src/prawler/pipeline/filters.py +133 -0
  45. praw_cli-0.6.0/src/prawler/pipeline/stage.py +14 -0
  46. praw_cli-0.6.0/src/prawler/pipeline/transforms.py +15 -0
  47. praw_cli-0.6.0/uv.lock +540 -0
@@ -0,0 +1,5 @@
1
+ PRAWLER_CLIENT_ID=""
2
+ PRAWLER_CLIENT_SECRET=""
3
+ PRAWLER_USER_AGENT=""
4
+ PRAWLER_USERNAME=""
5
+ PRAWLER_PASSWORD=""
@@ -0,0 +1,25 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ jobs:
8
+ publish:
9
+ runs-on: ubuntu-latest
10
+
11
+ environment:
12
+ name: release
13
+ url: https://pypi.org/p/praw-cli
14
+
15
+ permissions:
16
+ id-token: write
17
+
18
+ steps:
19
+ - uses: actions/checkout@v6
20
+ - uses: actions/setup-python@v6
21
+ with:
22
+ python-version: "3.x"
23
+ - run: python -m pip install --upgrade pip build
24
+ - run: python -m build
25
+ - uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,671 @@
1
+ # Created by https://www.toptal.com/developers/gitignore/api/python,venv,visualstudio,visualstudiocode,linux,windows,macos,dotenv
2
+ # Edit at https://www.toptal.com/developers/gitignore?templates=python,venv,visualstudio,visualstudiocode,linux,windows,macos,dotenv
3
+
4
+ ### dotenv ###
5
+ .env
6
+
7
+ ### Linux ###
8
+ *~
9
+
10
+ # temporary files which can be created if a process still has a handle open of a deleted file
11
+ .fuse_hidden*
12
+
13
+ # KDE directory preferences
14
+ .directory
15
+
16
+ # Linux trash folder which might appear on any partition or disk
17
+ .Trash-*
18
+
19
+ # .nfs files are created when an open file is removed but is still being accessed
20
+ .nfs*
21
+
22
+ ### macOS ###
23
+ # General
24
+ .DS_Store
25
+ .AppleDouble
26
+ .LSOverride
27
+
28
+ # Icon must end with two \r
29
+ Icon
30
+
31
+
32
+ # Thumbnails
33
+ ._*
34
+
35
+ # Files that might appear in the root of a volume
36
+ .DocumentRevisions-V100
37
+ .fseventsd
38
+ .Spotlight-V100
39
+ .TemporaryItems
40
+ .Trashes
41
+ .VolumeIcon.icns
42
+ .com.apple.timemachine.donotpresent
43
+
44
+ # Directories potentially created on remote AFP share
45
+ .AppleDB
46
+ .AppleDesktop
47
+ Network Trash Folder
48
+ Temporary Items
49
+ .apdisk
50
+
51
+ ### macOS Patch ###
52
+ # iCloud generated files
53
+ *.icloud
54
+
55
+ ### Python ###
56
+ # Byte-compiled / optimized / DLL files
57
+ __pycache__/
58
+ *.py[cod]
59
+ *$py.class
60
+
61
+ # C extensions
62
+ *.so
63
+
64
+ # Distribution / packaging
65
+ .Python
66
+ build/
67
+ develop-eggs/
68
+ dist/
69
+ downloads/
70
+ eggs/
71
+ .eggs/
72
+ lib/
73
+ lib64/
74
+ parts/
75
+ sdist/
76
+ var/
77
+ wheels/
78
+ share/python-wheels/
79
+ *.egg-info/
80
+ .installed.cfg
81
+ *.egg
82
+ MANIFEST
83
+
84
+ # PyInstaller
85
+ # Usually these files are written by a python script from a template
86
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
87
+ *.manifest
88
+ *.spec
89
+
90
+ # Installer logs
91
+ pip-log.txt
92
+ pip-delete-this-directory.txt
93
+
94
+ # Unit test / coverage reports
95
+ htmlcov/
96
+ .tox/
97
+ .nox/
98
+ .coverage
99
+ .coverage.*
100
+ .cache
101
+ nosetests.xml
102
+ coverage.xml
103
+ *.cover
104
+ *.py,cover
105
+ .hypothesis/
106
+ .pytest_cache/
107
+ cover/
108
+
109
+ # Translations
110
+ *.mo
111
+ *.pot
112
+
113
+ # Django stuff:
114
+ *.log
115
+ local_settings.py
116
+ db.sqlite3
117
+ db.sqlite3-journal
118
+
119
+ # Flask stuff:
120
+ instance/
121
+ .webassets-cache
122
+
123
+ # Scrapy stuff:
124
+ .scrapy
125
+
126
+ # Sphinx documentation
127
+ docs/_build/
128
+
129
+ # PyBuilder
130
+ .pybuilder/
131
+ target/
132
+
133
+ # Jupyter Notebook
134
+ .ipynb_checkpoints
135
+
136
+ # IPython
137
+ profile_default/
138
+ ipython_config.py
139
+
140
+ # pyenv
141
+ # For a library or package, you might want to ignore these files since the code is
142
+ # intended to run in multiple environments; otherwise, check them in:
143
+ # .python-version
144
+
145
+ # pipenv
146
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
147
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
148
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
149
+ # install all needed dependencies.
150
+ #Pipfile.lock
151
+
152
+ # poetry
153
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
154
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
155
+ # commonly ignored for libraries.
156
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
157
+ #poetry.lock
158
+
159
+ # pdm
160
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
161
+ #pdm.lock
162
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
163
+ # in version control.
164
+ # https://pdm.fming.dev/#use-with-ide
165
+ .pdm.toml
166
+
167
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
168
+ __pypackages__/
169
+
170
+ # Celery stuff
171
+ celerybeat-schedule
172
+ celerybeat.pid
173
+
174
+ # SageMath parsed files
175
+ *.sage.py
176
+
177
+ # Environments
178
+ .venv
179
+ env/
180
+ venv/
181
+ ENV/
182
+ env.bak/
183
+ venv.bak/
184
+
185
+ # Spyder project settings
186
+ .spyderproject
187
+ .spyproject
188
+
189
+ # Rope project settings
190
+ .ropeproject
191
+
192
+ # mkdocs documentation
193
+ /site
194
+
195
+ # mypy
196
+ .mypy_cache/
197
+ .dmypy.json
198
+ dmypy.json
199
+
200
+ # Pyre type checker
201
+ .pyre/
202
+
203
+ # pytype static type analyzer
204
+ .pytype/
205
+
206
+ # Cython debug symbols
207
+ cython_debug/
208
+
209
+ # PyCharm
210
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
211
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
212
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
213
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
214
+ #.idea/
215
+
216
+ ### Python Patch ###
217
+ # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
218
+ poetry.toml
219
+
220
+ # ruff
221
+ .ruff_cache/
222
+
223
+ # LSP config files
224
+ pyrightconfig.json
225
+
226
+ ### venv ###
227
+ # Virtualenv
228
+ # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
229
+ [Bb]in
230
+ [Ii]nclude
231
+ [Ll]ib
232
+ [Ll]ib64
233
+ [Ll]ocal
234
+ [Ss]cripts
235
+ pyvenv.cfg
236
+ pip-selfcheck.json
237
+
238
+ ### VisualStudioCode ###
239
+ .vscode/*
240
+ !.vscode/settings.json
241
+ !.vscode/tasks.json
242
+ !.vscode/launch.json
243
+ !.vscode/extensions.json
244
+ !.vscode/*.code-snippets
245
+
246
+ # Local History for Visual Studio Code
247
+ .history/
248
+
249
+ # Built Visual Studio Code Extensions
250
+ *.vsix
251
+
252
+ ### VisualStudioCode Patch ###
253
+ # Ignore all local history of files
254
+ .history
255
+ .ionide
256
+
257
+ ### Windows ###
258
+ # Windows thumbnail cache files
259
+ Thumbs.db
260
+ Thumbs.db:encryptable
261
+ ehthumbs.db
262
+ ehthumbs_vista.db
263
+
264
+ # Dump file
265
+ *.stackdump
266
+
267
+ # Folder config file
268
+ [Dd]esktop.ini
269
+
270
+ # Recycle Bin used on file shares
271
+ $RECYCLE.BIN/
272
+
273
+ # Windows Installer files
274
+ *.cab
275
+ *.msi
276
+ *.msix
277
+ *.msm
278
+ *.msp
279
+
280
+ # Windows shortcuts
281
+ *.lnk
282
+
283
+ ### VisualStudio ###
284
+ ## Ignore Visual Studio temporary files, build results, and
285
+ ## files generated by popular Visual Studio add-ons.
286
+ ##
287
+ ## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
288
+
289
+ # User-specific files
290
+ *.rsuser
291
+ *.suo
292
+ *.user
293
+ *.userosscache
294
+ *.sln.docstates
295
+
296
+ # User-specific files (MonoDevelop/Xamarin Studio)
297
+ *.userprefs
298
+
299
+ # Mono auto generated files
300
+ mono_crash.*
301
+
302
+ # Build results
303
+ [Dd]ebug/
304
+ [Dd]ebugPublic/
305
+ [Rr]elease/
306
+ [Rr]eleases/
307
+ x64/
308
+ x86/
309
+ [Ww][Ii][Nn]32/
310
+ [Aa][Rr][Mm]/
311
+ [Aa][Rr][Mm]64/
312
+ bld/
313
+ [Bb]in/
314
+ [Oo]bj/
315
+ [Ll]og/
316
+ [Ll]ogs/
317
+
318
+ # Visual Studio 2015/2017 cache/options directory
319
+ .vs/
320
+ # Uncomment if you have tasks that create the project's static files in wwwroot
321
+ #wwwroot/
322
+
323
+ # Visual Studio 2017 auto generated files
324
+ Generated\ Files/
325
+
326
+ # MSTest test Results
327
+ [Tt]est[Rr]esult*/
328
+ [Bb]uild[Ll]og.*
329
+
330
+ # NUnit
331
+ *.VisualState.xml
332
+ TestResult.xml
333
+ nunit-*.xml
334
+
335
+ # Build Results of an ATL Project
336
+ [Dd]ebugPS/
337
+ [Rr]eleasePS/
338
+ dlldata.c
339
+
340
+ # Benchmark Results
341
+ BenchmarkDotNet.Artifacts/
342
+
343
+ # .NET Core
344
+ project.lock.json
345
+ project.fragment.lock.json
346
+ artifacts/
347
+
348
+ # ASP.NET Scaffolding
349
+ ScaffoldingReadMe.txt
350
+
351
+ # StyleCop
352
+ StyleCopReport.xml
353
+
354
+ # Files built by Visual Studio
355
+ *_i.c
356
+ *_p.c
357
+ *_h.h
358
+ *.ilk
359
+ *.meta
360
+ *.obj
361
+ *.iobj
362
+ *.pch
363
+ *.pdb
364
+ *.ipdb
365
+ *.pgc
366
+ *.pgd
367
+ *.rsp
368
+ *.sbr
369
+ *.tlb
370
+ *.tli
371
+ *.tlh
372
+ *.tmp
373
+ *.tmp_proj
374
+ *_wpftmp.csproj
375
+ *.tlog
376
+ *.vspscc
377
+ *.vssscc
378
+ .builds
379
+ *.pidb
380
+ *.svclog
381
+ *.scc
382
+
383
+ # Chutzpah Test files
384
+ _Chutzpah*
385
+
386
+ # Visual C++ cache files
387
+ ipch/
388
+ *.aps
389
+ *.ncb
390
+ *.opendb
391
+ *.opensdf
392
+ *.sdf
393
+ *.cachefile
394
+ *.VC.db
395
+ *.VC.VC.opendb
396
+
397
+ # Visual Studio profiler
398
+ *.psess
399
+ *.vsp
400
+ *.vspx
401
+ *.sap
402
+
403
+ # Visual Studio Trace Files
404
+ *.e2e
405
+
406
+ # TFS 2012 Local Workspace
407
+ $tf/
408
+
409
+ # Guidance Automation Toolkit
410
+ *.gpState
411
+
412
+ # ReSharper is a .NET coding add-in
413
+ _ReSharper*/
414
+ *.[Rr]e[Ss]harper
415
+ *.DotSettings.user
416
+
417
+ # TeamCity is a build add-in
418
+ _TeamCity*
419
+
420
+ # DotCover is a Code Coverage Tool
421
+ *.dotCover
422
+
423
+ # AxoCover is a Code Coverage Tool
424
+ .axoCover/*
425
+ !.axoCover/settings.json
426
+
427
+ # Coverlet is a free, cross platform Code Coverage Tool
428
+ coverage*.json
429
+ coverage*.xml
430
+ coverage*.info
431
+
432
+ # Visual Studio code coverage results
433
+ *.coverage
434
+ *.coveragexml
435
+
436
+ # NCrunch
437
+ _NCrunch_*
438
+ .*crunch*.local.xml
439
+ nCrunchTemp_*
440
+
441
+ # MightyMoose
442
+ *.mm.*
443
+ AutoTest.Net/
444
+
445
+ # Web workbench (sass)
446
+ .sass-cache/
447
+
448
+ # Installshield output folder
449
+ [Ee]xpress/
450
+
451
+ # DocProject is a documentation generator add-in
452
+ DocProject/buildhelp/
453
+ DocProject/Help/*.HxT
454
+ DocProject/Help/*.HxC
455
+ DocProject/Help/*.hhc
456
+ DocProject/Help/*.hhk
457
+ DocProject/Help/*.hhp
458
+ DocProject/Help/Html2
459
+ DocProject/Help/html
460
+
461
+ # Click-Once directory
462
+ publish/
463
+
464
+ # Publish Web Output
465
+ *.[Pp]ublish.xml
466
+ *.azurePubxml
467
+ # Note: Comment the next line if you want to checkin your web deploy settings,
468
+ # but database connection strings (with potential passwords) will be unencrypted
469
+ *.pubxml
470
+ *.publishproj
471
+
472
+ # Microsoft Azure Web App publish settings. Comment the next line if you want to
473
+ # checkin your Azure Web App publish settings, but sensitive information contained
474
+ # in these scripts will be unencrypted
475
+ PublishScripts/
476
+
477
+ # NuGet Packages
478
+ *.nupkg
479
+ # NuGet Symbol Packages
480
+ *.snupkg
481
+ # The packages folder can be ignored because of Package Restore
482
+ **/[Pp]ackages/*
483
+ # except build/, which is used as an MSBuild target.
484
+ !**/[Pp]ackages/build/
485
+ # Uncomment if necessary however generally it will be regenerated when needed
486
+ #!**/[Pp]ackages/repositories.config
487
+ # NuGet v3's project.json files produces more ignorable files
488
+ *.nuget.props
489
+ *.nuget.targets
490
+
491
+ # Microsoft Azure Build Output
492
+ csx/
493
+ *.build.csdef
494
+
495
+ # Microsoft Azure Emulator
496
+ ecf/
497
+ rcf/
498
+
499
+ # Windows Store app package directories and files
500
+ AppPackages/
501
+ BundleArtifacts/
502
+ Package.StoreAssociation.xml
503
+ _pkginfo.txt
504
+ *.appx
505
+ *.appxbundle
506
+ *.appxupload
507
+
508
+ # Visual Studio cache files
509
+ # files ending in .cache can be ignored
510
+ *.[Cc]ache
511
+ # but keep track of directories ending in .cache
512
+ !?*.[Cc]ache/
513
+
514
+ # Others
515
+ ClientBin/
516
+ ~$*
517
+ *.dbmdl
518
+ *.dbproj.schemaview
519
+ *.jfm
520
+ *.pfx
521
+ *.publishsettings
522
+ orleans.codegen.cs
523
+
524
+ # Including strong name files can present a security risk
525
+ # (https://github.com/github/gitignore/pull/2483#issue-259490424)
526
+ #*.snk
527
+
528
+ # Since there are multiple workflows, uncomment next line to ignore bower_components
529
+ # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
530
+ #bower_components/
531
+
532
+ # RIA/Silverlight projects
533
+ Generated_Code/
534
+
535
+ # Backup & report files from converting an old project file
536
+ # to a newer Visual Studio version. Backup files are not needed,
537
+ # because we have git ;-)
538
+ _UpgradeReport_Files/
539
+ Backup*/
540
+ UpgradeLog*.XML
541
+ UpgradeLog*.htm
542
+ ServiceFabricBackup/
543
+ *.rptproj.bak
544
+
545
+ # SQL Server files
546
+ *.mdf
547
+ *.ldf
548
+ *.ndf
549
+
550
+ # Business Intelligence projects
551
+ *.rdl.data
552
+ *.bim.layout
553
+ *.bim_*.settings
554
+ *.rptproj.rsuser
555
+ *- [Bb]ackup.rdl
556
+ *- [Bb]ackup ([0-9]).rdl
557
+ *- [Bb]ackup ([0-9][0-9]).rdl
558
+
559
+ # Microsoft Fakes
560
+ FakesAssemblies/
561
+
562
+ # GhostDoc plugin setting file
563
+ *.GhostDoc.xml
564
+
565
+ # Node.js Tools for Visual Studio
566
+ .ntvs_analysis.dat
567
+ node_modules/
568
+
569
+ # Visual Studio 6 build log
570
+ *.plg
571
+
572
+ # Visual Studio 6 workspace options file
573
+ *.opt
574
+
575
+ # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
576
+ *.vbw
577
+
578
+ # Visual Studio 6 auto-generated project file (contains which files were open etc.)
579
+ *.vbp
580
+
581
+ # Visual Studio 6 workspace and project file (working project files containing files to include in project)
582
+ *.dsw
583
+ *.dsp
584
+
585
+ # Visual Studio 6 technical files
586
+
587
+ # Visual Studio LightSwitch build output
588
+ **/*.HTMLClient/GeneratedArtifacts
589
+ **/*.DesktopClient/GeneratedArtifacts
590
+ **/*.DesktopClient/ModelManifest.xml
591
+ **/*.Server/GeneratedArtifacts
592
+ **/*.Server/ModelManifest.xml
593
+ _Pvt_Extensions
594
+
595
+ # Paket dependency manager
596
+ .paket/paket.exe
597
+ paket-files/
598
+
599
+ # FAKE - F# Make
600
+ .fake/
601
+
602
+ # CodeRush personal settings
603
+ .cr/personal
604
+
605
+ # Python Tools for Visual Studio (PTVS)
606
+ *.pyc
607
+
608
+ # Cake - Uncomment if you are using it
609
+ # tools/**
610
+ # !tools/packages.config
611
+
612
+ # Tabs Studio
613
+ *.tss
614
+
615
+ # Telerik's JustMock configuration file
616
+ *.jmconfig
617
+
618
+ # BizTalk build output
619
+ *.btp.cs
620
+ *.btm.cs
621
+ *.odx.cs
622
+ *.xsd.cs
623
+
624
+ # OpenCover UI analysis results
625
+ OpenCover/
626
+
627
+ # Azure Stream Analytics local run output
628
+ ASALocalRun/
629
+
630
+ # MSBuild Binary and Structured Log
631
+ *.binlog
632
+
633
+ # NVidia Nsight GPU debugger configuration file
634
+ *.nvuser
635
+
636
+ # MFractors (Xamarin productivity tool) working folder
637
+ .mfractor/
638
+
639
+ # Local History for Visual Studio
640
+ .localhistory/
641
+
642
+ # Visual Studio History (VSHistory) files
643
+ .vshistory/
644
+
645
+ # BeatPulse healthcheck temp database
646
+ healthchecksdb
647
+
648
+ # Backup folder for Package Reference Convert tool in Visual Studio 2017
649
+ MigrationBackup/
650
+
651
+ # Ionide (cross platform F# VS Code tools) working folder
652
+ .ionide/
653
+
654
+ # Fody - auto-generated XML schema
655
+ FodyWeavers.xsd
656
+
657
+ # VS Code files for those working on multiple tools
658
+ *.code-workspace
659
+
660
+ # Local History for Visual Studio Code
661
+
662
+ # Windows Installer files from build outputs
663
+
664
+ # JetBrains Rider
665
+ *.sln.iml
666
+
667
+ ### VisualStudio Patch ###
668
+ # Additional files built by Visual Studio
669
+
670
+ # End of https://www.toptal.com/developers/gitignore/api/python,venv,visualstudio,visualstudiocode,linux,windows,macos,dotenv
671
+
@@ -0,0 +1 @@
1
+ 3.12