Mount put.io as a drive using python
- Go to https://put.io/oauth/apps/new , create an app (fill something in all fields, it does not matter)
- Go to https://put.io/oauth/apps , and click on the "key" icon, next to your app name
- Last field contains your token. Paste it in the /home/YOUR-USERNAME/.putio-config, instead of "YOUR_TOKEN_HERE"
$ python setup.py install
$ python ./putiomount.py /destination/folder
If you want to use PutioMount as a library, you can install it using pip:
$ pip3 install PutioMount
And use it:
import PutioMount
# Set your token
PutioMount.set_config("token", "YOUR_TOKEN_HERE")
# Set a custom temporary path
PutioMount.set_tmp_path('/tmp')
# Set a custom credentials path
PutioMount.set_config_file('/path/to/.config_file')
# Need to install specific package
# pip install git+https://github.com/gpenverne/putio.py
# use_mp4 option will add .mp4 files, transcoded by put.io if available
# EXPERIMENTAL
PutioMount.set_config('use_mp4', True)
# Need to install specific package
# pip install git+https://github.com/gpenverne/putio.py
# cache_expiration sets the max age of parts of a file
PutioMount.set_config('cache_expiration', True)
# Need to install specific package
# pip install git+https://github.com/gpenverne/putio.py
# use_subtitles option will add subtitles files from put.io if available
PutioMount.set_config('use_subtitles', True)
# Mount to specific path
PutioMount.mount('/my/mount/point')
Upgrade requests and urllib3:
$ pip3 install -U urllib3
$ pip3 install -U requests
Check if fuse is installed:
$ apt-get install fuse
$ pip3 install 'requests[security]'
$ sudo pip3 install requests==2.5.3
To debug, edit PutioMount/ini.py to change:
FUSE(PutioMounter(), mount_point, nothreads=False, foreground=False,**{'allow_other': True})
with
FUSE(PutioMounter(), mount_point, nothreads=False, foreground=True,**{'allow_other': True})