Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modifying the Code to use the requests library #6

Open
wants to merge 40 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
042e226
Adding TODO items
Jul 4, 2020
f315f48
Updating to use python3.7
Jul 7, 2020
3561e29
Modifying the script to use the native requests library
Jul 7, 2020
0e9c001
Adding ignore file
Jul 7, 2020
e097bea
Remvoing the local pip install files of requests from being committed
Jul 7, 2020
a4e4063
Adding a requirements.txt to okta plugin
Jul 7, 2020
d3f3cd9
Adding pycache
Jul 7, 2020
8b3caa0
Merge branch 'master' into GCP
Jul 7, 2020
67d9d7c
Using the google api client
Jul 8, 2020
16bf1ba
Uploading zip files
Jul 8, 2020
2e31279
Modifications that were needed so that it can run in both aws and gcp
Jul 9, 2020
a649baf
Finishing touches on serverless call for both environments
Jul 9, 2020
c034a03
All the code is there for 1 request
Jul 10, 2020
ad916e2
Adding a check to make sure that function is active before execution
Jul 10, 2020
1d4bcef
Param upto creating a function
Jul 10, 2020
b77b87a
Removed the use of the variable project and obtaining that from the c…
Jul 10, 2020
844860a
Random bucket name generation
Jul 10, 2020
1a45f77
Dynamic name generation of function
Jul 10, 2020
b17ca96
Created Methods
Jul 10, 2020
4b47e40
Most functions built
Jul 11, 2020
562833c
Made Create Functions Thread Safe
Jul 11, 2020
5ee8618
Multithreading Complete
Jul 11, 2020
3974d2c
Renaming the file for GCP cloud functions
Jul 12, 2020
67ca9eb
Updating the gmail plugin to handle GCP cloud function
Jul 12, 2020
19f09c3
Adding new param for environments
Jul 13, 2020
94005aa
Ignoring virtual environment
Jul 13, 2020
78684a5
Created Requirements.txt
Jul 13, 2020
3577c9d
Formating and some cleanup
Jul 13, 2020
29a3e21
Starting Layout for combining the tools
Jul 13, 2020
8ae1f9f
Param Logic, Thread Logic, and GCP environment Setup
Jul 13, 2020
a4a1c18
Kinda of works but sends duplicate because of the nest loop
Jul 13, 2020
0768254
Multi Environment is alive!
Jul 14, 2020
68d9748
Cleaning up commented out shizer
Jul 14, 2020
d62e5af
Changing Prints to log_entry
Jul 14, 2020
131ee30
Creating Core File and moving log_entry
Jul 14, 2020
8a371fb
Able to execute either environment only
Jul 14, 2020
b0959c7
Removing code that is unnecessary
Jul 14, 2020
87228ce
Removing code from AWS
Jul 14, 2020
258b01f
Finishing touches complete
Jul 15, 2020
a5fd8df
Completed Checking for 1
Jul 15, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
plugins/*/bin/
plugins/*/certifi*
plugins/*/char*
plugins/*/idna*
plugins/*/requests*
plugins/*/url*
plugins/__pycache__/
plugins/*/__pycache__/
.idea/
service-account.json
venv/
__pycache__/
Loading