You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Lossless file compression engine/README.md
+3-8Lines changed: 3 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -7,15 +7,10 @@ This program is currently compressing a file that is named "foo.txt" which is a
7
7
This program compressed the original file by 43% from 175 KB to 78 KB
8
8
9
9
10
-
# Code can be run via Python 3
11
-
12
-
Link: https://www.python.org/downloads/
13
-
14
-
Needs bitstring and huffman modules
10
+
# Code can be run via Python 3 - https://www.python.org/downloads/
15
11
12
+
```
16
13
pip install bitstring
17
14
18
15
pip install huffman
19
-
20
-
Code and the example output of the console are attached at the end of the report. foo.txt is 175KB of text file. The compressed file that is created with my algorithm holds 78KB of hard drive space. And the decompressed file holds again 175KB of space and it is a text file without any corruption.
0 commit comments