Skip to content

Commit 25e9fb6

Browse files
committedSep 19, 2020
applications added
1 parent 80e856c commit 25e9fb6

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed
 

‎CONTRIBUTING.rst

+4-2
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ Hack away!
4747
To do
4848
~~~~~
4949

50-
.. [*] Confirmation to move rename file if a file with a same name is already present
50+
.. [*] A Desktop app using libraries like `Tkinter <https://docs.python.org/3/library/tkinter.html/>`__ which utilizes ``Filezen`` to organize files.
5151
.. [*] Some more unittests
52-
.. [*] Maybe a cool Project banner
52+
.. [*] Confirmation to move rename file if a file with a same name is already present
5353
5454
Tests
5555
~~~~~
@@ -60,6 +60,8 @@ Running the test cases
6060

6161
.. code:: bash
6262
63+
$ python -m unittest discover tests
64+
6365
.........
6466
----------------------------------------------------------------------
6567
Ran 10 tests in 0.008s

‎README.rst

+11-3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ Features
4141
- Minimum dependencies ( just uses ``Pathlib`` if only you're working with Python 2.x )
4242
- Easy to use
4343
- Fast!
44+
- Returns ``JSON`` objects
4445
- Support
4546
- **OS Support**: Linux, Windows, Mac
4647
- **Language Support**: Python 2.x, 3.x
@@ -108,11 +109,12 @@ Simple Scanner
108109
}'
109110
110111
- If a file with the same name is already present in the *Output Directory* then ``Simple Scanner`` would ignore the file and leave it to the user.
112+
- The filename which hasn't being because of the reason stated above would be returned in the ``NotMoved`` array of the result.
111113
- If no *Output Directory* is specified, then ``Simple Scanner`` would create folders in the *Input Directory* itself.
112114

113115
Advanced Scanner
114116
~~~~~~~~~~~~~~~~
115-
.. figure:: https://i.imgur.com/krTnAZU.gif
117+
.. figure:: https://i.imgur.com/L2aARhU.gif
116118
:alt:
117119

118120
- ``Advanced Scanner`` maintains a ``heap`` for each filetype it encounters while scanning the *Output Directory*.
@@ -144,8 +146,14 @@ Advanced Scanner
144146
]
145147
}'
146148
147-
- Similar to ``Simple Scanner``, if a file with the same name is already present in the *Output Directory* then ``Simple Scanner`` would ignore the file and leave it to the user.
148-
- If no *Output Directory* is specified, then ``Simple Scanner`` would create folders in the *Input Directory* itself.
149+
- Similar to ``Simple Scanner``, if a file with the same name is already present in the *Output Directory* then ``Advanced Scanner`` would ignore the file and leave it to the user.
150+
- The filename which hasn't being because of the reason stated above would be returned in the ``NotMoved`` array of the result.
151+
- If no *Output Directory* is specified, then ``Advanced Scanner`` would read the folders in the *Input Directory* itself and move accordingly.
152+
153+
Applications
154+
~~~~~~~~~~~~
155+
156+
- KRETA - It is a command line application which uses ``Filezen`` to organize file.
149157

150158

151159
Documentation

0 commit comments

Comments
 (0)
Please sign in to comment.