-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from themarshallproject/0026-random-carousel
Random carousel review, or ... randousel?!
- Loading branch information
Showing
68 changed files
with
8,603 additions
and
6,185 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,9 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: / | ||
schedule: | ||
interval: daily | ||
time: 10:00 | ||
open-pull-requests-limit: 10 | ||
ignore: | ||
- dependency-name: "@octokit/rest" | ||
versions: | ||
- 18.0.15 | ||
- 18.1.0 | ||
- 18.1.1 | ||
- 18.2.0 | ||
- 18.2.1 | ||
- 18.3.0 | ||
- 18.3.1 | ||
- 18.3.2 | ||
- 18.3.3 | ||
- 18.3.4 | ||
- 18.3.5 | ||
- 18.4.0 | ||
- 18.5.0 | ||
- 18.5.2 | ||
- dependency-name: gulp-markdown | ||
versions: | ||
- 5.1.0 | ||
- dependency-name: elliptic | ||
versions: | ||
- 6.5.3 | ||
allow: | ||
- dependency-type: production | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
time: "10:00" | ||
timezone: "America/New_York" | ||
open-pull-requests-limit: 10 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import click | ||
import pandas as pd | ||
|
||
@click.command() | ||
@click.argument('dep1') | ||
@click.argument('dep2') | ||
@click.argument('outputfilename') | ||
def process(dep1, dep2, outputfilename): | ||
print(dep1) | ||
print(dep2) | ||
df1 = pd.read_csv(dep1) | ||
df2 = pd.read_csv(dep2) | ||
|
||
output_df = df1.join(df2) | ||
# .... other processing steps | ||
output_df.write_csv(outputfilename) | ||
|
||
|
||
output_df.write_csv("/big/long/hardcoded_path.csv") | ||
|
||
|
||
if __name__ == '__main__': | ||
process() |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
def process(): | ||
print('hello weihua') | ||
|
||
if __name__ == '__main__': | ||
process() |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
def process(): | ||
print('hello ana') | ||
|
||
if __name__ == '__main__': | ||
process() |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import pandas as pd | ||
import click | ||
import json | ||
|
||
@click.command() | ||
@click.argument('input_filename') | ||
@click.argument('output_filename') | ||
def process(input_filename, output_filename): | ||
df = read_csv(input_filename) | ||
filtered_data = filter_data(df) | ||
export(filtered_data, output_filename) | ||
|
||
def read_csv(input_filename): | ||
f = open(input_filename) | ||
data = json.load(f)['data']['requests'] | ||
df = pd.DataFrame(data) | ||
return df | ||
|
||
def filter_data(df): | ||
filtered_data = df[df['wtf'] == True] | ||
return filtered_data | ||
|
||
def export(filtered_data, output_filename): | ||
filtered_data.to_json(output_filename, orient='records') | ||
print("export filter graphics data") | ||
|
||
if __name__ == '__main__': | ||
process() |
Binary file removed
BIN
-9.69 MB
...sis/output_data/April-2022-Quarterly-and-Annual-Reporting-Data-through-March-31-2022.xlsx
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file removed
BIN
-250 KB
analysis/output_data/pdfs/Indianapolis Recovery Plan (Annual Report).pdf
Binary file not shown.
Oops, something went wrong.