2019-05-01から1ヶ月間の記事一覧

買った

できる仕事がはかどるPython自動処理全部入り。 [ 森本哲也 ]ジャンル: 本・雑誌・コミック > PC・システム開発 > プログラミング > その他ショップ: 楽天ブックス価格: 2,484円 とりあえず基本的なことだけ 日経ソフトウエア 2019年 07月号 [雑誌]ジャンル:…

NEC LaVie LL750/MをWindows10の1903にアップデートするとWi-Fiがつながらない

ark.intel.com www.ikt-s.com ch.nicovideo.jp デバイスマネージャーを見ると!マーク ドライバをアンインストールしてから認識させるとつながるが再起動するとまたつながらない 有線でインターネット接続しWindowsUpdateでもドライバ更新されない。 intelの…

MediaCreationTool1903.exeが0x80042405 0xA001Bエラーで止まる

MediaCreationTool1903.exe でUSBのインストールディスクを作成すると0x80042405 0xA001Bエラーで止まる ISOは作成可能 32GBのUSBメモリはエラー 16GBのUSBメモリはOK 16GBのUSBのイメージを取り込んで32GBに書き込んでとりあえず動いています。 www.microso…

スプレッドシートで宇連ダムの貯水率をスクレイピング

宇連ダムの直近3日間の貯水率 グラフ https://docs.google.com/spreadsheets/d/e/2PACX-1vRP5h5tfr7pS8WQFhjeR9FXA3dN-sBgLnn_ieNJ3xDuuCxxts5FykwLU-5KXB0uO3hbpjXEcPoC2_Au/pubchart?oid=1171154367&format=interactive スプレッドシート docs.google.com

宇連ダムをスクレイピング

twitter.com 貯水率がないのですが計算しているのかな? [http://i.river.go.jp/-p01-/p/ktm1801060/?mtm=0&swd=&prf=2301&twn=2301221&rvr=&den=1920300700002] http://163.49.30.82/cgi-bin/DspDamData.exe?ID=1368050651020&KIND=3&PAGE=0 利水容量28420…

JFLゴール数ランキング(GoogleDrive)

imabari.hateblo.jp import csv import time from urllib.parse import urljoin import gspread import pandas as pd import requests from bs4 import BeautifulSoup from oauth2client.service_account import ServiceAccountCredentials from tqdm import…

JFLランキング作成(GoogleDrive)

pip3 install pandas pip3 install beautifulsoup4 pip3 install html5lib pip3 install lxml pip3 install gspread pip3 install oauth2clinet pip3 install tqdm # -*- coding: utf-8 -*- import gspread import pandas as pd import requests from bs4 im…

Hyper-Vのubuntu18.04.2と19.04が動かない

www.mail-archive.com Ubuntu 19.04 ”error: too early for operation, device not yet seeded or device model not acknwoledged” ubuntu 18.04.2 snapで止まる

Pandasで愛媛の河川の水位を取得

2021/04/18現在利用できません github.com import datetime import time import pandas as pd from tqdm import tqdm # 時間 def timeconv(x): H, M = map(int, x.split(":")) return datetime.timedelta(hours=H, minutes=M) # 設定 # 東予東部 grp, tpg = …

Pandasで愛媛のダム情報を取得

2021/04/18現在利用できません github.com import datetime import time import pandas as pd from tqdm import tqdm # 時間 def timeconv(x): H, M = map(int, x.split(":")) return datetime.timedelta(hours=H, minutes=M) # GRP = USR004:玉川ダム、USR0…