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)
Built Distribution
Close
Hashes for ImageThief-2.0.3-py2-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b878346e272d9ff5dd3afbafe96d8b3125d41e1dbfcf24ec4aec7cd4c0d7546 |
|
MD5 | fc6696fa55b63b83907120d8001258a2 |
|
BLAKE2b-256 | 455b1100dcc67f874bff88cf3f5160d34949b91369cbd09951fb84e6229d112e |