タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

Python-snippetsに関するhamastaのブックマーク (3)

  • Python Tips - Python

    Python Tips Top / Programming / Python / Python Tips / Python Tips Python Tips ディレクトリ以下のファイルとサブディレクトリを取得する CSVファイルを読み込む CSVファイルに書き込む 相対URLを絶対URLに変換する 指定したURLのHTMLを文字列で取得する Webサーバーにあるファイルをダウンロードする パスを連結する ファイルやディレクトリの有無を調べる ディレクトリを作成する ファイルの拡張子を取得する 文字列を大文字/小文字に変換する ZIPファイルを作成する SQLite3を使用する 日付の処理いろいろ ファイルをコピーする 文字列を分割する リストオブジェクトの使い方 辞書オブジェクトの使い方 ファイルやディレクトリのアクセス時刻・修正時刻を変更する サブフォルダー削除する ソート関数に評価を行

    hamasta
    hamasta 2011/02/12
    日本語サイト Pythonコードサンプル
  • python code

    Returns dictionary with local variable content from frame where exception was raised def getExceptionFrameLocals(): retVal = {} if sys.exc_info(): trace = sys.exc_info()[2] while trace.tb_next: trace = trace.tb_next retVal = trace.tb_frame.f_locals return retVal // xml Parser ************************************************************************ Example: ***************************************

    hamasta
    hamasta 2011/02/12
    DZone Snippets > python
  • sebsauvage.net- Snyppets - Python snippets

    This page contains a bunch of miscellaneous Python code snippets, recipes, mini-guides, links, examples, tutorials and ideas, ranging from very (very) basic things to advanced. I hope they will be usefull to you. All snippets are kept in a single HTML page so that you can easily ❶save it for offline reading (and keep on a USB key) ❷search in it. Note that scripts that do some web-scraping may not

  • 1