Help with SQL commands to interact with a MySQL database
- Mac /usr/local/mysql/bin
- Windows /Program Files/MySQL/MySQL version/bin
- Xampp /xampp/mysql/bin
| # Written by Mutlu Polatcan | |
| # 09.07.2020 | |
| # ============================================= | |
| import requests | |
| import re | |
| from datetime import datetime, timedelta | |
| class ShellOilTurkeyScraper: | |
| URL = "https://www.turkiyeshell.com/pompatest/History.aspx" |
| ''' | |
| Simple LocustIO testing script with basic auth | |
| ''' | |
| import random, gzip, StringIO, threading, urllib2, re, getpass | |
| from locust import HttpLocust, TaskSet, task, web | |
| from random import randint | |
| from urlparse import urlparse | |
| #resource.setrlimit(resource.RLIMIT_NOFILE, (999999, 999999)) | |
| USER_AGENTS = [ |
| -- Turkce isimler sozlugu twitter : http://twitter.com/baskindev | |
| CREATE TABLE `isimler` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `isimler` varchar(255) DEFAULT NULL, | |
| `cinsiyet` varchar(255) DEFAULT NULL COMMENT 'erkek : E , kadın : K , uniseks : U', | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=InnoDB; | |
| -- ---------------------------- |