Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

use rclone on colab

## on jupyter notebook cells
# install rclone
! curl https://rclone.org/install.sh | sudo bash
# setup the default config file
! mkdir /root/.config/rclone/
config = """
RCLONE_ENCRYPT_V0:
8nKbmBes1LhfViVPk1b4rfmXeDLwjOgFRCQSKQJARLt43kY6hyutSoKXZ+YelRSlNGStD1wNmA3scjoiDgdYEDpdx/DQsLUzytbwsOc3cbnZyWaywPvSFqkG
"""
with open('/root/.config/rclone/rclone.conf', 'w') as file:
  file.write(config)
# use rclone
! rclone copy a b
Comment

PREVIOUS NEXT
Code Example
Python :: how to redirect where requests library downloads file python 
Python :: merge two list of dictionaries python with string 
Python :: python delete column 
Python :: run a shell script from python 
Python :: round to the nearest 0.5 
Python :: hiw ti count the number of a certain value in python 
Python :: no of words in a string in python 
Python :: Plot kdeplot, lineplot, scatterplot in seaborn 
Python :: python word encode asci 
Python :: fonts in python 
Python :: re module python 
Python :: how to install dependencies python 
Python :: Django Redirect Depending On Request Method 
Python :: python how to locate and fill a specific column null values 
Python :: how to format a file in python 
Python :: how to check if a key is present in python dictionary 
Python :: printed in a comma-separated sequence on a single line. 
Python :: combinations 
Python :: gui def python 
Python :: argparse parse path 
Python :: bar chart in python 
Python :: display column names as a dictionary pandas 
Python :: pyad create user 
Python :: gene wilder pure imagination 
Python :: how to pass primary key to url django 
Python :: python indent print 
Python :: docker run python 
Python :: supress jupyter notebook output 
Python :: python code for binary search tree 
Python :: python sh command 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =