Appearing on this list is a recommendation.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pytest | |
import pypact | |
# 1. Start with your model | |
class Something(object): | |
def __init__(self, name): | |
self.name = name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import os | |
import psutil | |
import resource | |
import subprocess | |
import sys | |
import time | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(mock_service | |
.given("something exists") | |
.upon_receiving("a request for something") | |
.with_request(method="get", path="/something") | |
.will_respond_with( | |
status=200, | |
headers={'Content=Type': 'application/json'}, | |
body={'name': 'A small something'})) | |
I hereby claim:
- I am hartror on github.
- I am hartror (https://keybase.io/hartror) on keybase.
- I have a public key ASC6o-FCmwOCM1oXR6qpEkLt-OQQ82-4LTyXn9h-L0mojwo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env fish | |
function awsume | |
set AWS_VARS "AWS_SECRET_ACCESS_KEY" "AWS_SESSION_TOKEN" "AWS_SECURITY_TOKEN" "AWS_ACCESS_KEY_ID" "AWS_REGION" "AWS_DEFAULT_REGION" "AWS_PROFILE" "AWS_DEFAULT_PROFILE" "AWSUME_PROFILE" | |
set AWSUME (string split " " (awsumepy)) | |
set AWSUME_FLAG "$AWSUME[1]" | |
if test $AWSUME_FLAG = "usage:" | |
awsumepy -h |