Skip to content

Commit

Permalink
updated output file names
Browse files Browse the repository at this point in the history
- added line to include my contribution
  • Loading branch information
samapriya committed Sep 29, 2023
1 parent 843c8d6 commit c132ad1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1,985 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_parse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ jobs:
row_data[headers[i]] = columns[i].text.strip()
row_data = {key: row_data[key] for key in key_order if key in row_data}
table_data.append(row_data)
with open('sorted_data.json', 'w') as json_file:
with open('LOLMonday_latest.json', 'w') as json_file:
json.dump(table_data, json_file, indent=2)
column_headers = key_order
csv_file_name = "output.csv"
csv_file_name = "LOLMonday_latest.csv"
with open(csv_file_name, mode="w", newline="", encoding="utf-8") as csv_file:
writer = csv.DictWriter(csv_file, fieldnames=column_headers)
writer.writeheader()
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Manuscript Monday is a weekly Twitter and LinkedIn series featuring recently pub

Manuscript Monday was founded by [Morgan Crowley](https://twitter.com/MorganAHCrowley), and over the years has received contributions from Flávia de Souza Mendes, Michelle Stuhlmacher, Agnieszka Faulkner, Sheryl Rose Reyes, and Matilda Anokye. Currently in September 2023, Flávia and Sheryl are the main contributors.

Automated & maintained by [Samapriya Roy](https://www.linkedin.com/in/samapriya/)

<p align="center">
<img width="300" height="300" src="lol.jpg?w=300&h=300">
</p>
Expand Down
Loading

0 comments on commit c132ad1

Please sign in to comment.