rlane-gdrive


Namerlane-gdrive JSON
Version 1.0.3 PyPI version JSON
download
home_pageNone
SummaryGoogle Drive CLI
upload_time2024-11-27 01:50:32
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseMIT
keywords google drive gdrive
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # gdrive
```
usage: gdrive [--all-fields] [-h] [-H] [-v] [-V] [--config FILE]
              [--print-config] [--print-url] [--completion [SHELL]]
              COMMAND ...

Google `drive` command line interface.

options:
  --all-fields          Use parms['fields'] = '*' (be verbose).

Specify one of:
  COMMAND
    about               Get information about the google user and drive.
    download            Download a file.
    files               List all files.
    folders             List all folders.
    list                List files and folders.
    rename              Rename file.
    renamelist          Rename list of files.
    uploaddir           Upload directories(s).
    uploadfile          Upload file(s).
    uploadlist          Upload list of files.

General options:
  -h, --help            Show this help message and exit.
  -H, --long-help       Show help for all commands and exit.
  -v, --verbose         `-v` for detailed output and `-vv` for more detailed.
  -V, --version         Print version number and exit.
  --config FILE         Use config `FILE` (default: `~/.pygoogle.toml`).
  --print-config        Print effective config and exit.
  --print-url           Print project url and exit.
  --completion [SHELL]  Print completion scripts for `SHELL` and exit
                        (default: `bash`).

See `gdrive COMMAND --help` for help on a specific command.
```

## gdrive about
```
usage: gdrive about [-h] [--no-themes] [--pretty-print]

about.description

options:
  -h, --help      Show this help message and exit.
  --no-themes     Remove theme elements; (implies --all-fields).
  --pretty-print  Pretty-print items.
```

## gdrive download
```
usage: gdrive download [-h] FILE [NEWNAME]

download.description

positional arguments:
  FILE        File to download.
  NEWNAME     Local name to assign.

options:
  -h, --help  Show this help message and exit.
```

## gdrive files
```
usage: gdrive files [-h] [-l | --pretty-print] [--limit LIMIT]

files.description

options:
  -h, --help          Show this help message and exit.
  -l, --long-listing  Use a long listing format.
  --pretty-print      Pretty-print items.
  --limit LIMIT       Limit execution to `LIMIT` number of items.
```

## gdrive folders
```
usage: gdrive folders [-h] [-l | --pretty-print] [--limit LIMIT]

folders.description

options:
  -h, --help          Show this help message and exit.
  -l, --long-listing  Use a long listing format.
  --pretty-print      Pretty-print items.
  --limit LIMIT       Limit execution to `LIMIT` number of items.
```

## gdrive list
```
usage: gdrive list [-h] [-t | -l | --pretty-print] [-f | -d] [-R]
                   [--limit LIMIT]
                   PATH

list.description

positional arguments:
  PATH                File or folder of items to list.

options:
  -h, --help          Show this help message and exit.
  -t, --time          Use a time listing format.
  -l, --long-listing  Use a long listing format.
  --pretty-print      Pretty-print items.
  -f, --files-only    Show files only.
  -d, --folders-only  Show folders only.
  -R, --recursive     Recurse into any sub-folders, recursively.
  --limit LIMIT       Limit execution to `LIMIT` number of items.
```

## gdrive rename
```
usage: gdrive rename [-h] src target

rename.description

positional arguments:
  src         File to rename.
  target      New name.

options:
  -h, --help  Show this help message and exit.
```

## gdrive renamelist
```
usage: gdrive renamelist [-h] listfile

renamelist.description

positional arguments:
  listfile    File with list of renames.

options:
  -h, --help  Show this help message and exit.
```

## gdrive uploaddir
```
usage: gdrive uploaddir [-h] [--add-timestamp] [--convert] [--no-convert]
                        [--target-folder TARGET_FOLDER]
                        [PATH ...]

uploaddir.description

positional arguments:
  PATH                  File to upload.

options:
  -h, --help            Show this help message and exit.
  --add-timestamp       Bake a timestamp into the target name.
  --convert             Convert to google doc.
  --no-convert          Do not convert to google doc.
  --target-folder TARGET_FOLDER
                        Root of destination tree.
```

## gdrive uploadfile
```
usage: gdrive uploadfile [-h] [--add-timestamp] [--convert] [--no-convert]
                         PATH FOLDER [NEWNAME]

uploadfile.description

positional arguments:
  PATH             File to upload.
  FOLDER           Destination folder.
  NEWNAME          New name for target file.

options:
  -h, --help       Show this help message and exit.
  --add-timestamp  Bake a timestamp into the target name.
  --convert        Convert to google doc.
  --no-convert     Do not convert to google doc.
```

## gdrive uploadlist
```
usage: gdrive uploadlist [-h] [--no-themes] [--add-timestamp] [--convert]
                         [--no-convert] [--target-folder TARGET_FOLDER]
                         listfile

uploadlist.description

positional arguments:
  listfile              File with list of uploads.

options:
  -h, --help            Show this help message and exit.
  --no-themes           Remove theme elements; (implies --all-fields).
  --add-timestamp       Bake a timestamp into the target name.
  --convert             Convert to google doc.
  --no-convert          Do not convert to google doc.
  --target-folder TARGET_FOLDER
                        Destination folder.
```


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "rlane-gdrive",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "google, drive, gdrive",
    "author": null,
    "author_email": "Russel Lane <russel@rlane.com>",
    "download_url": "https://files.pythonhosted.org/packages/2c/41/e6b98ee29a5c8f24ff70f84a544b161c31f27b07a987450f1fe69ac8cf66/rlane_gdrive-1.0.3.tar.gz",
    "platform": null,
    "description": "# gdrive\n```\nusage: gdrive [--all-fields] [-h] [-H] [-v] [-V] [--config FILE]\n              [--print-config] [--print-url] [--completion [SHELL]]\n              COMMAND ...\n\nGoogle `drive` command line interface.\n\noptions:\n  --all-fields          Use parms['fields'] = '*' (be verbose).\n\nSpecify one of:\n  COMMAND\n    about               Get information about the google user and drive.\n    download            Download a file.\n    files               List all files.\n    folders             List all folders.\n    list                List files and folders.\n    rename              Rename file.\n    renamelist          Rename list of files.\n    uploaddir           Upload directories(s).\n    uploadfile          Upload file(s).\n    uploadlist          Upload list of files.\n\nGeneral options:\n  -h, --help            Show this help message and exit.\n  -H, --long-help       Show help for all commands and exit.\n  -v, --verbose         `-v` for detailed output and `-vv` for more detailed.\n  -V, --version         Print version number and exit.\n  --config FILE         Use config `FILE` (default: `~/.pygoogle.toml`).\n  --print-config        Print effective config and exit.\n  --print-url           Print project url and exit.\n  --completion [SHELL]  Print completion scripts for `SHELL` and exit\n                        (default: `bash`).\n\nSee `gdrive COMMAND --help` for help on a specific command.\n```\n\n## gdrive about\n```\nusage: gdrive about [-h] [--no-themes] [--pretty-print]\n\nabout.description\n\noptions:\n  -h, --help      Show this help message and exit.\n  --no-themes     Remove theme elements; (implies --all-fields).\n  --pretty-print  Pretty-print items.\n```\n\n## gdrive download\n```\nusage: gdrive download [-h] FILE [NEWNAME]\n\ndownload.description\n\npositional arguments:\n  FILE        File to download.\n  NEWNAME     Local name to assign.\n\noptions:\n  -h, --help  Show this help message and exit.\n```\n\n## gdrive files\n```\nusage: gdrive files [-h] [-l | --pretty-print] [--limit LIMIT]\n\nfiles.description\n\noptions:\n  -h, --help          Show this help message and exit.\n  -l, --long-listing  Use a long listing format.\n  --pretty-print      Pretty-print items.\n  --limit LIMIT       Limit execution to `LIMIT` number of items.\n```\n\n## gdrive folders\n```\nusage: gdrive folders [-h] [-l | --pretty-print] [--limit LIMIT]\n\nfolders.description\n\noptions:\n  -h, --help          Show this help message and exit.\n  -l, --long-listing  Use a long listing format.\n  --pretty-print      Pretty-print items.\n  --limit LIMIT       Limit execution to `LIMIT` number of items.\n```\n\n## gdrive list\n```\nusage: gdrive list [-h] [-t | -l | --pretty-print] [-f | -d] [-R]\n                   [--limit LIMIT]\n                   PATH\n\nlist.description\n\npositional arguments:\n  PATH                File or folder of items to list.\n\noptions:\n  -h, --help          Show this help message and exit.\n  -t, --time          Use a time listing format.\n  -l, --long-listing  Use a long listing format.\n  --pretty-print      Pretty-print items.\n  -f, --files-only    Show files only.\n  -d, --folders-only  Show folders only.\n  -R, --recursive     Recurse into any sub-folders, recursively.\n  --limit LIMIT       Limit execution to `LIMIT` number of items.\n```\n\n## gdrive rename\n```\nusage: gdrive rename [-h] src target\n\nrename.description\n\npositional arguments:\n  src         File to rename.\n  target      New name.\n\noptions:\n  -h, --help  Show this help message and exit.\n```\n\n## gdrive renamelist\n```\nusage: gdrive renamelist [-h] listfile\n\nrenamelist.description\n\npositional arguments:\n  listfile    File with list of renames.\n\noptions:\n  -h, --help  Show this help message and exit.\n```\n\n## gdrive uploaddir\n```\nusage: gdrive uploaddir [-h] [--add-timestamp] [--convert] [--no-convert]\n                        [--target-folder TARGET_FOLDER]\n                        [PATH ...]\n\nuploaddir.description\n\npositional arguments:\n  PATH                  File to upload.\n\noptions:\n  -h, --help            Show this help message and exit.\n  --add-timestamp       Bake a timestamp into the target name.\n  --convert             Convert to google doc.\n  --no-convert          Do not convert to google doc.\n  --target-folder TARGET_FOLDER\n                        Root of destination tree.\n```\n\n## gdrive uploadfile\n```\nusage: gdrive uploadfile [-h] [--add-timestamp] [--convert] [--no-convert]\n                         PATH FOLDER [NEWNAME]\n\nuploadfile.description\n\npositional arguments:\n  PATH             File to upload.\n  FOLDER           Destination folder.\n  NEWNAME          New name for target file.\n\noptions:\n  -h, --help       Show this help message and exit.\n  --add-timestamp  Bake a timestamp into the target name.\n  --convert        Convert to google doc.\n  --no-convert     Do not convert to google doc.\n```\n\n## gdrive uploadlist\n```\nusage: gdrive uploadlist [-h] [--no-themes] [--add-timestamp] [--convert]\n                         [--no-convert] [--target-folder TARGET_FOLDER]\n                         listfile\n\nuploadlist.description\n\npositional arguments:\n  listfile              File with list of uploads.\n\noptions:\n  -h, --help            Show this help message and exit.\n  --no-themes           Remove theme elements; (implies --all-fields).\n  --add-timestamp       Bake a timestamp into the target name.\n  --convert             Convert to google doc.\n  --no-convert          Do not convert to google doc.\n  --target-folder TARGET_FOLDER\n                        Destination folder.\n```\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Google Drive CLI",
    "version": "1.0.3",
    "project_urls": {
        "Homepage": "https://github.com/russellane/gdrive"
    },
    "split_keywords": [
        "google",
        " drive",
        " gdrive"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72f731d2428dfa7e9aa8f98fbd8aabdacc5b385af83f6d28cca16de70aa65f75",
                "md5": "55d420b5f0d3d3ef8b8e744d51e9cc25",
                "sha256": "a3bccaa7bb446653ab8210cfdd0cc12c079ba462d01fe08dca848f7d5c69360f"
            },
            "downloads": -1,
            "filename": "rlane_gdrive-1.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "55d420b5f0d3d3ef8b8e744d51e9cc25",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 18816,
            "upload_time": "2024-11-27T01:50:30",
            "upload_time_iso_8601": "2024-11-27T01:50:30.866555Z",
            "url": "https://files.pythonhosted.org/packages/72/f7/31d2428dfa7e9aa8f98fbd8aabdacc5b385af83f6d28cca16de70aa65f75/rlane_gdrive-1.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c41e6b98ee29a5c8f24ff70f84a544b161c31f27b07a987450f1fe69ac8cf66",
                "md5": "f83e58292522c1c2cdbc5f45d24e5dab",
                "sha256": "328a36e4dc9589c93020c6d74b4253158e29ee1f6aa2b66d7eb46fb015418f59"
            },
            "downloads": -1,
            "filename": "rlane_gdrive-1.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "f83e58292522c1c2cdbc5f45d24e5dab",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 16233,
            "upload_time": "2024-11-27T01:50:32",
            "upload_time_iso_8601": "2024-11-27T01:50:32.668163Z",
            "url": "https://files.pythonhosted.org/packages/2c/41/e6b98ee29a5c8f24ff70f84a544b161c31f27b07a987450f1fe69ac8cf66/rlane_gdrive-1.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-27 01:50:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "russellane",
    "github_project": "gdrive",
    "github_not_found": true,
    "lcname": "rlane-gdrive"
}
        
Elapsed time: 0.43795s