https://github.com/patrick-llgc/notesfromtdi
https://github.com/patrick-llgc/notesfromtdi
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/patrick-llgc/notesfromtdi
- Owner: patrick-llgc
- Created: 2015-09-08T05:12:42.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-09-08T07:33:53.000Z (almost 11 years ago)
- Last Synced: 2025-01-22T17:24:50.924Z (over 1 year ago)
- Size: 727 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# notes from TDI
This serves as a note of all the resources and trouble-shootings encoutered while doing TDI projects
Resources
=========
Flask + Heroku (in decreasing order of usefulness)
----------------------------------------------------------------
https://github.com/bev-a-tron/MyFlaskTutorial (by Beverley!)
http://flask.pocoo.org/docs/0.10/quickstart/#quickstart
https://realpython.com/blog/python/python-web-applications-with-flask-part-i/
http://virantha.com/2013/11/14/starting-a-simple-flask-app-with-heroku/
simpleJSON
----------
http://simplejson.readthedocs.org/en/latest/
Heroku
------
https://devcenter.heroku.com/articles/git
Flask-Bootstrap for webapp development
--------------------------------------
https://pythonhosted.org/Flask-Bootstrap/
pandas
------
https://github.com/physiophile/pandas-exercises
http://pandas.pydata.org/
beautiful soup (jQuery + python)
------
http://www.crummy.com/software/BeautifulSoup/bs4/doc/
regular expression
------------------
https://docs.python.org/2/library/re.html
numpy
-----
http://wiki.scipy.org/NumPy_for_Matlab_Users (numpy for matlab users)
http://www.engr.ucsb.edu/~shell/che210d/numpy.pdf
python
------
https://developers.google.com/edu/python/
https://www.codecademy.com/tracks/python
http://www.siafoo.net/article/52 (python tricks)
useful python snippet
=============
How to convert time series
```python
ddf = DataFrame(data)
ddf.columns = data_columns
ddf.index = to_date_time(ddf.pop('Date'))
# an slower alternative
# ddf = ddf.set_index('Date')
```