Python client to https://send.firefox.com. Encrypts and decrypts on the fly to reduce memory usage.
Install it:
pip install ffsendUsage is really simple:
ffsend 'https://send.firefox.com/download/abcdef0123/#keykeykey' # download a file to the current directory
ffsend path/to/file # upload a file to Firefox SendSeveral commands take a -t/--token parameter, which is the "Owner token" displayed after a successful upload. If you uploaded the file with your browser, the owner token will be in the browser's localStorage.
To get basic information:
ffsend -i 'https://send.firefox.com/download/abcdef0123'To get more information (including number of times downloaded):
ffsend -i -t TOKEN 'https://send.firefox.com/download/abcdef0123'ffsend --delete -t TOKEN 'https://send.firefox.com/download/abcdef0123'ffsend --set-dlimit N -t TOKEN 'https://send.firefox.com/download/abcdef0123'Code is copyright Robert Xiao ([email protected]), and is licensed under the Mozilla Public License 2.0.