# flickr-cli **Repository Path**: mirrors_simPod/flickr-cli ## Basic Information - **Project Name**: flickr-cli - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-13 - **Last Updated**: 2025-10-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Command line interface for Flickr. Still in development, more edit mode to come. # Install ```sh npm install -g flickr-cli ``` # Login Login is interactive and requires for you to grant access rights to your Flickr account. To trigger the login process, launch: ```sh flickr login ``` Then follow directions. You need to copy and paste a URL into your browser, then grant access. Flickr-cli is not designed to work in non-auth'ed mode for now. # Upload ```sh flickr upload filename.jpg otherfile.png somethingelse/*.jpg ``` In the future uploaded files will be added to a staging area for management (such as, adding to album, editing privacy, or sharing) # Albums All commands for album management start with: ```sh flickr album [command] ``` ## Listing all albums ```sh flickr album index [--fields id title description [...] ] [--noheaders] ``` Returns a list of albums. - `--fields` or `-f` (_optional_) give a list of fields to include in the list. Can be `'*'` to include all. Defaults to `title` - `--noheaders` or `-H` (_optional_) remove field names from output. - `--separator ';'` or `-s ','` (_optional_) specify separator ## Listing photos in an album ```sh flickr album list 17837128371 [--fields xxx] ``` Returns a list of photos and videos in an album. You can specify more than one albumid. All options for display setting in an album are valid here.