Initial commit
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: rupload
|
||||
Version: 1.3.37
|
||||
Summary: upload tool
|
||||
Author: Retoor
|
||||
Author-email: retoor@molodetz.nl
|
||||
License: MIT
|
||||
Requires-Python: >=3.7
|
||||
Description-Content-Type: text/markdown
|
||||
Requires-Dist: aiohttp==3.10.10
|
||||
Requires-Dist: dataset==1.6.2
|
||||
|
||||
# RUpload
|
||||
|
||||
## About
|
||||
Easiest way to upload files to a server.
|
||||
|
||||
Since it doesn't have captcha or whatsoever, it's only usable with people you trust on a not listed domain. It's destined for public use, as long the domain isn't listed in a search engine. It has a limitation for file size, so it would never go terribly wrong.
|
||||
|
||||
## Installation
|
||||
```
|
||||
python3 -m venv .venv
|
||||
./venv/bin/python -m pip install .
|
||||
```
|
||||
|
||||
## Usage
|
||||
```
|
||||
rupload.serve [host(127.0.0.1)] [port] [destination path for uploads] [max file size in bytes]
|
||||
```
|
||||
@@ -0,0 +1,13 @@
|
||||
README.md
|
||||
pyproject.toml
|
||||
setup.cfg
|
||||
src/rupload/__init__.py
|
||||
src/rupload/__main__.py
|
||||
src/rupload/app.py
|
||||
src/rupload/cli.py
|
||||
src/rupload.egg-info/PKG-INFO
|
||||
src/rupload.egg-info/SOURCES.txt
|
||||
src/rupload.egg-info/dependency_links.txt
|
||||
src/rupload.egg-info/entry_points.txt
|
||||
src/rupload.egg-info/requires.txt
|
||||
src/rupload.egg-info/top_level.txt
|
||||
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
[console_scripts]
|
||||
rupload.serve = rupload.cli:main
|
||||
@@ -0,0 +1,2 @@
|
||||
aiohttp==3.10.10
|
||||
dataset==1.6.2
|
||||
@@ -0,0 +1 @@
|
||||
rupload
|
||||
Reference in New Issue
Block a user