Python Reading Data from a Spreadsheet
# !/user/bin/env python # – Tabulates population and number of census tracts for each country import openpyxl,… 続きを読む »
# !/user/bin/env python # – Tabulates population and number of census tracts for each country import openpyxl,… 続きを読む »
# !/user/bin/env python # – opens several Google search results. import requests, sys, webbrowser, bs4 def mai… 続きを読む »
すごい、ニッチなやつ。 Kindleでweb小説、たとえば東方創想話などを読みたいときwebからダウンロードして、テキストで保存する。 そしてファイルの中身を連結するソフトを使って、一つのテキストファイルにする。 このと… 続きを読む »
最近Pythonが楽しいです。 本のコードを写したりしているだけですが、ものを作っているのは楽しいし熱中できます。 浅瀬でバシャバシャしているだけなのは百も承知! 一歩一歩できることを増やしていきたい。
# !/user/bin/env python # -Launches a map in the browser using an address from the # command line or clipboard… 続きを読む »
指定したディレクトリをバックアップするスクリプト # !/user/bin/env python # – Copeies an entire folder and its contents into # a Zip fi… 続きを読む »
アメリカ式の日付表記をヨーロッパ式の日付表記に変えるスクリプト # !/user/bin/env python # – Renames filenames with American MM-DD-YYYY date fo… 続きを読む »
import os のメモ # !/user/bin/env python import os def main(): a = os.path.join(‘use’, ‘spam’, ‘bin’) # パス… 続きを読む »
クリップボードの値をキーワードを設定して保存するスクリプト # !/user/bin/env python # mcb.pyw – save and loads pieces of text to the … 続きを読む »
アメリカの州の首都を答えるテストを作るプログラム。 !/user/bin/env python # – Creates quizzes with questions and answers in # random ord… 続きを読む »