Skip to content

Instantly share code, notes, and snippets.

View pinfort's full-sized avatar
🏢
Shachiku

pinfort pinfort

🏢
Shachiku
View GitHub Profile
@pinfort
pinfort / tweet.py
Last active November 3, 2017 05:51
import os
import tweepy
class Tweet(object):
"""
use tweepy
"""
def __init__(self):
consumer_key = os.environ.get("TWITTER_CONSUMER_KEY")
consumer_secret = os.environ.get("TWITTER_CONSUMER_SECRET")
@pinfort
pinfort / fileMove.py
Created September 25, 2017 08:37
ファイル移動
# -*- coding: utf-8 -*-
import os
import shutil
import sys
path = '/mnt/hdd1/nas/picture/smartphone/rei/20170909/pictures/Twitter'
files = os.listdir(path)
# ファイル移動
@pinfort
pinfort / createNewMailUser.py
Created September 9, 2017 05:11
メールユーザー追加用スクリプト python2
# -*- coding: utf-8 -*-
import os
import random
username = raw_input("user name? >>")
cmd = "useradd -s /sbin/nologin " + username
os.system(cmd)
length = random.randint(8, 12)
chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890%/'
newpass = ""
for i in range(1, length):