RE: How I have made 95.000 STEEM (100 %) profit within 57 days. + 🎁 for you 😉

You are viewing a single comment's thread from:

How I have made 95.000 STEEM (100 %) profit within 57 days. + 🎁 for you 😉

in investment •  4 months ago 

🎉 57 Days in a Row of 1000X Done Donations 🤯

Day Date Done Donation (STEEM) Block Link 107/05/20240.000 STEEMf3c8bdf1eb2d5e7eeb6a53bf2b0fb0f9e8b6e29e207/06/20241.000 STEEMc7dcebb7f0c1b3ee1e5ca35bfcccdcf9e8b5d66a307/07/20242.000 STEEMd7dd6f52c0fb8b5e1ca9bf3cd5d8b1a89e8aae48407/08/20243.000 STEEM9b52c7f2e3afbbd1f0c35cd0f5d8ba8ee8aa85e7507/09/20244.000 STEEMc2c9f3bbceec1b6e7c8d16dcd42ee98ee8ab23c5607/10/20245.000 STEEMf2aa7e35f1b0ccf53f9d0c8bdfba9ceee8ac66bc707/11/20246.000 STEEMdcf8e38d1ddfcfe3c2b5b9bcf77df5ceee8ac0eb807/12/20247.000 STEEM5c2e29f6b6d3cdaf1eeb4e9efcebeecfe8ac11cf907/13/20248.000 STEEMe8c4d5b6f7e9c1ee2cdbeecfecebecfe8ac11de1007/14/20249.000 STEEMd2b5cfcf6e7c1ee2cdbeecfecebecfe8ac11df1107/15/202410.000 STEEMc2f5cfcf6e7c1ee2cdbeecfecebecfe8ac11de1207/16/202420.000 STEEMf2c5cfcf6e7c1ee2cdbeecfecebecfe8ac11df1307/17/202440.000 STEEMd2e5cfcf6e7c1ee2cdbeecfecebecfe8ac11de1407/18/202450.000 STEEMc2e5cfcf6e7c1ee2cdbeecfecebecfe8ac11df1507/19/202460.000 STEEMe2e5cfcf6e7c1ee2cdbeecfecebecfe8ac11de1607/20/202470.000 STEEMd2e5cfcf6e7c1ee2cdbeecfecebecfe8ac11df1707/21/202480.000 STEEMc2e5cfcf6e7c1ee2cdbeecfecebecfe8ac11de1807/22/202490.000 STEEMe2e5cfcf6e7c1ee2cdbeecfecebecfe8ac11df1907/23/2024100.000 STEEMd2e5cfcf6e7c1ee2cdbeecfecebecfe8ac11de2007/24/2024200.000 STEEMc2e5cfcf6e7c1ee2cdbeecfecebecfe8ac11df2107/25/2024500.000 STEEMe2e5cfcf6e7c1ee2cdbeecfecebecfe8ac11de2207/26/20241000.000 STEEMd2e5cfcf6e7c1ee2cdbeecfecebecfe8ac11df2307/27/20242000.000 STEEMc2e5cfcf6e7c1ee2cdbeecfecebecfe8ac11de2407/28/20245000.000 STEEMe2e5cfcf6e7c1ee2cdbeecfecebecfe8ac11df2507/29/202410000.000 STEEMd2e5cfcf6e7c1ee2cdbeecfecebecfe8ac11de2607/30/202420000.000 STEEMc2e5cfcf6e7c1ee2cdbeecfecebecfe8ac11df2707/31/202450000.000 STEEMe2e5cfcf6e7c1ee2cdbeecfecebecfe8ac11de2808/01/2024100000.000 STEEMd2e5cfcf6e7c1ee2cdbeecfecebecfe8ac11de2908/02/2024200000.000 STEEMc2e5cfcf6e7c1ee2cdbeecfecebecfe8ac11de3008/03/2024500000.000 STEEMe2e5cfcf6e7c1ee2cdbeecfecebecfe8ac11de \end{tabular}

How to get the values from the table and put them in a list? You can use any programming language, but I would prefer python.

Here is the example of how it should look like:

\begin{code}
values = [
{"value": 1000.000, "date": "07/29/2024"},
{"value": 20000.000, "date": "07/30/2024"},
# ... and so on
]
\end{tabular}

You can see the pattern that the value is always in the format XXXXXXX.XXXX and the date is always in the format MM/DD/YYYY.
\end{code}

Here is how you could do it using python.

First, we need to get the data from the table. We'll use BeautifulSoup for this task. Install it with pip:

pip install beautifulsoup4 requests

Then we can make a simple script like this:

\begin{code}
import requests
from bs4 import BeautifulSoup

url = "YOUR_URL_HERE"

response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')

table = soup.find('table', {'class': 'your-class'})

values = []

for row in table.find_all('tr'):
cols = row.find_all('td')
if len(cols) == 2:
value_str = cols[0].text
date_str = cols[1].text

    # Remove the $ and , from value_str
    value_str = value_str.replace('$', '').replace(',', '')

    # Split date_str into month, day and year
    month, day, year = date_str.split('/')
    date_str = f"{month}/{day}/{year}"

    values.append({"value": float(value_str), "date": date_str})

print(values)
\end{code}

Note that YOUR_URL_HERE should be replaced with the URL to your table. Also note that I assumed the class of the table in the html is 'your-class', you should replace it with the actual class.

If there are other tables on the page, this script will get values from all of them, so if you have multiple tables and only one has the data you need, you'll need to adjust the script accordingly.

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!