### The Problem A few posts ago, I complained about the inability to import certain HIVE wallet transactions into Cointracking. Rather than manually hack at another spreadsheet after January, I decided to try my hand at automating it. What I needed was a way to translate the CSV file that the Hive.blog wallet spits out to a format that Cointracking recognizes.   *Hive.blog export*   *Cointracking Import* As you can see, the CSV formats don't match at all, and unfortunately Cointracking doesn't have native Hive support.  ### My Solution First off, I am not a developer. At best I'm a coding hack. If you developers know of a easier way to refactor this, I'm all 'ears'. For my solution, I decided to use Python with Jupyter notebook and the Pandas library. Jupyter notebook is great for hacks like me by the way. You can run all of this yourself by downloading the Anaconda Personal Edition for free ([https://www.anaconda.com/products/individual](https://www.anaconda.com/products/individual)). The steps I took went basically like this. * Download a copy of my Hive transaction history and load it into a Pandas data frame. * Drop any columns from the Hive wallet output I didn't need * Rename the remaining columns to make them Cointracking compliant * Remove any rows from the transaction types that require claiming (curation, author, and comment rewards) * Arrange the rows in the proper order to make them Cointracking compliant * Insert any columns required by Cointracking (Whether they get populated or not) * Populate any necessary columns (Exchange, Trade-Group, Comment) * Split the 'amount' column into two new columns ('Buy Amount' & 'Buy Currency') * Any required formatting, such as removing whitespace and the 'T' from the Date/timestamp.  ### The Code Here is the code I used. I got lazy with the variable I used for my data frame, but you should get the idea. I will probably work to make it more intuitive. The good news I could get everything I needed done with just the Pandas libary. ```python #Import the Pandas Library import pandas as pd #read csv into raw var raw = pd.read_csv('hive-report.csv') #Drop unneeded columns raw.drop(columns=[' comment_author',' comment_permlink',' author',' permlink', ' curator', ' payout_must_be_claimed',' reward',' memo',' hbd_payout'], inplace=True) raw.drop(columns=[' hive_payout',' vesting_payout',' payout',' to',' from' ], inplace=True) #Rename needed columns raw.rename(columns={'timestamp': 'Date',' opType': 'Type',' amount': 'Buy Amount' }, inplace=True) #Remove unneeded transaction types remove_types = raw[raw["Type"].str.contains(" curation_reward| author_reward| comment_reward")==False] #Arrange types in proper order arrange_types = remove_types[['Type','Buy Amount', 'Date']] #Replace transfer with deposit arrange_types['Type'] = arrange_types['Type'].replace([' transfer'], 'Income') #Strip whitespace from Buy Amount arrange_types['Buy Amount'] = arrange_types['Buy Amount'].str.lstrip() #Split price from currency arrange_types[['Buy Amount','Buy Currency']] = arrange_types['Buy Amount'].str.split(' ', 1, expand=True) #Rearrange columns arrange_types = arrange_types[['Type','Buy Amount', 'Buy Currency', 'Date']] #Insert required columns for Cointracking arrange_types.insert(3,'Sell Amount','') arrange_types.insert(4,'Sell Currency','') arrange_types.insert(5,'Fee','') arrange_types.insert(6,'Fee Currency','') arrange_types.insert(7,'Exchange','') arrange_types.insert(8,'Trade-Group','') arrange_types.insert(9,'Comment','') #Assign values for exchange, trade-group, and comments arrange_types.loc[:,'Exchange'] = 'HIVE WALLET' arrange_types.loc[:,'Trade-Group'] = 'HIVE CSV' arrange_types.loc[:,'Comment'] = 'Delegation Income' #Remove T character from date arrange_types['Date'] = arrange_types['Date'].str.replace('T', ' ') #Save to a new csv arrange_types.to_csv('hive-report2.csv', index=False) ```  ### Proof of Work   As you can see above, the CSV I generated was property formatted and successfully imported into cointracking.  ### Conclusion This was a fun exercise for me. I'm not a developer (obviously). The good news is I can use similar steps for other Exchanges and wallets that export CSV files that Cointracking doesn't support. I will not have to hack at spreadsheets every month for various transactions exports. If any Python/Pandas experts out there read this, please do critique my work. Obviously this is functional, but I would be interested to know if there is a more efficient way of performing the same work. If you were dying for a way to record HIVE deposits, please feel free to use this and let me know if you have any questions. Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@joshman/making-the-hive-blog-wallet-financial-report-useable-in-cointracking-with-python-pandas-jupyter)
author | joshman |
---|---|
permlink | making-the-hive-blog-wallet-financial-report-useable-in-cointracking-with-python-pandas-jupyter |
category | hive-167922 |
json_metadata | {"app":"leofinance/0.2","format":"markdown","tags":["palnet","leofinance","cryptocurrency","hive","python","learntocode","neoxian"],"canonical_url":"https://leofinance.io/@joshman/making-the-hive-blog-wallet-financial-report-useable-in-cointracking-with-python-pandas-jupyter","links":["https://www.anaconda.com/products/individual"],"image":["https://images.hive.blog/DQmSMYqms9nsZQqTL3GhyWzdX47LwmLbbq517suUQXk7pZy/image.png","https://images.hive.blog/DQmbo1N5LB8YqtCCGHyLfPVMNX7e6j3DDBUGS72RBf3CNSZ/image.png","https://images.hive.blog/DQmXvPEmpViEBcHdFpRoFCLtiq25cbsdEqg7VrHdWZxAHMa/image.png","https://images.hive.blog/DQmWyq8comCmXLzgNDy6QW5jsVLhTY61Rcztu2cdS7qcTwL/image.png","https://images.hive.blog/DQmXq356zS8yBcygigWGQiXkRK6jCyojRq3GGJmnWth7iSw/Untitled%20design.png","https://images.hive.blog/DQmW8DZ9AKAkwe3qTeQfv6Xo7VyDg3AeezatHErwBQw1BN7/image.png","https://images.hive.blog/DQma53bfv57FzBTSjhBDEovUaRmWoKx1TTdQndVnNhkyRAa/image.png"]} |
created | 2022-01-27 23:12:33 |
last_update | 2022-01-27 23:12:33 |
depth | 0 |
children | 6 |
last_payout | 2022-02-03 23:12:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 32.225 HBD |
curator_payout_value | 32.088 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,909 |
author_reputation | 277,932,931,100,174 |
root_title | "Making the Hive Blog Wallet Financial Report Useable in Cointracking with Python/Pandas/Jupyter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,911,402 |
net_rshares | 51,415,170,537,088 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gerber | 0 | 12,922,661,352 | 4% | ||
daan | 0 | 51,601,562,602 | 8% | ||
ezzy | 0 | 221,290,051 | 4% | ||
redpalestino | 0 | 489,628,223 | 35% | ||
arcange | 0 | 210,575,469,221 | 2% | ||
exyle | 0 | 36,557,583,115 | 4% | ||
bryan-imhoff | 0 | 533,833,874,328 | 50% | ||
penguinpablo | 0 | 309,163,638,601 | 12% | ||
uwelang | 0 | 69,275,288,194 | 6.4% | ||
funnyman | 0 | 1,075,145,332 | 4.8% | ||
walterjay | 0 | 4,763,222,265 | 0.35% | ||
steemitboard | 0 | 10,150,968,182 | 2% | ||
alexis555 | 0 | 3,111,137,931,169 | 33% | ||
trafalgar | 0 | 21,195,936,012,172 | 50% | ||
dickturpin | 0 | 33,529,061,579 | 100% | ||
raindrop | 0 | 347,405,876,753 | 50% | ||
l337m45732 | 0 | 955,044,461 | 3.2% | ||
sokha | 0 | 2,317,311,414 | 17.5% | ||
dune69 | 0 | 21,999,318,036 | 3.2% | ||
iansart | 0 | 15,022,962,879 | 4% | ||
world-travel-pro | 0 | 66,771,024,084 | 50% | ||
bitcoinflood | 0 | 253,828,235,055 | 15% | ||
alphacore | 0 | 4,663,779,281 | 2.42% | ||
spectrumecons | 0 | 1,348,713,645,268 | 25% | ||
ew-and-patterns | 0 | 27,656,707,572 | 10% | ||
joeyarnoldvn | 0 | 609,469,134 | 1.76% | ||
mcoinz79 | 0 | 237,658,053,526 | 100% | ||
runicar | 0 | 4,163,352,996 | 50% | ||
dante31 | 0 | 1,231,797,694 | 8% | ||
nicniezgrublem | 0 | 90,012,610 | 3.2% | ||
bluemoon | 0 | 67,052,466,462 | 20% | ||
dado13btc | 0 | 888,401,285 | 50% | ||
shebe | 0 | 3,239,356,117 | 50% | ||
tykee | 0 | 709,721,125 | 8% | ||
thauerbyi | 0 | 2,422,390,417 | 14.4% | ||
francis.melville | 0 | 5,725,722,600 | 16% | ||
buggedout | 0 | 517,588,121,510 | 20% | ||
pardeepkumar | 0 | 25,361,385,107 | 50% | ||
felander | 0 | 23,079,321,458 | 4% | ||
bahagia-arbi | 0 | 863,704,872 | 16% | ||
justinparke | 0 | 276,873,723,499 | 75% | ||
yogacoach | 0 | 4,169,468,934 | 4% | ||
chinchilla | 0 | 226,095,363,325 | 100% | ||
joshman | 0 | 0 | 0% | ||
roleerob | 0 | 214,328,181,638 | 50% | ||
steemmatt | 0 | 93,941,181,849 | 100% | ||
jlsplatts | 0 | 208,974,553,599 | 22.5% | ||
martusamak | 0 | 851,372,285 | 100% | ||
vegoutt-travel | 0 | 20,579,024,290 | 25% | ||
caladan | 0 | 22,405,951,459 | 3.4% | ||
captainklaus | 0 | 20,383,497,794 | 100% | ||
felipejoys | 0 | 114,330,259,996 | 100% | ||
vintherinvest | 0 | 13,580,280,066 | 8% | ||
traf | 0 | 1,883,741,330,146 | 50% | ||
ocupation | 0 | 263,157,715,993 | 50% | ||
astromaniak | 0 | 1,196,121,154 | 100% | ||
b00m | 0 | 676,025,670 | 5% | ||
enjoyinglife | 0 | 22,019,713,018 | 50% | ||
cryptonized | 0 | 17,414,595,476 | 12% | ||
abitcoinskeptic | 0 | 2,829,977,876 | 50% | ||
r1s2g3 | 0 | 58,807,547,213 | 50% | ||
memez | 0 | 14,576,891,084 | 20% | ||
mathowl | 0 | 36,544,730,978 | 50% | ||
samueladams314 | 0 | 908,246,098 | 100% | ||
futuremind | 0 | 116,441,545,074 | 100% | ||
silentscreamer | 0 | 84,313,682,799 | 100% | ||
pkocjan | 0 | 3,461,992,420 | 3.2% | ||
kuttmoped | 0 | 170,412,261,026 | 100% | ||
annabellenoelle | 0 | 5,165,273,535 | 100% | ||
elektr1ker | 0 | 1,106,932,585 | 25% | ||
irgendwo | 0 | 61,808,838,719 | 35% | ||
mindtrap | 0 | 748,245,365 | 50% | ||
reazuliqbal | 0 | 23,103,689,528 | 4% | ||
erikah | 0 | 140,316,232,828 | 10% | ||
lionsuit | 0 | 834,647,301 | 100% | ||
bestboom | 0 | 1,124,418,993 | 4% | ||
onepercentbetter | 0 | 15,164,725,372 | 12% | ||
obsesija | 0 | 2,465,102,520 | 8% | ||
gadrian | 0 | 11,741,724,007 | 6.4% | ||
lordbutterfly | 0 | 333,522,476,562 | 100% | ||
sugandhaseth | 0 | 39,916,937,533 | 100% | ||
ecotone | 0 | 9,385,238,364 | 100% | ||
quochuy | 0 | 1,680,738,785,928 | 50.02% | ||
kgakakillerg | 0 | 16,795,908,715 | 10% | ||
saboin | 0 | 117,964,004,264 | 15% | ||
meanbees | 0 | 1,130,519,123 | 0.4% | ||
sbi3 | 0 | 113,821,554,931 | 12.31% | ||
steem.services | 0 | 2,384,105,793 | 1% | ||
zaxan | 0 | 554,204,999 | 8% | ||
techcoderx | 0 | 259,551,166,071 | 100% | ||
pladozero | 0 | 31,054,099,872 | 10% | ||
nateaguila | 0 | 279,544,361,226 | 8% | ||
enforcer48 | 0 | 115,780,436,840 | 15% | ||
spamfarmer | 0 | 708,579,317 | 10% | ||
merlion | 0 | 582,411,584 | 12% | ||
sgbonus | 0 | 101,190,027,199 | 50% | ||
swisswitness | 0 | 609,962,524 | 4% | ||
jd4e | 0 | 1,844,935,498 | 25% | ||
aulia1993 | 0 | 4,483,567,495 | 15% | ||
shortsegments | 0 | 1,300,457,987 | 0.8% | ||
vida-blanca | 0 | 19,372,956,680 | 100% | ||
nazomimatute1998 | 0 | 1,184,574,024 | 100% | ||
gallerani | 0 | 989,180,138 | 16% | ||
smartvote | 0 | 42,592,607,209 | 2% | ||
anttn | 0 | 7,139,254,080 | 27% | ||
slutwife | 0 | 2,449,844,405 | 50% | ||
dlike | 0 | 24,588,459,776 | 4% | ||
engrave | 0 | 72,134,293,202 | 3.2% | ||
foodfightfriday | 0 | 22,235,675,670 | 25% | ||
pboulet | 0 | 633,081,337 | 0.7% | ||
bobby.madagascar | 0 | 1,141,337,048 | 4% | ||
kuku-splatts | 0 | 9,212,329,905 | 50% | ||
besheda | 0 | 1,773,841,253 | 50% | ||
steempope | 0 | 424,196,147 | 70% | ||
followjohngalt | 0 | 1,202,175,687 | 3.6% | ||
criptoanarquista | 0 | 560,241,966 | 100% | ||
regularowl | 0 | 1,567,630,911 | 25% | ||
leviackerman | 0 | 858,410,206 | 100% | ||
bluerobo | 0 | 68,464,068,279 | 100% | ||
tommyknockers | 0 | 3,020,182,699 | 50% | ||
smon-fan | 0 | 1,715,594,851 | 100% | ||
jacuzzi | 0 | 3,690,238,782 | 1.2% | ||
tr777 | 0 | 1,793,651,234 | 100% | ||
sm-jewel | 0 | 1,739,133,207 | 100% | ||
tr77 | 0 | 1,697,177,226 | 100% | ||
flyingbolt | 0 | 1,198,446,345 | 16% | ||
smonian | 0 | 1,893,013,493 | 100% | ||
jjangjjanggirl | 0 | 1,772,084,790 | 100% | ||
heero-yuy | 0 | 908,449,893 | 100% | ||
trowa-barton | 0 | 944,318,115 | 100% | ||
duo-maxwell | 0 | 890,415,308 | 100% | ||
venommate | 0 | 883,539,707 | 100% | ||
quatre-raberba | 0 | 930,323,705 | 100% | ||
wufei-chang | 0 | 856,421,247 | 100% | ||
kakashi-hatake | 0 | 824,060,291 | 100% | ||
hungrybear | 0 | 524,352,458 | 12% | ||
razu35 | 0 | 852,048,599 | 100% | ||
venommate2 | 0 | 800,017,369 | 100% | ||
smonbear | 0 | 1,975,259,990 | 100% | ||
mfblack | 0 | 986,082,365 | 3.8% | ||
photographercr | 0 | 19,278,767,431 | 10% | ||
megavest | 0 | 37,588,699,103 | 16% | ||
gangstalking | 0 | 0 | 0.01% | ||
travelwritemoney | 0 | 2,298,253,464 | 16% | ||
cheer-up | 0 | 590,012,698 | 3.2% | ||
astil.codex | 0 | 1,212,518,721 | 70% | ||
milu-the-dog | 0 | 1,155,225,202 | 4% | ||
triplea.bot | 0 | 936,108,168 | 4% | ||
tiffin | 0 | 1,010,292,058 | 3.2% | ||
steem.leo | 0 | 5,774,041,475 | 4% | ||
abh12345.leo | 0 | 1,629,849,462 | 60% | ||
leo.voter | 0 | 12,783,789,358,980 | 16% | ||
empoderat | 0 | 158,754,954,332 | 8% | ||
chrono.leo | 0 | 815,708,190 | 100% | ||
bearjohn | 0 | 1,377,348,866 | 75% | ||
mktmaker | 0 | 650,204,335 | 72.75% | ||
babytarazkp | 0 | 9,498,192,106 | 85% | ||
idig | 0 | 5,222,286,802 | 12.5% | ||
urtrailer | 0 | 359,386,062,242 | 50% | ||
andylein | 0 | 81,750,670,943 | 80% | ||
coinlogic.online | 0 | 6,237,886,875 | 8% | ||
alexcocopro | 0 | 261,489,588 | 100% | ||
splatts | 0 | 85,202,465,925 | 25% | ||
sacrosanct | 0 | 17,102,802,315 | 50% | ||
ribary | 0 | 1,368,007,384 | 2% | ||
onestop | 0 | 2,502,494,501 | 8% | ||
kgsupport | 0 | 1,651,615,425 | 36% | ||
mice-k | 0 | 354,996,097 | 4% | ||
julesquirin | 0 | 1,488,088,780 | 10% | ||
fengchao | 0 | 8,153,763,530 | 2% | ||
hivebuzz | 0 | 4,715,039,361 | 2% | ||
leofinance | 0 | 93,095,308,311 | 16% | ||
hivewatchers | 0 | 81,487,879,928 | 55% | ||
blue-witness | 0 | 2,993,889,155 | 100% | ||
laruche | 0 | 30,154,557,189 | 0.7% | ||
ykretz | 0 | 732,665,023 | 1.6% | ||
master-lamps | 0 | 14,770,650,826 | 100% | ||
hivevenezuela | 0 | 844,302,906 | 100% | ||
polish.hive | 0 | 28,107,603 | 4% | ||
captainhive | 0 | 511,225,153,843 | 25% | ||
dcityrewards | 0 | 143,060,320,825 | 4% | ||
digitt6 | 0 | 801,340,672 | 100% | ||
yugimuto | 0 | 789,599,626 | 100% | ||
actioncats | 0 | 15,679,019,824 | 11.2% | ||
magodelcaosnegro | 0 | 826,489,523 | 100% | ||
hivebtc | 0 | 860,459,642 | 100% | ||
beehivetrader | 0 | 896,921,392 | 8% | ||
sagadegeminis | 0 | 807,564,494 | 100% | ||
hivecur | 0 | 37,563,332 | 4% | ||
hboy | 0 | 896,171,125 | 100% | ||
constantinopla | 0 | 805,727,415 | 100% | ||
logicforce | 0 | 15,034,536,461 | 100% | ||
bellaciao | 0 | 805,773,646 | 100% | ||
jesucristo | 0 | 789,530,899 | 100% | ||
yodinzaku | 0 | 789,574,388 | 100% | ||
jelly13 | 0 | 974,165,338 | 2% | ||
lordarianthus | 0 | 805,463,395 | 100% | ||
spiritminer | 0 | 786,749,148 | 100% | ||
drfate | 0 | 805,487,956 | 100% | ||
confucio | 0 | 777,231,747 | 100% | ||
olaunlimited | 0 | 34,067,528,208 | 22.5% | ||
splintergod | 0 | 805,477,656 | 100% | ||
magnor | 0 | 805,460,462 | 100% | ||
w-t-fi | 0 | 1,371,950,728 | 100% | ||
w-splatts | 0 | 9,849,463,940 | 50% | ||
meele | 0 | 805,449,546 | 100% | ||
kretchtallevor | 0 | 879,812,167 | 100% | ||
onyxsentinel | 0 | 878,946,241 | 100% | ||
khymeria | 0 | 877,797,788 | 100% | ||
sicmundus | 0 | 860,714,689 | 100% | ||
alemania1 | 0 | 882,211,686 | 100% | ||
alemania2 | 0 | 925,267,959 | 100% | ||
alemania3 | 0 | 930,507,735 | 100% | ||
alemania4 | 0 | 861,658,150 | 100% | ||
alemania5 | 0 | 853,339,462 | 100% | ||
alemania6 | 0 | 873,982,583 | 100% | ||
alemania7 | 0 | 830,902,916 | 100% | ||
alemania8 | 0 | 857,639,524 | 100% | ||
alemania9 | 0 | 664,419,388 | 100% | ||
lainiwakura | 0 | 2,091,828,251 | 100% | ||
darkarmy | 0 | 859,875,379 | 100% | ||
reiayanami | 0 | 805,024,272 | 100% | ||
kaiosama | 0 | 877,099,575 | 100% | ||
pitagoras | 0 | 876,808,286 | 100% | ||
steinitz | 0 | 796,863,388 | 100% | ||
sevenoh-fiveoh | 0 | 993,694,625 | 5% | ||
sawbuilder | 0 | 894,991,665 | 100% | ||
alemania10 | 0 | 801,745,501 | 100% | ||
alemania11 | 0 | 800,411,119 | 100% | ||
alemania12 | 0 | 889,694,237 | 100% | ||
alemania13 | 0 | 790,261,411 | 100% | ||
alemania14 | 0 | 888,404,443 | 100% | ||
alemania15 | 0 | 889,550,129 | 100% | ||
eddie-earner | 0 | 539,981,123 | 8% | ||
mrhuman88 | 0 | 44,347,927 | 50% | ||
kattycrochet | 0 | 9,439,995,135 | 25% | ||
torrey.leo | 0 | 601,192,670 | 100% | ||
ivreich | 0 | 1,027,254,025 | 100% | ||
sharkleo | 0 | 1,018,458,712 | 16% | ||
dcrops | 0 | 16,571,845,398 | 2% | ||
praetoria | 0 | 916,185,808 | 100% | ||
ruleroftheseas | 0 | 897,990,087 | 100% | ||
mccoy02 | 0 | 42,093,780,549 | 100% | ||
leo.tokens | 0 | 1,476,273,600 | 16% | ||
adamada.leo | 0 | 837,353,583 | 100% | ||
cielitorojo | 0 | 11,402,957,504 | 8% | ||
sofs-su | 0 | 34,995,229,945 | 37.3% | ||
shahab021 | 0 | 0 | 100% | ||
elongate | 0 | 527,729,560 | 16% | ||
amongus | 0 | 594,696,445 | 16% | ||
elgatoshawua | 0 | 3,459,255,645 | 8% | ||
zdigital222 | 0 | 177,202,669 | 96% | ||
luckyali.leo | 0 | 532,718,321 | 16% | ||
cryptololo | 0 | 1,727,352,233 | 14.4% | ||
broadhive-org | 0 | 1,231,078,218 | 8% | ||
leoball | 0 | 885,033,249 | 16% | ||
impurgent | 0 | 662,280,672 | 40% | ||
meesterleo | 0 | 988,814,929 | 60% | ||
print3dpro | 0 | 25,350,245,838 | 100% | ||
solominer.leo | 0 | 739,323,285 | 100% | ||
caladuum | 0 | 623,625,160 | 100% | ||
heroofbeyond | 0 | 799,289,581 | 100% | ||
princerennyn | 0 | 783,186,219 | 100% | ||
dunkerque | 0 | 1,129,258,705 | 100% | ||
banzafahra | 0 | 651,535,246 | 8% | ||
cugel | 0 | 2,905,928,627 | 8% | ||
rzc24-nftbbg | 0 | 1,860,898,403 | 100% | ||
impermanentloss | 0 | 961,239,948 | 100% | ||
liquiditypool | 0 | 961,074,535 | 100% | ||
mydefipet | 0 | 942,129,415 | 100% | ||
djinnoshannus | 0 | 889,263,017 | 100% | ||
harklaw | 0 | 871,742,639 | 100% | ||
djinnbiljka | 0 | 834,636,068 | 100% | ||
carys | 0 | 2,826,918,993 | 100% | ||
djinnchwala | 0 | 869,842,156 | 100% | ||
lavalauncher | 0 | 850,529,001 | 100% | ||
djinnrenova | 0 | 828,342,236 | 100% | ||
nagaassassin | 0 | 624,548,457 | 100% | ||
explodingrats | 0 | 851,827,710 | 100% | ||
topbooster.leo | 0 | 528,793,186 | 50% | ||
waivio.welcome | 0 | 457,266,930 | 0.92% | ||
waivio.com | 0 | 296,581,062 | 0.92% | ||
gtpacheko17 | 0 | 1,992,884,856 | 100% | ||
india-leo | 0 | 2,631,657,438 | 100% | ||
saboin.leo | 0 | 88,188,271 | 20% | ||
hivefolks | 0 | 493,967,750,180 | 100% | ||
beebeewrites | 0 | 16,533,783 | 100% |
Interesting! I don't know why you say you are not a developer. There are developers at all sorts of levels. Clearly, you have a handle on the fundamental skills you need. Becoming more senior is a matter of practice, patience, and time. Ironically, although I never worked as a developer, several developers used to come to my desk to ask for help. Ironically because, since "developer" was not in my job title or description, I later could not get a job as a developer even though my ability must have been reasonable for the word to have spread enough for people to come for help. You are developing software, so... congratulations, you are a developer! My two cents, anyhow.
author | carys |
---|---|
permlink | re-joshman-2022130t51421707z |
category | hive-167922 |
json_metadata | {"tags":["hive-167922","palnet","leofinance","cryptocurrency","hive","python","learntocode","neoxian"],"app":"ecency/3.0.24-mobile","format":"markdown+html"} |
created | 2022-01-30 12:14:24 |
last_update | 2022-01-30 12:14:24 |
depth | 1 |
children | 1 |
last_payout | 2022-02-06 12:14:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.155 HBD |
curator_payout_value | 0.154 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 686 |
author_reputation | 1,682,171,130,249 |
root_title | "Making the Hive Blog Wallet Financial Report Useable in Cointracking with Python/Pandas/Jupyter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,982,929 |
net_rshares | 215,559,390,493 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
joshman | 0 | 215,559,390,493 | 20% | ||
gangstalking | 0 | 0 | 0.01% |
You're right, technically I developed something. Thanks for the vote of confidence, I'll take it!
author | joshman |
---|---|
permlink | re-carys-r6m4g9 |
category | hive-167922 |
json_metadata | {"tags":["hive-167922"],"app":"peakd/2022.01.2"} |
created | 2022-02-01 06:24:12 |
last_update | 2022-02-01 06:24:12 |
depth | 2 |
children | 0 |
last_payout | 2022-02-08 06:24:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.010 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 100 |
author_reputation | 277,932,931,100,174 |
root_title | "Making the Hive Blog Wallet Financial Report Useable in Cointracking with Python/Pandas/Jupyter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 110,035,147 |
net_rshares | 16,235,506,775 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dustbunny | 0 | 13,234,721,821 | 3.08% | ||
carys | 0 | 3,000,784,954 | 100% |
Electronic-terrorism, voice to skull and neuro monitoring on Hive and Steem. You can ignore this, but your going to wish you didnt soon. This is happening whether you believe it or not. https://ecency.com/fyrstikken/@fairandbalanced/i-am-the-only-motherfucker-on-the-internet-pointing-to-a-direct-source-for-voice-to-skull-electronic-terrorism
author | gangstalking |
---|---|
permlink | re-joshman-making-the-hive-blog-wallet-financial-report-useable-in-cointracking-with-python-pandas-jupyter-20220127t231242696z |
category | hive-167922 |
json_metadata | {"app":"hive-bot/0.6.3"} |
created | 2022-01-27 23:12:45 |
last_update | 2022-01-27 23:12:45 |
depth | 1 |
children | 0 |
last_payout | 2022-02-03 23:12:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 343 |
author_reputation | -67,597,107,868,724 |
root_title | "Making the Hive Blog Wallet Financial Report Useable in Cointracking with Python/Pandas/Jupyter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,911,406 |
net_rshares | -1,914,609,843,936 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -2,766,194,852 | -0.1% | ||
joshman | 0 | -1,100,500,474,682 | -100% | ||
nathanpieters | 0 | -4,119,458,143 | -50% | ||
gabrielatravels | 0 | -90,087,327,040 | -50% | ||
technologix | 0 | -36,806,115,817 | -50% | ||
antisocialist | 0 | -564,799,257,553 | -100% | ||
ihal0001 | 0 | -2,012,906,219 | -50% | ||
memehub | 0 | -87,764,216,270 | -100% | ||
chicoduro | 0 | -20,133,762,709 | -100% | ||
unipug | 0 | -1,261,875,816 | -100% | ||
nanggroe1 | 0 | -4,358,254,835 | -99% |
This post has been manually curated by @bhattg from Indiaunited community. Join us on our [Discord Server](https://discord.gg/bGmS2tE). Do you know that you can earn a passive income by delegating your Leo power to @india-leo account? We share 100 % of the curation rewards with the delegators. <sub>**Please contribute to the community by upvoting this comment and posts made by @indiaunited.**</sub>
author | india-leo |
---|---|
permlink | indiaunited-1643339234492 |
category | hive-167922 |
json_metadata | {"app":"hiveblog/0.1","tags":["palnet","leofinance","cryptocurrency","hive","python","learntocode","neoxian"]} |
created | 2022-01-28 03:07:15 |
last_update | 2022-01-28 03:07:15 |
depth | 1 |
children | 0 |
last_payout | 2022-02-04 03:07:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.061 HBD |
curator_payout_value | 0.061 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 405 |
author_reputation | 7,493,899,125,940 |
root_title | "Making the Hive Blog Wallet Financial Report Useable in Cointracking with Python/Pandas/Jupyter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,916,283 |
net_rshares | 98,592,154,493 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
joshman | 0 | 98,592,154,493 | 10% |
Oh this is great but if one wants to use it for tax purposes is there a way to know how much those transactions are in $USD? Thanks
author | logicforce |
---|---|
permlink | re-joshman-2022128t127100z |
category | hive-167922 |
json_metadata | {"tags":["palnet","leofinance","cryptocurrency","hive","python","learntocode","neoxian"],"app":"ecency/3.0.20-vision","format":"markdown+html"} |
created | 2022-01-28 06:02:06 |
last_update | 2022-01-28 06:02:06 |
depth | 1 |
children | 1 |
last_payout | 2022-02-04 06:02:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.133 HBD |
curator_payout_value | 0.133 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 131 |
author_reputation | 15,626,293,016,011 |
root_title | "Making the Hive Blog Wallet Financial Report Useable in Cointracking with Python/Pandas/Jupyter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,919,527 |
net_rshares | 216,679,951,490 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
joshman | 0 | 216,679,951,490 | 20% | ||
gangstalking | 0 | 0 | 0.01% |
Good question. Cointracking calculates that for you based upon the date/time. Most of the tracking software does. Otherwise you'd need to go look at historical prices and record them for each transaction since the price continually fluctuates.
author | joshman |
---|---|
permlink | re-logicforce-r6erqs |
category | hive-167922 |
json_metadata | {"tags":["hive-167922"],"app":"peakd/2022.01.2"} |
created | 2022-01-28 07:06:30 |
last_update | 2022-01-28 07:06:30 |
depth | 2 |
children | 0 |
last_payout | 2022-02-04 07:06:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 245 |
author_reputation | 277,932,931,100,174 |
root_title | "Making the Hive Blog Wallet Financial Report Useable in Cointracking with Python/Pandas/Jupyter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 109,920,507 |
net_rshares | 0 |