Skip to content

Commit

Permalink
Sat, Aug 3, 2024, 10:08 AM +03:00
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdoullahBougataya committed Aug 3, 2024
1 parent d8ab209 commit 4681663
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ def scrapper():
row += tuple(map(str, [string_element]))
if titles[j] == 'Specific impulse Vac (s)' or titles[j] == 'Specific impulse SL (s)':
row += tuple(map(str, [""]))
print(f"{(i/len(rows_bs)) * 50}% done")
# append the data with the newly made row if it is not empty
if row != ():
data.append(row)
Expand Down Expand Up @@ -140,7 +141,7 @@ def scrapper():
row += tuple(map(str, [string_element]))
if titlesr[j] == 'Power cycle' or titlesr[j] == 'Specific impulse Vac (s)':
row += tuple(map(str, [""]))

print(f"{(i/len(rows_bs)) * 50 + 50}% done")
# append the data with the newly made row if it is not empty
if row != ():
if row[0] == 'P230':
Expand Down

0 comments on commit 4681663

Please sign in to comment.