Skip to content

Instantly share code, notes, and snippets.

View okusama27's full-sized avatar
🏠
Working from home

Kameko Ohmura okusama27

🏠
Working from home
View GitHub Profile

広がるPython(Python Big Bang)

Kameko Ohmura
import pytest
class SampleMethod():
def method_1(self):
print('method_1')
return 'method_1'
import unittest
from unittest.mock import patch
from sample_method import SampleMethod
class TestSampleMethod(unittest.TestCase):
def setUp(self):
print('setUp')
self.sample = SampleMethod()
import unittest
from unittest.mock import patch
from sample_method import SampleMethod
class TestSampleMethod(unittest.TestCase):
def setUp(self):
print('setUp')
self.sample = SampleMethod()
class SampleMethod():
def method_1(self):
print('method_1')
return 'method_1'
import unittest
from unittest.mock import MagicMock
class SampleMethod():
def method_1(self):
print('method_1')
return 'method_1'
import unittest
class SampleMethod():
def method_1(self):
print('method_1')
return 'method_1'
def method_2(self):
@okusama27
okusama27 / mytoggl.plist
Created December 21, 2017 09:38
~/Library/LaunchAgents/mytoggl.plistに設置
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>mytoggl</string>
<key>ProgramArguments</key>
<array>
<string>sh</string>
<string>ワークディレクトリパス/toggl.sh</string>
"""Togglの作業をslackに書き込む."""
import requests
import json
# Slack hooks
SLACK_HOOKS_URL = '[slack hook url]'
TOGGL_API_TOKEN = '[toggle token]'
file_name = './toggl_history.txt'
cd /Users/username/toggl
. env/bin/activate
python3 notification_toggl_task.py