Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jorgebg/gief
Instant HTTP file uploading server
https://github.com/jorgebg/gief
http python upload
Last synced: about 2 months ago
JSON representation
Instant HTTP file uploading server
- Host: GitHub
- URL: https://github.com/jorgebg/gief
- Owner: jorgebg
- License: mit
- Created: 2015-12-22T14:56:53.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-12-24T15:17:27.000Z (about 3 years ago)
- Last Synced: 2024-08-09T12:17:55.577Z (5 months ago)
- Topics: http, python, upload
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gief
[![Pypy](https://img.shields.io/pypi/v/gief.svg)](https://pypi.python.org/pypi/gief)
[![Build Status](https://travis-ci.org/jorgebg/gief.svg)](https://travis-ci.org/jorgebg/gief)
[![Requirements Status](https://requires.io/github/jorgebg/gief/requirements.svg?branch=master)](https://requires.io/github/jorgebg/gief/requirements/?branch=master)
[![Coverage Status](https://coveralls.io/repos/jorgebg/gief/badge.svg)](https://coveralls.io/r/jorgebg/gief)
[![MIT License](https://img.shields.io/pypi/l/gief.svg)](https://github.com/jorgebg/gief/blob/master/LICENSE)Instant HTTP file uploading server.
## Requirements
* Python 2.7+ or Python 3.4+## Install
```
sudo pip install gief
```## Usage
```
usage: gief [-h] [-H HOST] [-p PORT] [path]positional arguments:
path Folder where files will be uploaded to (CWD by default)optional arguments:
-h, --help show this help message and exit
-H HOST, --host HOST
-p PORT, --port PORT```
Alternatively:
```
python -m gief
```### Examples
```
mkdir /tmp/gief
gief /tmp/gief
```