Go to file
Michael Herman 8138de63fe html -> md
2014-06-10 09:07:57 -05: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 updates 2014-05-18 12:16:56 -06:00
09_basic_link_web_crawler.py added image optimizer 2014-05-18 15:36:36 -06:00
10_find_files_recursively.py file 10 2014-05-18 11:05:31 -06:00
11_optimize_images_with_wand.py added image optimizer 2014-05-18 15:36:36 -06:00
12_csv_split.py added csv_split 2014-05-30 09:31:11 -05:00
12_sample_csv.csv csv splitter 2014-05-29 11:06:17 -05:00
13_random_name_generator.py added random name generator 2014-06-02 14:08:53 -05:00
14_html_to_markdown.sh html -> md 2014-06-10 09:07:57 -05:00
not_finished.py added enviro check 2014-06-10 08:22:34 -05:00
readme.md html -> md 2014-06-10 09:07:57 -05: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
  9. 09_basic_link_web_crawler.py: web crawler for grabbing links from a website
  10. 10_find_files_recursively.py: recursively grab files from a directory
  11. 11_optimize_images_with_wand.py: recursively grab images from a directory, then optimize them for the web
  12. 12_csv_split.py: Splits a CSV file into multiple files based on command line arguments.
  13. 13_random_name_generator.py: random name generator
  14. *14_html_to_markdown.sh: Convert all html files in a single directory to markdown