Montreal Python Workshop/Friday/: Difference between revisions

From OpenHatch wiki
Content added Content deleted
imported>Gward
(new page (copied from BPW))
 
imported>Gward
(Replaced content with "delete")
 
Line 1: Line 1:
delete
Welcome to the Friday evening section of the Montreal Python Workshop!

When you get to Notman House please start your laptop and get on the wireless network. Join the network called "Notman House", not "Ile sans fils (Notman House)". The password will be posted. Then work through the goals on this page in order; they should take between 2 and 3 hours. Lots of staff will be around to help troubleshoot and to answer questions -- don't hesitate to ask!

At the end, a staff member will go through a checklist with you to make sure you're all set for tomorrow. Please be sure to do this checkoff before you leave -- it'll make sure that you are in good shape for tomorrow.

== Goal #1: set up Python ==

This section has instructions for installing Python and running Python from a command prompt.

* [[Montreal Python Workshop/Friday/Windows set up Python|Windows]]
* [[Montreal Python Workshop/Friday/OSX set up Python|OS X]]
* [[Montreal Python Workshop/Friday/Linux set up Python|Linux]]

== Goal #2: prepare a text editor ==

In addition to being able to run Python, we are going to install a good text editor for writing and saving Python code during the workshop.

If you would like to use a different text editor from the recommendation for your operating system, please let a staff member know.

* [[Montreal Python Workshop/Friday/Windows text editor|Windows]]
* [[Montreal Python Workshop/Friday/OSX text editor|OS X]]
* [[Montreal Python Workshop/Friday/Linux text editor|Linux]]

== Goal #3: practice starting and exiting Python ==

We'll do a lot of learning and practicing at a Python prompt (this is "interactive" because you are typing the code and hitting enter to run it yourself, instead of running it from a file). So let's practice starting and exiting Python:

* [[Montreal Python Workshop/Friday/Windows interactive Python|Windows]]
* [[Montreal Python Workshop/Friday/OSX interactive Python|OS X]]
* [[Montreal Python Workshop/Friday/Linux interactive Python|Linux]]

== Goal #4: practice navigating the computer from a command prompt ==

We will be running files containing Python code (Python "scripts") from the command prompt. You'll need to be able to navigate to those scripts using the command prompt so you can run them. In this section, we'll practice using these navigation commands.

* [[Montreal Python Workshop/Friday/Windows terminal navigation|Windows]]
* [[Montreal Python Workshop/Friday/OSX terminal navigation|OS X]]
* [[Montreal Python Workshop/Friday/Linux terminal navigation|Linux]]

== Goal #5: practice running Python code from a file ==

Interactive Python programming at a Python prompt is great for short pieces of code and for testing ideas. For longer code, it can be easier to save the code in a file, and execute the contents of that file (aka a Python script). In this section, we'll practice running Python scripts.

* [[Montreal Python Workshop/Friday/Windows Python scripts|Windows]]
* [[Montreal Python Workshop/Friday/OSX Python scripts|OS X]]
* [[Montreal Python Workshop/Friday/Linux Python scripts|Linux]]

== Goal #6: get dependencies installed for the Saturday projects ==

* [[Montreal Python Workshop/Friday/Windows project dependencies|Windows]]
* [[Montreal Python Workshop/Friday/OSX project dependencies|OS X]]
* [[Montreal Python Workshop/Friday/Linux project dependencies|Linux]]

== Goal #7: start learning Python! ==

It's time to start learning, reading, and writing some Python! Tonight, you'll work through a self-directed tutorial. Saturday morning, we'll have an interactive lecture to cover more Python basics.


<div style="font-size:125%">[[Montreal Python Workshop/Friday/Tutorial| &raquo; Click here to work through tonight's tutorial &laquo;]]</div>
<br />

== Goal #8: practice Python using CodingBat ==

Learning about functions opened up a whole new way for us to practice, using the programming site codingbat.com. The big goal of this practice section is to get you thinking about how to solve problems in Python.

<br />
<div style="font-size:125%">[[Montreal Python Workshop/Friday/CodingBat Using Codingbat|&raquo; Click here to work through tonight's CodingBat questions &laquo;]]</div>


You don't have to create a CodingBat account to do the exercises, but if you do create an account it'll keep track of which problems you've completed and other statistics.

== Goal #9: Checkoff ==

Tell a staff member that you are ready to be checked off. Together you will go through the following check-off steps:

<ol>
<li>
Start a command prompt, and from that command prompt start Python. Then quit Python.
</li>
<li>
Create a new Python file (with a .py extension). In that file, type

<pre>
print "Hello World"
</pre>

and save the file. From a command prompt, navigate to and execute that Python script.
</li>
<li>
Open your text editor, and press "Tab". Use the left arrow key to show the instructor that you are using spaces to indent, not tabs.
</li>
<li>
To test the ColorWall installation: navigate to the ColorWall directory and run <code>run.py</code>:

<pre>
python run.py -a
</pre>
</li>
<li>
To test the Wordplay installation: navigate to the Wordplay directory and run <code>words1.py</code>:

<pre>
python words1.py
</pre>
</li>
<li>To test the Twitter installlation, navigate to the Twitter directory and run <code>twitter_api.py</code>:

<pre>
python twitter_api.py --search=python
</pre>
</li>

<li>
Walk through the Tutorial concept that was most confusing for you. The Tutorial is [[Montreal_Python_Workshop_7/Friday/Tutorial| here]].
</li>

<li>
Walk through the CodingBat problem that you had the most difficulty with. The Friday CodingBat questions are [http://codingbat.com/home/bostonpythonworkshop@gmail.com/Friday here].
</li>
</ol>

If you have any other questions about the tutorial, project setup, or CodingBat questions, now is a great time to ask!

==Congratulations!==

You are done with the Friday portion of this Workshop. We'll see you at 9:30am tomorrow back here at Notman House! Please bring the laptop you used tonight.

If you have any questions, comments, or feedback on tonight's material, don't hesitate to let a staff member know.

[[Montreal Python Workshop|&laquo; Back to the Workshop home page]]

Latest revision as of 02:39, 14 February 2013

delete