From a14e17f332772d9ce38474de936f414047c2f7ac Mon Sep 17 00:00:00 2001 From: "T. Tanay" Date: Thu, 15 Nov 2018 19:41:36 +0530 Subject: [PATCH 1/3] Added requirements.txt --- requirements.txt | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..1db1597 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +plumbum==1.6.7 +rpyc==4.0.2 From 94beb02ff52ccd1fe619418db9b276f730751525 Mon Sep 17 00:00:00 2001 From: ttanay Date: Thu, 15 Nov 2018 19:46:14 +0530 Subject: [PATCH 2/3] Python version added --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2b01b2f..7263e37 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ Simple (~200 lines) distributed file system like HDFS (and of-course GFS). It co #### [Blog: Simple Distributed File System in Python : PyDFS](https://superuser.blog/distributed-file-system-python/) ### Requirements: + - Python 2 - rpyc (Really! That's it.) ### How to run. From 02c78d1254b1c33787ca6a2dd39a363afbf318fc Mon Sep 17 00:00:00 2001 From: ttanay Date: Thu, 15 Nov 2018 19:48:22 +0530 Subject: [PATCH 3/3] Typo fixed --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7263e37..7025e75 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Simple (~200 lines) distributed file system like HDFS (and of-course GFS). It co $ python client.py put sourcefile.txt sometxt $ python client.py get sometxt ``` -##### Stop it using Ctll + C so that it will dump the namespace. +##### Stop it using Ctrl + C so that it will dump the namespace. ## TODO: 1. Implement Delete