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 csv | |
from pprint import pprint | |
from pymongo import MongoClient | |
import threading | |
# https://stackoverflow.com/questions/35813854/how-to-join-multiple-collections-with-lookup-in-mongodb | |
""" | |
High Level Requirements |
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 logging | |
import threading | |
import time | |
class FakeDatabase: | |
def __init__(self): | |
self.value = 0 | |
def update(self, name): | |
logging.info("Thread %s: starting update", 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
import sys | |
import threading | |
import time | |
def func(): | |
for i in range(5): | |
print("hello from thread %s" % threading.current_thread().name) | |
time.sleep(1) | |
threads = [] |
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
# install boto3 | |
# pip install --upgrade boto3 | |
# setup IAM and get credentials | |
# https://boto3.amazonaws.com/v1/documentation/api/latest/guide/configuration.html | |
# https://console.aws.amazon.com/iam/home | |
""" | |
- Create a User | |
- Give user a name and set "Programmatic access" only for Access Type |
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 time | |
import math | |
# from timeit import timeit | |
# print(timeit('[x for x in range(100)]', number=1000)) | |
# print(timeit('[x for x in range(100)]', number=1000)) | |
# print(timeit(lambda: [x for x in range(100)], number=1000)) | |
def do_math(): |
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
docker run --name mongo -p 27017:27017 -d mongo mongod |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
""" | |
Autograde Lesson 3 assignment | |
Run pytest | |
Run cobverage and linitng using standard batch file | |
Student should submit an empty database | |
""" | |
import pytest | |
import logging |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.