Indianapolis Python Workshop 6/Friday: Difference between revisions

From OpenHatch wiki
Content added Content deleted
imported>Catherinedevlin
(freshly copied from boston)
 
imported>Catherinedevlin
(Blanked the page)
 
Line 1: Line 1:
Welcome to the Friday evening section of the Indianapolis Python Workshop!

When you get to Indiana LinuxFest, please start your laptop and get on the wireless network. 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.

* [[Boston Python Workshop 6/Friday/Windows set up Python|Windows]]
* [[Boston Python Workshop 6/Friday/OSX set up Python|OS X]]
* [[Boston Python Workshop 6/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.<br />

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

* [[Boston Python Workshop 6/Friday/Windows text editor|Windows]]
* [[Boston Python Workshop 6/Friday/OSX text editor|OS X]]
* [[Boston Python Workshop 6/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:

* [[Boston Python Workshop 6/Friday/Windows interactive Python|Windows]]
* [[Boston Python Workshop 6/Friday/OSX interactive Python|OS X]]
* [[Boston Python Workshop 6/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.

* [[Boston Python Workshop 6/Friday/Windows terminal navigation|Windows]]
* [[Boston Python Workshop 6/Friday/OSX terminal navigation|OS X]]
* [[Boston Python Workshop 6/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.

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

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

* [[Boston Python Workshop 6/Friday/Windows project dependencies|Windows]]
* [[Boston Python Workshop 6/Friday/OSX project dependencies|OS X]]
* [[Boston Python Workshop 6/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%">[[Boston Python Workshop 6/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%">[[Boston Python Workshop 6/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 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 Indiana LinuxFest, same room. 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.

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

Latest revision as of 03:54, 10 April 2012