Test.
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 records | |
| db = records.Database('mysql://root:a6478a14@172.16.144.157/bank') | |
| # Create User table | |
| db.query("""CREATE TABLE `user` ( | |
| `id` INT NOT NULL AUTO_INCREMENT, | |
| `first_name` VARCHAR(100) NOT NULL, | |
| `middle_name` VARCHAR(100) NOT NULL, |
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 records | |
| db = records.Database('mysql://root:a6478a14@172.16.144.157/bank') | |
| print('Welcome to the Softbank registration system!') | |
| print('Please tell us the following information...') | |
| first_name = raw_input('First name: ') | |
| middle_name = raw_input('Middle name: ') | |
| last_name = raw_input('Last name: ') | |
| username = first_name.lower()[0] + last_name.lower() |
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 records | |
| import datetime | |
| db = records.Database('mysql://root:a6478a14@172.16.144.157/bank') | |
| print('Welcome to Softbank. Please enter your username and password...') | |
| username = raw_input('Username: ') | |
| password = raw_input('Password: ') | |
| # This SQL library does not immediately run the query and store the results until we tell it to. |
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 ui | |
| import appex | |
| import requests | |
| import json | |
| if appex.is_running_extension(): | |
| url = appex.get_url() | |
| else: | |
| url = 'https://dynasty-scans.com/chapters/together_with_hecaa_chan_2' |
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
| ^b:: ; CTRL+B hotkey | |
| MouseMove, 85, 851 | |
| Click | |
| Send, mid{enter} | |
| MouseMove, 952, 131 | |
| Click | |
| Send, Lux |
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 requests | |
| import random | |
| import string | |
| session = requests.session() | |
| if __name__ == "__main__": | |
| client_id = input("Client ID: ") |
OlderNewer