You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert
Python: Google Calendar のイベント情報を読み取るスクリプト ライブラリのインストール google-api-python-client を利用する。 google-api-python-client - Google APIs Client Library for Python - Google Project Hosting $ sudo pip install google-api-python-client 認証用のファイルを準備 まずは Google APIs Console で Calendar API を有効にする。 Google APIs Console そして、Google のチュートリアルに従ってみる。 Installation - Google APIs Client Library for Python — Google Developers
Send feedback Python quickstart Stay organized with collections Save and categorize content based on your preferences. Quickstarts explain how to set up and run an app that calls a Google Workspace API. Google Workspace quickstarts use the API client libraries to handle some details of the authentication and authorization flow. We recommend that you use the client libraries for your own apps. This
Internet Calendaring and Scheduling (iCalendar) for Python¶ The icalendar package is a RFC 5545 compatible parser/generator for iCalendar files. Homepage: https://icalendar.readthedocs.io Code: https://github.com/collective/icalendar Mailing list: https://github.com/collective/icalendar/issues Dependencies: python-dateutil and tzdata. License: BSD Quick start guide¶ icalendar enables you to create
Stateful programmatic web browsing in Python, after Andy Lester’s Perl module WWW::Mechanize. mechanize.Browser and mechanize.UserAgentBase implement the interface of urllib2.OpenerDirector, so: any URL can be opened, not just http: mechanize.UserAgentBase offers easy dynamic configuration of user-agent features like protocol, cookie, redirection and robots.txt handling, without having to make a n
Pythonを使ってこの方さまざまな点につまずいたが、ここではそんなトラップを回避して快適なPython Lifeを送っていただくべく、書き始める前に知っておけばよかったというTipsをまとめておく。 Python2系と3系について Pythonには2系と3系があり、3系では後方互換性に影響のある変更が入れられている。つまり、Python3のコードはPython2では動かないことがある(逆もしかり)。 Python3ではPython2における様々な点が改善されており、今から使うなら最新版のPython3で行うのが基本だ(下記でも、Python3で改善されるものは明記するようにした)。何より、Python2は2020年1月1日をもってサポートが終了した。よって今からPython2を使う理由はない。未だにPython2を使う者は、小学生にもディスられる。 しかし、世の中にはまだPython3に
Ansible というサーバーの設定を管理するツールの説明。いわゆる構成管理 (CM: Configuration Management) にカテゴライズされるもので、Puppet や Chef の親戚みたいなものと考えてもらえればだいたいあってる。 概要 リード開発者は Michael DeHaan で、現職の AnsibleWorks の前は Redhat で Cobbler や Func に携わっていたり、Puppet labs でプロダクトマネージャーしたりしているという経歴の持ち主。 Ansible は Python で書かれている。同じジャンルで Python 製というと Salt が有名。Chef の場合、レシピを書くためには Ruby の知識が必要となってくるけど、Ansible はどんな言語でもモジュールが書けるようになっているので、運用にあたって Python の知識は
Note that the Debian/Ubuntu package won’t work before Debian Jessie (8.0) or Ubuntu Trusty (14.04), due to missing dependencies. Furthermore, you are more than welcome to make a package for your OS of choice, if you do so please contact us. ☺ Build from the source (if you don’t use our packages) You will need: Python 3.4+, the interpreter, as well as the headers and shared objects needed to compil
CodeIQ中の人、millionsmileです。 2013年5月25日~26日に台湾でPyCon(Python Conference)が開催され、その主催者であるTim HsuさんとYung-Yu Chenさんから「Word Transformer!」というPython問題が出題されました。 問題はわずか5日の掲載期間だったにもかかわらず、39名ものPythonistaの方々に挑戦いただきました!ありがとうございます。 出題者のTimさんからは、どの解答もレベルが高く素晴らしい!と感動の声が届いております。 After review these solution, I surprisingly find there are a lot of possible way to solve the problem. These submission extend my understandin
Django REST Framework Django REST framework is a powerful and flexible toolkit for building Web APIs. Some reasons you might want to use REST framework: The Web browsable API is a huge usability win for your developers. Authentication policies including packages for OAuth1a and OAuth2. Serialization that supports both ORM and non-ORM data sources. Customizable all the way down - just use regular f
Download Current version: 2.18.0 Changelog Get Pygments from the Python Package Index, or install it with: pip install Pygments Questions? Suggestions? Clone at GitHub. You can also open an issue at the tracker. A project Welcome!¶ This is the home of Pygments. It is a generic syntax highlighter suitable for use in code hosting, forums, wikis or other applications that need to prettify source code
最近、ときどきTwitterで「Python」を検索して眺めていたのだが、Pythonの分かりにくいところとして「UnicodeDecodeErrorが出てうざい」という不満をよく見かけるようだ。 確かに、Pythonでは、数字やアルファベット以外のユニコード文字を使おうとすると、対応する処理を書かなければUnicodeEncodeErrorやUnicodeDecodeErrorが出てしまう。Python3では色々改善されているのだが、Python2では分かりにくい点も多い。 このUnicodeDecodeErrorを見て、「Pythonは日本語が苦手だ」と考えてしまう人も多いだろう。確かにそう思ってしまっても仕方がないが、それは正しくない。日本人だけでなく、アメリカ人でもフランス人でもドイツ人でも、ユニコードを使う時はみんな等しく平等にこのエラーを出しているのである。 もちろん、慣れてし
Pythonにアクセス修飾子はない PEP 8 -- Style Guide for Python Codeに 非公開なメソッドとインスタンス変数にのみ、先頭にアンダースコアを1つ使って命名する。 サブクラスとの名前の衝突を避けるには、先頭にアンダースコアを2つ付けることで、Python の名前修飾ルールが行われる。 と書かれている 変数名などの先頭にアンダースコアを2つ付けると privateのようになりますが消えたわけでない class ABC: def __init__(self): self._x = 1 self.__y = 2 abc = ABC() print "_x =", abc._x print "__y =", abc._ABC__y print dir(abc) 実行すると _x = 1 __y = 2 ['_ABC__y', '__doc__', '__init_
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く