Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions fri/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ The Control-Core File Receiving Interface (FRI) is built with is Python-3.10. It

# Install Dependencies

Install Jupyter lab
````
$ pip install jupyterlab
$ cd conore/fri

$ pip3 install -r requirements.txt
````

# Running the FRI and a quick test.
Expand Down
1 change: 1 addition & 0 deletions fri/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Flask
gunicorn==20.1.0
FLASK_CORS
jupyterlab
4 changes: 2 additions & 2 deletions fri/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ def download(dir, subDir, fileName , apikey ):
time.sleep(2)
build("test", "sample", "sample-anyname", "xyz")
time.sleep(6)
method = input("methods - 1 for debug, 0 for run :")
if method == "1":
method = int(input("methods - 1 for debug, 0 for run :"))
if method == 1:
debug("sample-anyname", "xyz")
else:
run("sample-anyname", "xyz")
Expand Down