This file contains 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 os | |
import sqlite3 | |
import sys | |
import threading | |
import urllib2 | |
BASEURL = "http://storage.game.starlight-stage.jp" | |
def write_file(dest, data): | |
with open(dest, "w") as fd: |
This file contains 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 lz4 | |
import re | |
import StringIO | |
import struct | |
import urllib2 | |
BASEURL = "http://storage.game.starlight-stage.jp" | |
def fetch_res_ver(): | |
response = urllib2.urlopen("https://starlight.kirara.ca/") |
This file contains 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
/* | |
非公式 Twitter アカウント生成 API | |
Twitter も廃れ始め、そろそろ潮時だと考えたため公開します。 | |
某氏が公開した API 1.0 の account/generate のほか、独自に発見した API 1.1 の account/create と | |
認証不要の mobile_client_api/signup もまとめてあります。 | |
何かの役に立つかもしれません。 | |
mobile_client_api/signup については最近テストしていないので、使えないかもしれません。 | |
その場合は情報のみということで。 |
NewerOlder