CLIF CLI File storage system (CLI Google Drive Essentially)
Project description
CLI FileStor
A CLI app/server meant to be a self hostable version of google drive with customizable storage limits.
Interaction with the server
The server can be interacted with either by the client application or curl
Setup
Both Systems
Just use:
pip install clifilestor
And it can be run: (Client)
clif {option}}
(Server)
clif-server
Server
- Install python3 (3.10 Reccomended)
- Make sure venv is installed alongside python3
- Download and run the app (server-mac) from the github release page. It will handle dependencies on its own (A startup script will run that installs all of them in a venv at runtime).
- (Optional) if you want to run it without the executable, install the packages: requests, flask
Client
- Download the latest version of the client (client-mac) from the releases page.
- Run the client executable.
- (Optional) if you want to run the client without the exe overhead, install the packages: requests.
Live Server
WIll be offline going into april 2026. http://187.124.225.245:999 (Server is secure, hosted with gunicorn!)
Demo Video:
https://drive.google.com/file/d/1rXJU0RaOJyMVX-mN0eXn6FDzDeSv1rVL/view?usp=sharing
API Documentation
All of the API endpoints are POST based.
- POST: /register - Register a new user. {username: STR, password: STR} password should be a hash of the password for security reasons. It returns a user_id.
- POST: /fetch-userdata - retrieve userdata from the server. Requires authenticaion. {user_id: STR, pass_hash: STR}. Returns userdata (usage statistics, username, user_id, etc)
- POST: /upload_file - Form data. Upload a file to the server. Requires authenticaion. {user_id: STR, pass_hash: STR, file: FILE} returns status
- POST: /list - List all files under the ownership of a file. Requires authenticaion. {user_id: STR, pass_hash: STR} returns a "directories" list.
- POST: /retrieve-file - Download a file, Requires authenticaion. {user_id: STR, pass_hash: STR, filename: STR} returns the file in form data.
- POST: /translate_uname - Translate username into a user_id. Does not require authentication. {user_name: STR} Returns user_id.
- POST: /delete-file - Deletes a file. Requires authenticaion. {user_id: STR, pass_hash: STR, filename: STR} returns status.
- POST: /authenticate - Authenticate a user. {user_id: STR, pass_hash: STR} returns status
Authentication
By defualt, the client stores authentication data in a file located in .clif/authdata. It needs to be recreated if you are working in a new directory.
Usage - Client (Script)
client.py signup #Create authdata, and account
client.py login #Login to an existing account (Creates authdata)
client.py list #List all files owned by the user
client.py upload <file> #Upload a file
client.py download <file> #Download a file
client.py info #Get user info
client.py delete <file> #Delete a file
client.py logout #Logout and delete authdata (Deletes authdata)
In the executable, the client will list the options in the terminal using python's input function.
AI usage
As per usual, I dont like using too much AI in my projects as i feel it is dishonest. I wrote most of the code with some help from Jetbrains AI Assistant when i was getting stuck. Additionally, the text completions (Which i havent figured out how to disable yet) was used to speed up the process. AI was used in the server script and the client.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file clifilestor-1.0.4-py3-none-any.whl.
File metadata
- Download URL: clifilestor-1.0.4-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d7aab3a7bd80550ba0fe8ed96e6bcfe9c2dde5f5b900450f730c208b9f854cb
|
|
| MD5 |
b646b8770f7aec883cfc368d164e251f
|
|
| BLAKE2b-256 |
1d5f01ae7956c41febcea9c72559e8fc6f77f02f310f5c8468fbf38a2c16fa3f
|