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
| __author__ = 'simon' | |
| # coding=gbk | |
| def export_csv(repository,target_csv): | |
| import requests | |
| resp = requests.get(url=repository) | |
| #print resp.text | |
| data = resp.json() | |
| #print data |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.IO; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using System.Drawing; | |
| using System.Drawing.Imaging; | |
| using System.Drawing.Drawing2D; | |
| using System.Drawing.Text; |
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 time | |
| from selenium import webdriver | |
| from selenium.webdriver.common.keys import Keys | |
| driver= webdriver.Firefox() | |
| #driver= webdriver.Chrome("E:\QA\Resource\WEBDRIVER\chromedriverserver\chromedriver.exe") | |
| driver.get("http://mail.google.com") |
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
| from email.mime.text import MIMEText | |
| from smtplib import SMTP_SSL as SMTP #For TLS please use SMTP_SSL instead, such as QQ mail | |
| #import smtplib | |
| _user = "[email protected]" | |
| _pwd = "xxxx" | |
| _to = "[email protected]" | |
| msg = MIMEText("Content") |
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
| var page = require('webpage').create(); | |
| page.viewportSize = { width: 500, height: 300 }; | |
| page.open('http://github.com/', function() { | |
| //page.render('github.png'); | |
| page.render('github.pdf');//support PDF render also | |
| phantom.exit(); | |
| }); |
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 pandas | |
| import numpy as np | |
| df = pandas.DataFrame(np.random.randn(5,3),columns=['A','B','C']) | |
| df | |
| df['A'].argmax() | |
| df['A'].max() |