Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Akira-Taniguchi committed May 21, 2016
2 parents 63d3cc5 + 688f4fc commit 686c677
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
build/
env/
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,15 @@

* https://readthedocs.org/projects/bootcamp-text/
* http://bootcamp-text.readthedocs.io/

## How to build

```
$ clone git@github.com:pyconjp/bootcamp-text.git
$ cd bootcamp-text
$ virtualenv env
$ . env/bin/activate
(env)$ pip install -r requirements.txt
(env)$ make html
(env)$ open build/html/index.html
```
5 changes: 5 additions & 0 deletions source/0_about.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
==========================
Python bootcamp について
==========================

(ここに Python bootcamp の説明とかを書いてください)
10 changes: 5 additions & 5 deletions source/1_intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -518,11 +518,11 @@ Python 3.5
書籍
--------
- Pythonエンジニア養成読本(鈴木 たかのり、清原 弘貴、嶋田 健志、池内 孝啓、関根 裕紀、若山 史郎著、2015年、技術評論社、ISBN978-4-7741-7320-7
- 初めてのPython 第3(Mark Lutz著、夏目大訳、2009年、オライリージャパン、ISBN978-4-8731-1393-7
- Pythonスタートブック(辻真吾著、2010年、技術評論社、ISBN978-4-7741-4229-6
- パーフェクトPython(Pythonサポーターズ著、2013年、技術評論社、ISBN978-4-7741-5539-5
- エキスパートPythonプログラミング』(TarekZiade著、稲田直哉、渋川よしき、清水川貴之、森本哲也訳、2010年、アスキーメディアワークス、ISBN978-4-0486-8629-7
- `Pythonエンジニア養成読本 <http://gihyo.jp/book/2015/978-4-7741-7320-7>`_ (鈴木 たかのり、清原 弘貴、嶋田 健志、池内 孝啓、関根 裕紀、若山 史郎著、2015年、技術評論社、ISBN978-4-7741-7320-7
- `初めてのPython 第3 <https://www.oreilly.co.jp/books/9784873113937/>`_ (Mark Lutz著、夏目大訳、2009年、オライリージャパン、ISBN978-4-8731-1393-7
- `Pythonスタートブック <http://gihyo.jp/book/2010/978-4-7741-4229-6>`_ (辻真吾著、2010年、技術評論社、ISBN978-4-7741-4229-6
- `パーフェクトPython <http://gihyo.jp/book/2013/978-4-7741-5539-5>`_ (Pythonサポーターズ著、2013年、技術評論社、ISBN978-4-7741-5539-5
- `エキスパートPythonプログラミング <http://ascii.asciimw.jp/books/books/detail/978-4-04-868629-7.shtml>`_ TarekZiade著、稲田直哉、渋川よしき、清水川貴之、森本哲也訳、2010年、アスキーメディアワークス、ISBN978-4-0486-8629-7
その他
------
Expand Down
6 changes: 3 additions & 3 deletions source/5_scraping.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
:節サブタイトル: 自動でデータを収集する方法

そもそもスクレイピングとは
=====================
==========================
ウェブサイトから情報を抽出する、コンピュータソフトウェア技術のことをいいます。

Pythonを使って実行することができますので、これを機に習得してみましょう。
Expand Down Expand Up @@ -96,7 +96,7 @@ Pythonを使って実行することができますので、これを機に習
この場合だと、配列の2番目以降の情報をすべて取得することができます。

* 「BeautifulSoup」って何?
  HTMLを解析するライブラリになります。
HTMLを解析するライブラリになります。

.. code-block:: python
:caption: BeautifulSoup利用例
Expand All @@ -113,7 +113,7 @@ Pythonを使って実行することができますので、これを機に習


実行してみよう
==========
==============
simple.py --output output.json


Expand Down
2 changes: 2 additions & 0 deletions source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@

# -- General configuration ------------------------------------------------

numfig = True

# If your documentation needs a minimal Sphinx version, state it here.
#needs_sphinx = '1.0'

Expand Down
1 change: 1 addition & 0 deletions source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Pythonの開発環境構築、基礎的な文法や実践応用についてま
.. toctree::
:maxdepth: 2

0_about
1_intro
2_types
3_collections
Expand Down

0 comments on commit 686c677

Please sign in to comment.