<center></center> <p>If we want to do object oriented programming with Python, we must know how to create <strong>classes in Python</strong>. In this post, I'll learn how to define a Hive class, its methods and properties in python and check it with an example.</p> <p><a href="https://peakd.com/hive-169321/@albro/object-oriented-programming-by-albro">Object-oriented programming</a> helps us write more readable code closer to the real world. We know that classes are like a template for objects. Each instance of a <i>class</i> is called an <i>object</i>.</p> <p>Each class can have different properties. These properties are called <i>state</i> or <i>attribute</i>. Also, each object can show its own behaviors; These behaviors are defined as <i>methods</i> in the <i>class</i>.</p> <p>For example, each of us is an instance (object) of the human class. Each of us has our own unique properties. From skin color and nationality to height, weight and age. Also, we can all do things like walk, eat or talk.<p> <p>Based on this example, in the following post, I'll implement a simple class of Hive in Python.</p> <h3>Class definition in Python</h3> <p>Suppose I want to create a class called Hive. This class represents the existence of the $Hive in our system.</p> <p>The general structure of class definition in Python is as follows. First, I write the keyword <code>class</code>, and then I write the name of the class with a capital letter and determine the beginning of the class range with <code>:</code>.</p> <p>Similar to any other structure in Python, the indentation of the code in the class structure is important.</p> <pre><code>class Hive: # class body here...</code></pre> <p>To define the description of the class, we write the descriptive docstring in the first line of the body in the form of a text string; Like the following class:</p> <pre><code>class Hive: """represent hive identity"""<br /> # class body here ....</code></pre> <p><strong>Class property in Python</strong></p> <p>The properties of a class (property) maintain the state and values associated with the created instances of that class. In fact, these properties are variables in which we put the required information.</p> <p>To define a <strong>class property in Python</strong> from the beginning, we do the same thing as defining a <a href="https://peakd.com/hive-169321/@albro/python-variable-and-constant-by-albro">Python variable</a>. In this way, in the body of the class, we write the name of the variable (property) and value it.</p> <pre><code>class Hive:<br /> name = "Hive" nationality = "blockchain" score = 100<br /> # some codes</code></pre> <p>Of course, sometimes we may create a variable in one of the class methods according to our needs. We can do this with the <code>self</code> keyword.</p> <p><strong>Define class methods</strong></p> <p>Class methods in Python are the behaviors of an object of the class. To define methods, we do exactly the same as defining <a href="https://peakd.com/hive-169321/@albro/python-function-and-tricks">functions in Python</a>. That is, after the keyword <code>def</code>, we write the name of the desired method and, if necessary, specify its input parameters.</p> <p>In the code below, I've defined a method called <code>say_hello()</code> that prints <code>"hello"</code> to the output.</p> <pre><code>class Hive: name = "Hive Blockchain" score = 100<br /> def say_hello(self): print( "Hello!" )</code></pre> <p><strong><i>Note that to define methods in Python classes, at least one input argument, which is usually defined as <code>self</code>, should be considered for it.</i></strong></p> <p><strong>The <code>self</code> variable in Python</strong></p> <p>In order to access the properties of the same object in the class methods, we use <code>self</code>. This value points to our same object and we can treat it like an object.</p> <p>In the following class, I've defined the <code>set_name()</code> method. This method takes an input from the user and changes the <code>name</code> property of the object.</p> <pre><code>class Hive: username = None score = 100<br /> def set_name(self, name): self.username = name</code></pre> <p>In the body of Python class methods, we can do the processing we want. Let me modify the above class a bit. I want to change the <code>username</code> when the <code>set_name()</code> method is called, if the <code>username</code> is <code>None</code>, otherwise print an error. (<a href="https://peakd.com/hive-169321/@albro/python-condition-structure-by-albro">Condition in Python</a>)</p> <pre><code>class Hive: username = None score = 100<br /> def set_name(self, name): if self.username == None: self.username = name else: print("You Cann't Change username Attribute!")</code></pre> <h3>Using classes in Python</h3> <p>Now that we have created a simple class, we can create an <code>object</code> from it. When an object is created, it will have a unique <code>id</code> in the computer memory. Therefore, all objects are different from each other and their properties are different from each other.</p> <p><strong>Create an object from a class</strong></p> <p>To create an object from a class in Python, it's enough to write the name of the class as a function. For example, to create a new object from the <code>Hive class</code>, we do the following:</p> <pre><code>user = Hive()</code></pre> <p>With this, a value is stored in the <code>user</code> variable, with the help of which we can access the methods and properties of the object. If we check the <code>type()</code> of this object, a result similar to the image below will be returned to us:</p> <center></center> <p>By putting a point (<code>.</code>) after the name of the object, we can call and use its methods and properties. In the code below, after creating an instance of the <code>Hive class</code>, I've defined its <code>username</code> and then printed the value of its <code>score</code> property. (<a href="https://peakd.com/hive-169321/@albro/python-print-in-output-5-tricks-by-albro">Print in Python</a>)</p> <pre><code>user = Hive()<br /> user.set_name("albro") print( user.score )</code></pre> <p><strong><code>__init__ constructor</code> in Python</strong></p> <p>When we want to create an object of a class in Python, a method is called. This method is called <code>constructor</code>. When we call <code>Hive()</code>, we are actually executing the constructor method of the <code>Hive class</code>.</p> <p>If no constructor method is defined for a class, there is no problem. But usually, this method is used for the initial tasks of creating an object from a class (such as <i>initializing properties</i>).</p> <p>To define the constructor method of the class in Python, we act as follows. The following constructor is the simplest class constructor.</p> <pre><code>class Hive: username = None score = 100<br /> def __init__(self): print("Hive Object Created")</code></pre> <p>We can define input arguments for the <code>__init__</code> method. For example, in the following class, I set the <code>username</code> and <code>power</code> of the user when the object is created.</p> <pre><code>class Hive: username = None power = 100<br /> def __init__(self, name, power): self.username = name self.power = power<br /> def say_hello(self): print("Hello", self.username)</code></pre> <p>You can see that with the help of <code>self</code>, we can define and value variables that are not already defined in the class (such as <code>power</code>). Once initialized, this variable will be available to the entire Python class.</p> <p>When we want to create an object of this class, we must also specify its input arguments. Therefore, to create an object from the above class, you must do the following:</p> <pre><code>user = Hive("albro", 100) user.say_hello()</code></pre> <p>If we consider the Hive as an object, can you tell what properties and methods can be defined for it?</p> <p>Each person in the Hive has a name, power, etc., and is able to do things like upvote or downvote for posts, comments, trades, etc!</p>
author | albro | ||||||
---|---|---|---|---|---|---|---|
permlink | python-calss-by-albro | ||||||
category | hive-169321 | ||||||
json_metadata | {"app":"peakd/2023.5.1","format":"markdown","tags":["development","programming","neoxiag","gosh","threads","chessbrothers","python","class","leofinance"],"users":["albro"],"image":["https://files.peakd.com/file/peakd-hive/albro/EoAYrr6iRKDDUPiPAcqBBzSSN3PAnVDb7zcrWu5Z71vN6zK1DPii3fyo31jSC6GeUwP.jpg","https://files.peakd.com/file/peakd-hive/albro/Eo2BJ5b2b7wfgnhLxu4HAnExhWrXoo7pZUm943h5ptzFTR5QEHguWFSuzTWUtGjehSL.png"]} | ||||||
created | 2023-05-21 11:02:06 | ||||||
last_update | 2023-05-21 11:02:06 | ||||||
depth | 0 | ||||||
children | 5 | ||||||
last_payout | 2023-05-28 11:02:06 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 1.600 HBD | ||||||
curator_payout_value | 1.588 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 8,536 | ||||||
author_reputation | 30,477,419,385,789 | ||||||
root_title | "Python Calss By albro" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 123,686,374 | ||||||
net_rshares | 7,026,888,208,588 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
team | 0 | 194,423,648,134 | 20% | ||
eric-boucher | 0 | 2,025,991,575 | 0.4% | ||
mammasitta | 0 | 2,408,093,735 | 0.4% | ||
good-karma | 0 | 56,255,839,458 | 5.85% | ||
roelandp | 0 | 37,622,229,531 | 5% | ||
cloh76 | 0 | 520,638,523 | 0.4% | ||
stea90 | 0 | 824,810,095 | 1% | ||
lordvader | 0 | 7,024,152,994 | 0.8% | ||
rmach | 0 | 1,733,364,675 | 5% | ||
lemouth | 0 | 270,366,745,186 | 10% | ||
lamouthe | 0 | 737,485,619 | 10% | ||
tfeldman | 0 | 730,472,841 | 0.4% | ||
seckorama | 0 | 10,093,085,681 | 3% | ||
metabs | 0 | 1,008,523,573 | 10% | ||
mcsvi | 0 | 96,534,379,566 | 50% | ||
lk666 | 0 | 79,321,210,629 | 100% | ||
justyy | 0 | 4,221,000,256 | 0.8% | ||
curie | 0 | 87,469,192,650 | 0.8% | ||
techslut | 0 | 23,676,505,697 | 4% | ||
steemstem | 0 | 581,408,092,924 | 10% | ||
edb | 0 | 1,229,455,618 | 1% | ||
esteemapp | 0 | 14,291,071,094 | 5.85% | ||
walterjay | 0 | 52,727,100,589 | 5% | ||
valth | 0 | 1,558,095,133 | 5% | ||
metroair | 0 | 3,393,741,641 | 0.8% | ||
dna-replication | 0 | 345,569,168 | 10% | ||
privex | 0 | 919,897,003 | 0.8% | ||
dhimmel | 0 | 55,489,956,009 | 2.5% | ||
oluwatobiloba | 0 | 470,034,149 | 10% | ||
detlev | 0 | 3,236,481,670 | 0.24% | ||
dimarss | 0 | 4,107,231,250 | 20% | ||
federacion45 | 0 | 1,208,929,259 | 0.4% | ||
gamersclassified | 0 | 602,527,103 | 0.4% | ||
iansart | 0 | 1,554,793,448 | 0.4% | ||
mobbs | 0 | 9,050,735,059 | 5% | ||
jerrybanfield | 0 | 2,600,232,411 | 0.8% | ||
rt395 | 0 | 1,664,715,203 | 1.5% | ||
bitrocker2020 | 0 | 1,518,370,076 | 0.12% | ||
sustainablyyours | 0 | 4,126,132,753 | 5% | ||
helo | 0 | 2,791,198,628 | 5% | ||
arunava | 0 | 3,611,994,786 | 0.32% | ||
juancar347 | 0 | 2,798,942,135 | 0.48% | ||
samminator | 0 | 6,512,456,672 | 5% | ||
drwom | 0 | 1,037,205,088 | 2.92% | ||
enjar | 0 | 5,418,635,091 | 0.72% | ||
lorenzor | 0 | 1,301,567,400 | 50% | ||
sam99 | 0 | 13,517,689,586 | 21% | ||
alexander.alexis | 0 | 5,899,986,028 | 10% | ||
jayna | 0 | 976,409,958 | 0.16% | ||
princessmewmew | 0 | 1,040,640,243 | 0.4% | ||
joeyarnoldvn | 0 | 482,991,771 | 1.47% | ||
ufv | 0 | 3,006,808,420 | 50% | ||
trenz | 0 | 505,444,425 | 0.34% | ||
empath | 0 | 537,946,334 | 0.4% | ||
flatman | 0 | 681,554,557 | 0.8% | ||
analealsuarez | 0 | 2,154,410,286 | 50% | ||
minnowbooster | 0 | 1,087,798,573,448 | 20% | ||
howo | 0 | 317,998,393,227 | 10% | ||
tsoldovieri | 0 | 1,008,719,488 | 5% | ||
droida | 0 | 105,781,407,774 | 100% | ||
steemwizards | 0 | 533,143,373 | 0.8% | ||
neumannsalva | 0 | 607,144,408 | 0.4% | ||
stayoutoftherz | 0 | 18,388,772,273 | 0.2% | ||
abigail-dantes | 0 | 3,630,891,813 | 10% | ||
iamphysical | 0 | 8,009,928,766 | 90% | ||
zyx066 | 0 | 748,709,976 | 0.24% | ||
revo | 0 | 1,509,740,441 | 0.8% | ||
azulear | 0 | 1,284,152,548 | 100% | ||
djlethalskillz | 0 | 1,228,040,772 | 5% | ||
psicoluigi | 0 | 791,969,507 | 50% | ||
rocky1 | 0 | 110,986,922,930 | 0.12% | ||
aidefr | 0 | 983,579,027 | 5% | ||
sorin.cristescu | 0 | 11,012,555,877 | 2.92% | ||
therealwolf | 0 | 5,400,495,869 | 0.4% | ||
meno | 0 | 3,504,519,318 | 0.4% | ||
esteem.app | 0 | 1,685,658,625 | 5.85% | ||
enzor | 0 | 567,319,371 | 10% | ||
dandays | 0 | 2,208,097,283 | 0.2% | ||
sunsea | 0 | 614,751,752 | 0.4% | ||
steveconnor | 0 | 617,778,795 | 0.4% | ||
nicole-st | 0 | 2,463,628,760 | 0.4% | ||
smartsteem | 0 | 19,362,982,992 | 0.4% | ||
aboutcoolscience | 0 | 2,454,237,413 | 10% | ||
sandracarrascal | 0 | 460,324,057 | 50% | ||
kenadis | 0 | 2,551,783,847 | 10% | ||
madridbg | 0 | 3,765,210,181 | 10% | ||
robotics101 | 0 | 2,859,976,912 | 10% | ||
punchline | 0 | 2,130,249,047 | 0.8% | ||
ahmadmangazap | 0 | 635,094,835 | 0.4% | ||
sco | 0 | 2,569,819,342 | 10% | ||
ennyta | 0 | 875,902,934 | 50% | ||
juecoree | 0 | 1,469,810,261 | 7% | ||
vjap55 | 0 | 7,574,205,397 | 100% | ||
ydavgonzalez | 0 | 3,962,141,602 | 10% | ||
intrepidphotos | 0 | 150,543,727,005 | 7.5% | ||
fineartnow | 0 | 488,143,283 | 0.4% | ||
oscarina | 0 | 719,248,016 | 10% | ||
fragmentarion | 0 | 2,617,192,705 | 10% | ||
dynamicrypto | 0 | 722,696,368 | 1% | ||
pab.ink | 0 | 6,484,891,863 | 5% | ||
cherryng | 0 | 582,832,043 | 1.17% | ||
miguelangel2801 | 0 | 763,635,242 | 50% | ||
emiliomoron | 0 | 2,020,116,939 | 5% | ||
geopolis | 0 | 620,217,735 | 10% | ||
ajfernandez | 0 | 779,919,318 | 100% | ||
robertbira | 0 | 1,040,493,863 | 2.5% | ||
alexdory | 0 | 1,457,420,523 | 10% | ||
irgendwo | 0 | 2,561,114,337 | 0.8% | ||
charitybot | 0 | 4,999,257,237 | 100% | ||
cyprianj | 0 | 114,443,709,711 | 100% | ||
melvin7 | 0 | 3,431,792,889 | 5% | ||
francostem | 0 | 1,338,012,206 | 10% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
croctopus | 0 | 1,394,601,809 | 100% | ||
satren | 0 | 13,066,741,808 | 10% | ||
bscrypto | 0 | 1,952,682,369 | 0.4% | ||
delpilar | 0 | 934,959,443 | 25% | ||
tomastonyperez | 0 | 16,444,823,756 | 50% | ||
elvigia | 0 | 10,572,592,843 | 50% | ||
sanderjansenart | 0 | 763,527,494 | 0.4% | ||
qberry | 0 | 489,146,064 | 0.4% | ||
braaiboy | 0 | 1,891,984,961 | 0.4% | ||
gadrian | 0 | 48,469,400,815 | 7.5% | ||
therising | 0 | 14,056,740,440 | 0.8% | ||
eniolw | 0 | 1,719,629,779 | 100% | ||
de-stem | 0 | 5,432,460,628 | 9.9% | ||
misterlangdon | 0 | 1,370,152,655 | 50% | ||
josedelacruz | 0 | 4,575,756,778 | 50% | ||
charitymemes | 0 | 530,694,162 | 100% | ||
erickyoussif | 0 | 573,401,852 | 100% | ||
meanbees | 0 | 32,800,571,754 | 100% | ||
deholt | 0 | 535,874,015 | 8.5% | ||
meins0815 | 0 | 5,555,587,894 | 23% | ||
diabonua | 0 | 717,438,684 | 0.4% | ||
crimo | 0 | 604,206,320 | 11.5% | ||
temitayo-pelumi | 0 | 830,229,079 | 10% | ||
andrick | 0 | 830,409,577 | 50% | ||
doctor-cog-diss | 0 | 7,568,161,337 | 10% | ||
acont | 0 | 10,105,160,297 | 50% | ||
uche-nna | 0 | 885,483,445 | 0.64% | ||
vietthuy | 0 | 808,408,962 | 50% | ||
cheese4ead | 0 | 611,495,375 | 0.4% | ||
mafufuma | 0 | 7,313,185,130 | 1% | ||
nattybongo | 0 | 4,153,897,972 | 10% | ||
talentclub | 0 | 823,031,146 | 0.48% | ||
bflanagin | 0 | 988,093,815 | 0.4% | ||
ubaldonet | 0 | 940,072,402 | 80% | ||
armandosodano | 0 | 1,685,523,905 | 0.4% | ||
reinaseq | 0 | 7,215,068,015 | 100% | ||
fran.frey | 0 | 4,047,129,100 | 50% | ||
thelittlebank | 0 | 2,957,010,023 | 0.4% | ||
pboulet | 0 | 14,450,367,819 | 8% | ||
stem-espanol | 0 | 16,198,937,269 | 100% | ||
aleestra | 0 | 12,101,677,493 | 80% | ||
brianoflondon | 0 | 7,181,140,985 | 0.2% | ||
douglasjames | 0 | 17,723,373,042 | 100% | ||
giulyfarci52 | 0 | 1,653,374,036 | 50% | ||
kristall97 | 0 | 23,394,768,480 | 100% | ||
steemcryptosicko | 0 | 1,418,646,675 | 0.16% | ||
stem.witness | 0 | 552,012,060 | 10% | ||
jacuzzi | 0 | 602,562,623 | 0.12% | ||
aqua.nano | 0 | 2,117,360,597 | 100% | ||
crowdwitness | 0 | 10,728,762,962 | 5% | ||
apokruphos | 0 | 9,245,770,248 | 3% | ||
steemean | 0 | 9,873,648,779 | 5% | ||
newton666 | 0 | 2,188,245,303 | 100% | ||
koychev22 | 0 | 3,442,795,266 | 5.85% | ||
photographercr | 0 | 2,669,584,676 | 1.17% | ||
larsito | 0 | 5,221,416,135 | 60% | ||
qwerrie | 0 | 527,020,006 | 0.07% | ||
tinyhousecryptos | 0 | 483,214,302 | 5% | ||
aicu | 0 | 3,274,361,565 | 0.8% | ||
walterprofe | 0 | 5,884,101,868 | 5% | ||
zeruxanime | 0 | 1,674,157,296 | 5% | ||
freebot | 0 | 162,858,682 | 100% | ||
lunapark | 0 | 309,751,831 | 100% | ||
quicktrade | 0 | 103,946,993 | 100% | ||
cresus | 0 | 486,013,367 | 100% | ||
hadaly | 0 | 164,546,225 | 100% | ||
goldfoot | 0 | 510,951,232 | 100% | ||
dotmatrix | 0 | 119,965,627 | 100% | ||
otomo | 0 | 101,855,917 | 100% | ||
botito | 0 | 717,494,770 | 100% | ||
weebo | 0 | 101,123,801 | 100% | ||
freysa | 0 | 1,158,641,892 | 100% | ||
tobor | 0 | 100,643,954 | 100% | ||
buffybot | 0 | 101,910,685 | 100% | ||
hypnobot | 0 | 102,691,903 | 100% | ||
psybot | 0 | 820,809,544 | 100% | ||
psychobot | 0 | 102,947,479 | 100% | ||
curabot | 0 | 101,297,635 | 100% | ||
elector | 0 | 2,118,251,914 | 100% | ||
chatbot | 0 | 102,907,193 | 100% | ||
chomps | 0 | 101,355,710 | 100% | ||
quicktrades | 0 | 6,867,109,549 | 100% | ||
misery | 0 | 158,246,717 | 100% | ||
capp | 0 | 9,134,048,834 | 50% | ||
steemstem-trig | 0 | 774,079,951 | 10% | ||
baltai | 0 | 858,693,193 | 0.4% | ||
ibt-survival | 0 | 35,275,363,890 | 10% | ||
darthsauron | 0 | 1,380,958,588 | 10% | ||
lightpaintershub | 0 | 653,597,236 | 1% | ||
davidlionfish | 0 | 4,662,682,301 | 33% | ||
iliyan90 | 0 | 20,208,215,153 | 5.85% | ||
elkakoycheva | 0 | 854,734,054 | 5.85% | ||
stemsocial | 0 | 79,777,134,731 | 10% | ||
ississ89 | 0 | 13,166,135,134 | 5.85% | ||
velinov86 | 0 | 3,031,622,253 | 2.92% | ||
holoferncro | 0 | 4,405,311,012 | 10% | ||
hiveonboard | 0 | 563,926,185 | 0.4% | ||
ecency | 0 | 2,022,165,455,342 | 5.85% | ||
roflie | 0 | 3,958,069,592 | 5.85% | ||
tiger85 | 0 | 949,648,841 | 5.85% | ||
emrysjobber | 0 | 1,552,914,580 | 50% | ||
noelyss | 0 | 3,289,356,311 | 5% | ||
honeybot | 0 | 1,007,283,779 | 100% | ||
ecency.stats | 0 | 2,074,413,527 | 5.85% | ||
gohive | 0 | 13,060,209,294 | 100% | ||
aabcent | 0 | 1,763,596,082 | 0.64% | ||
doudoer | 0 | 503,160,380 | 50% | ||
meritocracy | 0 | 8,942,093,771 | 0.08% | ||
eumorrell | 0 | 2,511,765,271 | 100% | ||
wizdombg | 0 | 540,894,203 | 5.85% | ||
dcrops | 0 | 6,570,312,179 | 0.4% | ||
peerfinance | 0 | 46,073,672,986 | 100% | ||
alicewonderyoga | 0 | 1,458,963,053 | 5.85% | ||
tbabachev | 0 | 1,378,601,565 | 5.85% | ||
mihaylov | 0 | 775,095,533 | 2.92% | ||
mmanolev33 | 0 | 599,892,735 | 5.85% | ||
vaipraonde | 0 | 3,895,248,750 | 50% | ||
arunbiju969 | 0 | 552,786,096 | 14% | ||
nfttunz | 0 | 1,160,906,063 | 0.08% | ||
hive-bulgaria | 0 | 1,649,547,578 | 5.85% | ||
projectmamabg | 0 | 4,983,178,147 | 10% | ||
snedeva | 0 | 1,846,163,019 | 5% | ||
podping | 0 | 1,041,500,041 | 0.2% | ||
dontcare89 | 0 | 2,048,804,884 | 1.17% | ||
t-nil | 0 | 645,957,309 | 10% | ||
pinkfloyd878 | 0 | 4,683,459,818 | 100% | ||
noempathy | 0 | 6,816,120,332 | 100% | ||
chessbrotherspro | 0 | 399,799,925,009 | 100% | ||
elephantium | 0 | 1,624,120,083 | 50% | ||
aries90 | 0 | 6,478,230,623 | 0.8% | ||
martinthemass | 0 | 579,598,671 | 100% | ||
migka | 0 | 4,051,932,319 | 90% | ||
theargirova | 0 | 1,450,719,797 | 5.85% | ||
didivelikova | 0 | 563,372,438 | 5.85% | ||
rosmarly | 0 | 8,573,732,492 | 100% | ||
adrianalara | 0 | 1,848,475,801 | 50% | ||
yixn | 0 | 7,251,493,972 | 0.4% | ||
kqaosphreak | 0 | 712,507,500 | 10% | ||
bluedevil0722 | 0 | 4,339,707,562 | 50% | ||
diyan3973lenkov | 0 | 2,422,394,623 | 5.85% | ||
sagarkothari88 | 0 | 62,854,700,323 | 5% | ||
oabreuf24 | 0 | 8,036,201,655 | 100% | ||
vasilev89 | 0 | 1,848,849,386 | 5.85% | ||
sam9999 | 0 | 689,067,555 | 5% | ||
iliev26 | 0 | 1,426,018,656 | 5.85% | ||
dondido | 0 | 3,531,214,071 | 0.8% | ||
ydaiznfts | 0 | 986,145,685 | 10% | ||
fernandoylet | 0 | 25,463,560,564 | 50% | ||
plicc8 | 0 | 905,198,028 | 10% | ||
mamaemigrante | 0 | 1,337,354,611 | 2.92% | ||
nazom | 0 | 1,233,087,245 | 50% | ||
raca75 | 0 | 687,358,854 | 50% | ||
dtake | 0 | 3,587,163,204 | 100% | ||
xecency | 0 | -43,063,785 | -5.85% | ||
sbtofficial | 0 | 515,853,192 | 0.4% | ||
philipp87 | 0 | 1,319,869,881 | 100% | ||
mestanophoto | 0 | 634,581,964 | 5.85% | ||
eunice9200 | 0 | 6,501,546,655 | 100% | ||
bgmoha | 0 | 4,240,861,874 | 100% | ||
apeofwallst | 0 | 693,218,671 | 50% | ||
the-grandmaster | 0 | 510,293,199 | 0.4% | ||
the-burn | 0 | 511,571,632 | 0.4% | ||
humbe | 0 | 1,276,593,129 | 2% | ||
reverio | 0 | 617,792,357 | 5% | ||
lifeof.abdul | 0 | 8,657,555,689 | 100% | ||
pars.team | 0 | 604,130,897 | 100% | ||
thehivemobileapp | 0 | 34,249,893,055 | 5% | ||
chainableit | 0 | 508,572,807 | 100% |
<h3>Congratulations!</h3><hr /><div class="pull-right"><img src="https://files.peakd.com/file/peakd-hive/chessbrotherspro/AJoJKGVARKHFCTHG7ee3GNkn5RMN7wixeJ52ipAgzDZ4QmeTcBdsk8hpi4pgj4e.png" alt="You have obtained a vote from CHESS BROTHERS PROJECT"/></div><div class="text-justify"><h3>✅ Good job. Your post has been appreciated and has received support from <a href="/@chessbrotherspro"><b>CHESS BROTHERS</b></a> ♔ 💪</h3><p><br>♟ We invite you to use our hashtag <b>#chessbrothers</b> and learn more <a href="/@chessbrotherspro/introducing-chess-brothers-project-the-most-innovative-community-combining-chess-fitness-and-more"><b>about us</b></a>.</p><p>♟♟ You can also reach us on our <a href="https://discord.gg/73sK9ZTGqJ" rel="noopener" title="This is going to take you to the Discord of Chess Brothers"><b>Discord server</b></a> and promote your posts there. </p><p>♟♟♟ Consider <a href="/@chessbrotherspro/teamwork-is-worthwhile-join-the-chess-brothers-healing-trail-supporting-the-work-being-done-and-earning-rewards"><b>joining our curation trail</b></a> so we work as a team and you get rewards automatically.</p><p>♞♟ Check out our <a href="/@chessbrotherspro"><b>@chessbrotherspro</b></a> account to learn about the curation process carried out daily by our team.</p><br>🥇 If you want to earn profits with your HP delegation and support our project, we invite you to join the <i>Master Investor</i> plan. <a href="/@chessbrotherspro/master-investor-plan-or-programa">Here you can learn how to do it.</a></div><div class="text-center"><p><br>Kindly</p><p><strong><em>The CHESS BROTHERS team</em></strong></p></div>
author | chessbrotherspro |
---|---|
permlink | re-python-calss-by-albro-20230522t031652z |
category | hive-169321 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2023-05-22 03:19:57 |
last_update | 2023-05-22 03:19:57 |
depth | 1 |
children | 0 |
last_payout | 2023-05-29 03:19:57 |
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 | 1,628 |
author_reputation | 77,951,494,853,781 |
root_title | "Python Calss By albro" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 123,719,259 |
net_rshares | 0 |
**Yay!** 🤗<br>Your content has been **boosted with Ecency Points**, by @albro. <br>Use Ecency daily to boost your growth on platform! <br><br><b>Support Ecency</b><br>[Vote for new Proposal](https://hivesigner.com/sign/update-proposal-votes?proposal_ids=%5B245%5D&approve=true)<br>[Delegate HP and earn more](https://ecency.com/hive-125125/@ecency/daily-100-curation-rewards)
author | ecency |
---|---|
permlink | re-2023521t144430403z |
category | hive-169321 |
json_metadata | {"tags":["ecency"],"app":"ecency/3.0.20-welcome","format":"markdown+html"} |
created | 2023-05-21 14:44:30 |
last_update | 2023-05-21 14:44:30 |
depth | 1 |
children | 0 |
last_payout | 2023-05-28 14:44: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 | 375 |
author_reputation | 618,484,007,957,120 |
root_title | "Python Calss By albro" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 123,693,654 |
net_rshares | 0 |
Congratulations @albro! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s) <table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@albro/upvoted.png?202305222021"></td><td>You received more than 7000 upvotes.<br>Your next target is to reach 8000 upvotes.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@albro) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>
author | hivebuzz |
---|---|
permlink | notify-albro-20230522t205200 |
category | hive-169321 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2023-05-22 20:52:00 |
last_update | 2023-05-22 20:52:00 |
depth | 1 |
children | 0 |
last_payout | 2023-05-29 20:52:00 |
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 | 618 |
author_reputation | 369,326,155,738,728 |
root_title | "Python Calss By albro" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 123,739,218 |
net_rshares | 0 |
https://leofinance.io/threads/view/albro/re-leothreads-349ovys7n <sub> The rewards earned on this comment will go directly to the people ( albro ) sharing the post on LeoThreads,LikeTu,dBuzz.</sub>
author | poshthreads | ||||||
---|---|---|---|---|---|---|---|
permlink | re-albro-python-calss-by-albro-9120 | ||||||
category | hive-169321 | ||||||
json_metadata | "{"app":"Poshtoken 0.0.2","payoutToUser":["albro"]}" | ||||||
created | 2023-05-21 11:22:30 | ||||||
last_update | 2023-05-21 11:22:30 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2023-05-28 11:22:30 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.026 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 198 | ||||||
author_reputation | 415,471,585,053,248 | ||||||
root_title | "Python Calss By albro" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 0 | ||||||
post_id | 123,686,726 | ||||||
net_rshares | 116,133,699,490 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
poshtoken | 0 | 114,518,012,118 | 1% | ||
nomnomnomnom | 0 | 1,615,687,372 | 1% |
<div class='text-justify'> <div class='pull-left'> <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div> Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us! Please consider delegating to the @stemsocial account (85% of the curation rewards are returned). You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support. <br /> <br /> </div>
author | stemsocial |
---|---|
permlink | re-albro-python-calss-by-albro-20230522t185138357z |
category | hive-169321 |
json_metadata | {"app":"STEMsocial"} |
created | 2023-05-22 18:51:39 |
last_update | 2023-05-22 18:51:39 |
depth | 1 |
children | 0 |
last_payout | 2023-05-29 18:51:39 |
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 | 565 |
author_reputation | 22,918,176,844,004 |
root_title | "Python Calss By albro" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 123,736,430 |
net_rshares | 0 |