This commit is contained in:
parent
f780447eb1
commit
518b9534ba
@ -3,7 +3,7 @@ from pathlib import Path
|
||||
import functools
|
||||
import sys
|
||||
|
||||
printr = functools.partial(print,file=sys.stderr)
|
||||
printr = functools.partial(print, file=sys.stderr)
|
||||
|
||||
per_image_width = 480
|
||||
per_image_height = 320
|
||||
@ -11,8 +11,8 @@ cols = 2
|
||||
|
||||
images = list(Path("./export/").glob("*.png"))
|
||||
image_count = len(images)
|
||||
total_image_height = (image_count / cols * per_image_height)
|
||||
if(image_count / cols * per_image_height > total_image_height):
|
||||
total_image_height = image_count / cols * per_image_height
|
||||
if image_count / cols * per_image_height > total_image_height:
|
||||
total_image_height += per_image_height
|
||||
total_image_width = image_count / cols * per_image_width
|
||||
|
||||
@ -21,9 +21,13 @@ resized_images = []
|
||||
for path in images:
|
||||
image = Image.open(path)
|
||||
image = image.resize((per_image_width, per_image_height))
|
||||
resized_images.append((path,image))
|
||||
resized_images.append((path, image))
|
||||
|
||||
new_image = Image.new("RGB",(per_image_width * cols, int(per_image_height * image_count / cols)), (250,250,250))
|
||||
new_image = Image.new(
|
||||
"RGB",
|
||||
(per_image_width * cols, int(per_image_height * image_count / cols)),
|
||||
(250, 250, 250),
|
||||
)
|
||||
|
||||
current_col = 0
|
||||
current_row = 0
|
||||
@ -32,8 +36,8 @@ for path, image in resized_images:
|
||||
printr("Merging image {}".format(path))
|
||||
current_row = int(current_image_number / cols)
|
||||
left = int((current_col) * per_image_width)
|
||||
top = int(per_image_height * current_row )
|
||||
new_image.paste(image,(left,top))
|
||||
top = int(per_image_height * current_row)
|
||||
new_image.paste(image, (left, top))
|
||||
new_image.save("export/1_graphs_compliation.png")
|
||||
|
||||
current_col += 1
|
||||
|
@ -2,7 +2,8 @@ from drstats import db
|
||||
import functools
|
||||
import sys
|
||||
|
||||
printr = functools.partial(print,file=sys.stderr)
|
||||
printr = functools.partial(print, file=sys.stderr)
|
||||
|
||||
|
||||
def dump():
|
||||
statistics_text = [
|
||||
@ -13,23 +14,33 @@ def dump():
|
||||
printr(statistics_text)
|
||||
for contribution in db.get_contributions():
|
||||
statistics_text.append(
|
||||
f"Statistics: User(ranter) {contribution['username']} made {contribution['contributions']} contributions to devRant(developer community) what means {contribution['username']} owns {contribution['ownership']} percent of contributions on devRant(developer community). The avarage post length of {contribution['username']} is {contribution['post_length_average']} and total post length is {contribution['post_length_total']}. {contribution['username']} owns {contribution['ownership_content']} percent of content on devRant(developer community)."
|
||||
f"Statistics: User(ranter) {contribution['username']} made {contribution['contributions']} contributions to devRant(developer community) what means {contribution['username']} owns {contribution['ownership']} percent of contributions on devRant(developer community). The avarage post length of {contribution['username']} is {contribution['post_length_average']} and total post length is {contribution['post_length_total']}. {contribution['username']} owns {contribution['ownership_content']} percent of content on devRant(developer community)."
|
||||
)
|
||||
printr(statistics_text[-1])
|
||||
print("\n".join(statistics_text))
|
||||
all_content = ''
|
||||
all_content = ""
|
||||
for user in db.get_users():
|
||||
text = db.get_all_rants_of_user(user).replace("\n"," ").replace(" "," ").strip()
|
||||
text = (
|
||||
db.get_all_rants_of_user(user).replace("\n", " ").replace(" ", " ").strip()
|
||||
)
|
||||
total_text = ""
|
||||
if text:
|
||||
total_text += text
|
||||
print("```",f"All rants written by user(ranter) `{user}` on devRant(developer community)```.")
|
||||
print(text,"```")
|
||||
text = db.get_all_posts_of_user(user).replace("\n", " ").replace(" "," ").strip()
|
||||
print(
|
||||
"```",
|
||||
f"All rants written by user(ranter) `{user}` on devRant(developer community)```.",
|
||||
)
|
||||
print(text, "```")
|
||||
text = (
|
||||
db.get_all_posts_of_user(user).replace("\n", " ").replace(" ", " ").strip()
|
||||
)
|
||||
if text:
|
||||
total_text += text
|
||||
print("```",f"All posts written by user(ranter) `{user}` on devRant(developer community): ```.")
|
||||
print(text,"```")
|
||||
print(
|
||||
"```",
|
||||
f"All posts written by user(ranter) `{user}` on devRant(developer community): ```.",
|
||||
)
|
||||
print(text, "```")
|
||||
all_content += total_text
|
||||
|
||||
for user in db.get_users():
|
||||
@ -37,6 +48,3 @@ def dump():
|
||||
line = f"{user} is {all_content.count(mention_text)} times mentioned on devRant(developer comminity)."
|
||||
printr(line)
|
||||
print(line)
|
||||
|
||||
|
||||
|
||||
|
@ -33,7 +33,7 @@ class Devrant:
|
||||
url = self.API + "devrant/search"
|
||||
params = {"app": 3, "term": term}
|
||||
|
||||
r = requests.get(url, params,timeout=5)
|
||||
r = requests.get(url, params, timeout=5)
|
||||
obj = json.loads(r.text)
|
||||
return obj
|
||||
|
||||
@ -52,7 +52,7 @@ class Devrant:
|
||||
params = {
|
||||
"app": 3,
|
||||
}
|
||||
r = requests.get(url, params,timeout=5)
|
||||
r = requests.get(url, params, timeout=5)
|
||||
obj = json.loads(r.text)
|
||||
return obj
|
||||
|
||||
@ -65,7 +65,7 @@ class Devrant:
|
||||
url = self.API + "devrant/rants"
|
||||
params = {"app": 3, "sort": sort, "limit": limit, "skip": skip}
|
||||
|
||||
r = requests.get(url, params,timeout=5)
|
||||
r = requests.get(url, params, timeout=5)
|
||||
obj = json.loads(r.text)
|
||||
return obj
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
import time
|
||||
import sys
|
||||
|
||||
|
||||
class Duration:
|
||||
|
||||
def __init__(self, description):
|
||||
@ -13,5 +14,5 @@ class Duration:
|
||||
def __exit__(self, exc_type, exc_val, exc_tb):
|
||||
self.end = time.time()
|
||||
self.duration = self.end - self.start
|
||||
print(self.description,end=" ",file=sys.stderr)
|
||||
print("took {} seconds.".format(self.duration),file=sys.stderr)
|
||||
print(self.description, end=" ", file=sys.stderr)
|
||||
print("took {} seconds.".format(self.duration), file=sys.stderr)
|
||||
|
@ -1,4 +1,4 @@
|
||||
from drstats.db import get_db, Db,get_users
|
||||
from drstats.db import get_db, Db, get_users
|
||||
from drstats import sync
|
||||
import asyncio
|
||||
from drstats.duration import Duration
|
||||
@ -67,7 +67,7 @@ async def rant_stats_per_day():
|
||||
|
||||
|
||||
async def comment_stats_per_day():
|
||||
with Duration("Comment stats per day"):
|
||||
with Duration("Comment stats per day"):
|
||||
|
||||
plt = figure_inc()
|
||||
async with Db() as db:
|
||||
@ -188,7 +188,9 @@ async def score_most_ignored_last_7_days():
|
||||
x = []
|
||||
y = []
|
||||
|
||||
for record in db.query("SELECT * FROM score_ignored_most_last_7_days LIMIT 15"):
|
||||
for record in db.query(
|
||||
"SELECT * FROM score_ignored_most_last_7_days LIMIT 15"
|
||||
):
|
||||
x.append(record["username"])
|
||||
y.append(record["userscore"])
|
||||
|
||||
@ -199,7 +201,9 @@ async def score_most_ignored_last_7_days():
|
||||
plt.ylabel("Times ignored")
|
||||
plt.title("Most ignored based on score regarding last 7 days")
|
||||
plt.legend()
|
||||
plt.savefig(f"export/score_ignored_most_last_7_days_{get_date_range_str()}.png")
|
||||
plt.savefig(
|
||||
f"export/score_ignored_most_last_7_days_{get_date_range_str()}.png"
|
||||
)
|
||||
plt_reset()
|
||||
# plt.show()
|
||||
|
||||
@ -226,6 +230,7 @@ async def score_last_7_days():
|
||||
plt_reset()
|
||||
# plt.show()
|
||||
|
||||
|
||||
async def user_score_per_day(username):
|
||||
with Duration("User {} score per day".format(username)):
|
||||
plt = figure_inc()
|
||||
@ -239,28 +244,36 @@ async def user_score_per_day(username):
|
||||
x = []
|
||||
y = []
|
||||
|
||||
for record in db.query("SELECT * FROM user_stats WHERE username = '{}'".format(username)):
|
||||
for record in db.query(
|
||||
"SELECT * FROM user_stats WHERE username = '{}'".format(username)
|
||||
):
|
||||
x.append(record["date"])
|
||||
y.append(record["post_count"])
|
||||
plt.plot(x, y, label="Posts")
|
||||
|
||||
x = []
|
||||
y = []
|
||||
for record in db.query("SELECT * FROM user_stats WHERE username = '{}'".format(username)):
|
||||
for record in db.query(
|
||||
"SELECT * FROM user_stats WHERE username = '{}'".format(username)
|
||||
):
|
||||
x.append(record["date"])
|
||||
y.append(record["ignore_count"])
|
||||
plt.plot(x, y, label="Times ignored")
|
||||
|
||||
x = []
|
||||
y = []
|
||||
for record in db.query("SELECT * FROM user_stats WHERE username = '{}'".format(username)):
|
||||
for record in db.query(
|
||||
"SELECT * FROM user_stats WHERE username = '{}'".format(username)
|
||||
):
|
||||
x.append(record["date"])
|
||||
y.append(record["upvote_times"])
|
||||
plt.plot(x, y, label="Times upvoted")
|
||||
|
||||
x = []
|
||||
y = []
|
||||
for record in db.query("SELECT * FROM user_stats WHERE username = '{}'".format(username)):
|
||||
for record in db.query(
|
||||
"SELECT * FROM user_stats WHERE username = '{}'".format(username)
|
||||
):
|
||||
x.append(record["date"])
|
||||
y.append(record["upvote_total"])
|
||||
plt.plot(x, y, label="Sum upvotes")
|
||||
@ -284,7 +297,3 @@ def rant_stats_all():
|
||||
asyncio.run(score_last_7_days())
|
||||
for user in get_users():
|
||||
asyncio.run(user_score_per_day(user))
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -4,6 +4,7 @@ import json
|
||||
import asyncio
|
||||
from pprint import pprint as pp
|
||||
import requests
|
||||
|
||||
dr = Devrant()
|
||||
db = get_db()
|
||||
|
||||
@ -38,6 +39,7 @@ async def get_recent_rants(start_from=1, page_size=10):
|
||||
yield rant
|
||||
start_from += page_size
|
||||
|
||||
|
||||
async def sync_rants():
|
||||
count = 0
|
||||
start_from = 0
|
||||
@ -52,7 +54,8 @@ async def sync_rants():
|
||||
db["rants"].upsert(rant, ["id"])
|
||||
print(f"Upserted {count} rant(s).")
|
||||
except:
|
||||
print("Rate limit of server exceeded. That's normal.s")
|
||||
print("Rate limit of server exceeded. That's normal.s")
|
||||
|
||||
|
||||
async def sync_comments():
|
||||
comments_synced = 0
|
||||
|
Loading…
Reference in New Issue
Block a user