An open API service indexing awesome lists of open source software.

https://github.com/pachevalier/py-notes

Ressources pour apprendre Python
https://github.com/pachevalier/py-notes

Last synced: about 2 months ago
JSON representation

Ressources pour apprendre Python

Awesome Lists containing this project

README

        

py-notes
========

## IDE

* [iPython Notebook](http://nbviewer.ipython.org/)

ipython notebook

## Importing Data

fname = "out.csv"
file = open(fname, "wb")
writer = csv.writer(file)
writer.writerow( ('Prix', 'Désignation') )
writer.writerow( (9.80, 'Tarte aux pommes') )
writer.writerow( ('13.40', 'Galette des rois') )
writer.writerow( (2.45, 'Beignet') )
file.close()

## Data Visualisation

* [Tutorial pour apprendre Bokeh](http://nbviewer.ipython.org/gist/fonnesbeck/ad091b81bffda28fd657)