Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am linkfy on github.
  • I am linkfy (https://keybase.io/linkfy) on keybase.
  • I have a public key ASDho5rsUDTAl7kefOvLQ9EXrkWxvpKJ-uyGXzYTeBcsEgo

To claim this, I am signing this object:

@linkfy
linkfy / TiktokData.py
Created September 6, 2021 14:06
Tiktok Analytics Json with Python
import requests
import json
from bs4 import BeautifulSoup
userAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
session = requests.Session()
baseUrl = "https://www.tiktok.com/"
profile = "linkfydev"
@linkfy
linkfy / PythonInterfaceSmart.py
Created December 30, 2021 16:55
Python Interface Example | Linkfy
import pygame
if __name__ == "__main__":
#Initialize
pygame.init()
screen = pygame.display.set_mode((200, 200))
pygame.display.set_caption('Basic Pygame')