Guest User

Untitled

a guest
Aug 4th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.54 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. """
  3. Created on Tue Aug  4 19:49:59 2020
  4.  
  5. @author: Anon
  6. """
  7.  
  8. class config:
  9.  
  10.     #host addess
  11.     Host = 'https://8kun.top/'
  12.     #Folder with media
  13.     FilesOutputFolder = "C:\Tmp\ChanArchiveOutput"
  14.     #Used for CSV file creation, and hash index creation
  15.     TmpOutputFolder = "C:\Tmp"
  16.    
  17.     headers = {
  18.         'app_version': '0.1.0',
  19.         'platform': 'Windows',
  20.         'content-type': 'application/json',
  21.         'User-agent': 'Vichan API/8kun api',}
  22.    
  23.     if __name__ == '__main__':
  24.         pass
Add Comment
Please, Sign In to add comment