PyClass: Difference between revisions

From Noisebridge
Jump to navigation Jump to search
Line 37: Line 37:
The order of the following courses has not yet been determined.   
The order of the following courses has not yet been determined.   


Please [https://noisebridge.net/wiki/PyClass#Mailing_List ask on the mailing list] if you want to know what courses are coming this week!
Please [http://groups.google.com/group/pyclass ask on the mailing list] if you want to know what courses are coming this week!


# JSON format, Python Types, and the JSON Module
# JSON format, Python Types, and the JSON Module

Revision as of 18:28, 18 August 2014

PSAs and Events

PSA 8-16-14: The new curriculum for the Noisebridge PyClass is a crash course in the Python standard library, also touching on modules that are popular but not quite part of the standard modules. Scroll down to see the course list.

Scheduled Weekly Meeting Times

  • Tuesday 7:00 - 9:00 PM PST - 'Turing' Classroom
  • Wednesday 7:00 - 9:00 PM PST - 'Church' Classroom

Mailing List

Sign up for this to hear updates and conversations regarding the course!

Class Description, Goals, and Ideal Student

The pace of the courses will be fast, and the materials will be available online 24/7 and we plan to frequently repeat modules that are in high demand with new twists as we iterate over the course materials.

A primary goal of the course is to break down the materials into independent units. In other words, if you miss a week then you won't fall behind. Sounds good, right?

To best experience the course, spend a short time studying the course materials before you come in. If you wish to know this week's courses, please send an email out to PyClass@googlegroups.com

The ideal student for this course can understand the following code (it's fine to use Google to look up the built in functions, and we use tons of web resources throughout the course materials):

<source lang="python">

word_frequency_dict = {} word = "noisebridge"

for letter in word:

   times = word_frequency_dict.get(letter, 0)
   times += 1
   word_frequency_dict.update( {letter : times} )
   

</source>

Course List

The order of the following courses has not yet been determined.

Please ask on the mailing list if you want to know what courses are coming this week!

  1. JSON format, Python Types, and the JSON Module
  2. Control Flow, itertools, and Functional Programming
  3. Built-in Functions
  4. Built-in Types and String Services
  5. Numeric and Mathematical Modules, and Operators
  6. argparse, ConfigParser, and more - configuring your applications
  7. pip, virtualenv, packaging, versions, and inspect.
  8. Logging your applications: logging, logging.config, logging.handlers
  9. Exceptions and Debugging: Exception behavior, custom exceptions, pdb, cProfile, timeit, time, trace.
  10. os, sys, and io (Caution, here be Python 3, inside the io module)
  11. (potential for a unittest course)

Legacy Materials (Liz & Kellan's Class)

The following material is old material from Kellan and Liz's long-running PyClass:


Come learn Python!!
See our awesome website for both PyClasses at Noisebridge Learning Python


After 9pm Tuesdays, we'll have open hacking time and time for questions for those that are kicking so much ass they just can't go home yet, or even for those that may have gone to Mondays' Front-end Web Development class and want to come back for more. If you have problems from work or home, feel free to bring them after 9 and everyone can help each other.


Semi-Official Intro to Python Class Texts

Other Intro to Python Texts

PyClass Githubs

[Old] Class Slides

Other Helpful PyClass links