Skip to main content

Get files from server running on default route

Project description

This is a python library for capturing files over default route (http://0.0.0.0)

Functions:

  • Capture files from raspberryPi and access on your system.

  • Capture files on one system and access on other.

Installation :

Python

python -m pip install imagethief --user

Server Demo:

from ImageThief import Thief

app = Thief(name=__name__)


app.add_plan('/image','image')
app.add_plan('/audio','audio')

app.steal()

Client Demo:

from requests import get
 from ImageThief import Decoder as fileSaver

 url = 'http://localhost:5000'
 plan = '/audio'

 a = get(url + plan, headers={'Ext': '.mp3', 'filename': 'sampa.mp3'}).json()

 secondfile = 'some.mp3'
 if a['message'] == 'OK':
     fileSaver(a['data'], secondfile)
     print('File Saved with name ' + secondfile)
 else:
     print('Error')

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ImageThief-2.0.3.tar.gz (2.6 kB view hashes)

Uploaded Source

Built Distribution

ImageThief-2.0.3-py2-none-any.whl (3.6 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page