Skip to main content

gist making script

Project description

examples

  • post a public gist on public github: cat doge | gister

  • post a secret gist on public github: cat doge | gister -s

  • post a public gist on private github deployment: cat doge | gister -p

  • post a secret gist on private github deployment: cat doge | gister -ps

  • post an anonymous gist on public github: cat doge | gister -a

  • post an anonymous and secret gist on public github: cat doge | gister -as

  • post an anonymous gist on private github deployment: cat doge | gister -ap

  • post an anonymous and secret gist on private github deployment: cat doge | gister -aps

  • post a public gist on public github with a command: cat doge | tail -n4 | gister -c "cat doge | tail -n4"

usage

gister [-h] [-p] [-s] [-a] [-c COMMAND] [-v]

make gists!

optional arguments:
  -h, --help            show this help message and exit
  -p, --private         put gist on configured enterprise github
  -s, --secret          gist will be secret (not public)
  -a, --anonymous       gist will be anonymous
  -c COMMAND, --command COMMAND
  -v, --vim             gist came from vim, no prompt/history

install

  • clone the repo and python setup.py install

  • and potentially, fix weird hgtools dependency issue beforehand: pip install hgtools

config file - .gister

an example configuration file .gister is given for you to use. it will be looked for in ~/.gister. it supports these values:

  • public_oauth_token - your public github oauth token (not necessary for anonymous gists)

  • private_oauth_token - your private github oauth token (if you plan on using private github) (not necessary for anonymous gists)

  • prompt - configure prompt that is displayed when using the -c/--command option

  • history_file - location of shell history file for command display

  • public_github_url - this defaults to the url for public github

  • private_github_url - if you plan on using -p/--private this url needs to be set to the location of your private github deployment

github oauth tokens

gister can be used with no oauth tokens, but can only create anonymous gists by specifying the -a/--anonymous flag

you can manage your github oauth tokens here by visiting applications in your account settings

you can also create an oauth token using the github api as I did in this gist

keyring

use of keyring is optional. it allows you store your oauth tokens in a safer place than the ~/.gister config file

if you wish to use keyring, specify your public_oauth and/or public_oauth tokens as follows:

[gister]
private_oauth = KEYRING
public_oauth = KEYRING

gister will look for a section called gister with keys public_oauth and/or private_oauth containing a github oauth tokens linked to your public github and/or private github account. an example of adding keys to python keyring

using with vim

I added the following to my .vimrc to interact with gister:

" ------- gist making! --------------------------------
fun Gister(...)
  let gister_call = "gister -v"
  for flag in a:000
    let gister_call = gister_call . " " . flag
  endfor
  let result = system(gister_call, expand("%:t") . "\n" . getreg("\""))
  echo result
endfun
" public gist on github from selection or single line
vnoremap <F9> y:call Gister()<cr>
nnoremap <F9> yy:call Gister()<cr>

" secret gist on github from selection or single line
vnoremap <F10> y:call Gister("-s")<cr>
nnoremap <F10> yy:call Gister("-s")<cr>

" public gist on private github from selection or single line
vnoremap <F11> y:call Gister("-p")<cr>
nnoremap <F11> yy:call Gister("-p")<cr>

" secret gist on private github from selection or single line
vnoremap <F12> y:call Gister("-p", "-s")<cr>
nnoremap <F12> yy:call Gister("-p", "-s")<cr>
" ------- end pastie.org ---------------------------

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gister-1.0.10.tar.gz (8.6 kB view details)

Uploaded Source

File details

Details for the file gister-1.0.10.tar.gz.

File metadata

  • Download URL: gister-1.0.10.tar.gz
  • Upload date:
  • Size: 8.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for gister-1.0.10.tar.gz
Algorithm Hash digest
SHA256 e84c4b0d8d79e956050ffe8458a3077871827e62799c78c7f95e1329a6e99990
MD5 9f5a53d7feb28b93d14cc0aac8798ae9
BLAKE2b-256 53a0de4cd66d5aabffbae245812ed9f485b57bea6f4deb44252090f7a9becbf8

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page