This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import bpy | |
# _______ ______ __ __ _______ _______ _______ __ __ ______ | |
# | _ || _ | | |_| || _ || || || | | || _ | | |
# | |_| || | || | || |_| ||_ _|| ___|| | | || | || | |
# | || |_||_ | || | | | | |___ | |_| || |_||_ | |
# | || __ || || | | | | ___|| || __ | | |
# | _ || | | || ||_|| || _ | | | | |___ | || | | | | |
# |__| |__||___| |_||_| |_||__| |__| |___| |_______||_______||___| |_| | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Author: github.com/ponyschreck | |
# Latest Update: 25.4.2018 | |
import urllib.request | |
class Adpy(): | |
""" | |
A little fancy Python-Class to generate an AdFly-Link | |
""" | |
def __init__(self, public_key: str, user_id: str): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Latest Update: 25.4.2018 | |
import urllib.request | |
import json | |
class LRAW: | |
""" | |
L-RAW - Little Reddit Api Wrapper | |
:author: github.com/ponyschreck |