Go to file
2014-05-13 17:48:46 -07:00
.gitignore added .pyc script 2014-04-09 20:56:32 -06:00
01_remove_all_pyc.md new script 2014-04-21 07:55:09 -06:00
02_find_all_links.py new script 2014-04-21 07:55:09 -06:00
03_simple_twitter_manager.py added twitter api script 2014-04-22 17:43:32 -06:00
04_rename_with_slice.py Rename rename_with_slice.py to 04_rename_with_slice.py 2014-05-02 16:53:09 -05:00
05_load_json_without_dupes.py json.loads withou dupes 2014-05-03 19:10:43 -05:00
06_execution_time.py updates 2014-05-05 02:40:08 -05:00
07_benchmark_permissions_loading_django.py 07 2014-05-09 10:20:21 -05:00
08_basic_email_web_crawler.py added web crawler 2014-05-13 17:48:46 -07:00
readme.md added web crawler 2014-05-13 17:48:46 -07:00

Just another repo of Python scripts

  1. 01_remove_all_pyc.md: remove all .pyc files from a git repo
  2. 02_find_all_links.py: get all links from a webpage
  3. 03_simple_twitter_manager.py: accessing the Twitter API, example functions
  4. 04_rename_with_slice.py: rename group of files, within a single directory, using slice
  5. 05_load_json_without_dupes.py: load json, convert to dict, raise error if there is a duplicate key
  6. 06_execution_time.py: class used for timing execution of code
  7. 07_benchmark_permissions_loading_django.py: benchmark loading of permissions in Django
  8. 08_basic_email_web_crawler.py: web crawler for grabbing emails from a website recursively