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 os import environ | |
from tweepy import OAuth1UserHandler, API, Cursor, errors | |
auth = OAuth1UserHandler( | |
consumer_key=environ["CLIENT_ID"], | |
consumer_secret=environ["CLIENT_SECRET"], | |
access_token=environ["ACCESS_TOKEN"], | |
access_token_secret=environ["ACCESS_TOKEN_SECRET"] | |
) |
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
------------------------------------------------------- | |
Port=1 Lid=0x0002 GUID=0x0010e00001774651 Port Name=tomokazu-ubuntu-server/U1/P1 | |
------------------------------------------------------- | |
Vendor: FS | |
OUI: 0x2c9 | |
PN: QSFP56-AO02 | |
SN: C2211061633-1 | |
Rev: A3 | |
Length: 2 m | |
Type: Copper cable- unequalized |
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
hca_id: mlx4_0 | |
transport: InfiniBand (0) | |
fw_ver: 2.42.5000 | |
node_guid: 0010:e000:0177:4650 | |
sys_image_guid: 0010:e000:0177:4653 | |
vendor_id: 0x02c9 | |
vendor_part_id: 4099 | |
hw_ver: 0x1 | |
board_id: MT_1090120019 | |
phys_port_cnt: 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
[[source]] | |
url = "https://pypi.org/simple" | |
verify_ssl = true | |
name = "pypi" | |
[packages] | |
aiohttp = "*" | |
[dev-packages] | |
[requires] |
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 re | |
from glob import glob | |
from os import path, environ | |
from pprint import pprint | |
from mutagen.mp4 import MP4 | |
from googleapiclient.discovery import build | |
import requests | |
from bs4 import BeautifulSoup | |
MUSIC_ROOT = r"C:\Users\tomokazu\Music\iTunes\iTunes Media\Music" |
OlderNewer