Skip to content

Instantly share code, notes, and snippets.

View dpriskorn's full-sized avatar
💭
Looking for work as a developer 🚀

Nizo Priskorn dpriskorn

💭
Looking for work as a developer 🚀
View GitHub Profile
@dpriskorn
dpriskorn / getSAOB.py
Created December 27, 2020 07:49 — forked from salgo60/getSAOB.py
import requests
file = open("saob2020.csv", "r")
def createQSurl(SAOBid):
# https: // quickstatements.toolforge.org / # /v1=L349183%7CP8478%7C%22A_0787-0228.n0A3%22
urlbase = "https://quickstatements.toolforge.org/#/v1=LEXEME"
urlP8478 = f"%7CP8478%7C%22{SAOBid.strip()}%22"
return urlbase + urlP8478
@dpriskorn
dpriskorn / progress.py
Created December 19, 2020 17:45 — forked from Minotorious/progress.py
Python command line progress bar with colour
# The MIT License (MIT)
# Copyright (c) 2016 Vladimir Ignatev
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the Software
# is furnished to do so, subject to the following conditions:
#