<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| #!/usr/bin/env python | |
| import multiprocessing | |
| import random | |
| import string | |
| import time | |
| def fill_output(): | |
| to_fill = num_lines - len(last_output_per_process) |
| GOPATH=$(shell pwd)/vendor:$(shell pwd) | |
| GOBIN=$(shell pwd)/bin | |
| GOFILES=$(wildcard *.go) | |
| GONAME=$(shell basename "$(PWD)") | |
| PID=/tmp/go-$(GONAME).pid | |
| build: | |
| @echo "Building $(GOFILES) to ./bin" | |
| @GOPATH=$(GOPATH) GOBIN=$(GOBIN) go build -o bin/$(GONAME) $(GOFILES) | |
| get: |
| package main | |
| import ( | |
| "context" | |
| "flag" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "os" | |
| "os/signal" |
| # -*- coding: utf-8 -*- | |
| """ | |
| A real simple app for using webapp2 with auth and session. | |
| It just covers the basics. Creating a user, login, logout and a decorator for protecting certain handlers. | |
| PRE-REQUIREMENTS: | |
| Set at secret_key in webapp2 config: |