Go to file
2015-10-15 22:51:07 +01:00
.gitignore updated gitignore and requirements.txt, added send sms script 2015-09-13 13:06:56 -06:00
01_remove_all_pyc.md Add +x on all files for owner 2015-10-15 22:51:07 +01:00
02_find_all_links.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
03_simple_twitter_manager.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
04_rename_with_slice.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
05_load_json_without_dupes.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
06_execution_time.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
07_benchmark_permissions_loading_django.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
08_basic_email_web_crawler.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
09_basic_link_web_crawler.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
10_find_files_recursively.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
11_optimize_images_with_wand.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
12_csv_split.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
12_sample_csv.csv Add +x on all files for owner 2015-10-15 22:51:07 +01:00
13_random_name_generator.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
14_html_to_markdown.sh Add +x on all files for owner 2015-10-15 22:51:07 +01:00
15_check_my_environment.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
16_jinja_quick_load.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
17_rewrite_git_history.md Add +x on all files for owner 2015-10-15 22:51:07 +01:00
18_zipper.py added stock scraper, converted all scripts to python 2/3 compatibility 2015-05-17 03:49:35 -06:00
19_tsv-to-csv.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
20_restore_file_from_git.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
21_twitter_bot.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
22_git_tag.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
23_flask_session_test.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
24_sql2csv.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
25_ip2geolocation.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
25_sample_csv.csv Add +x on all files for owner 2015-10-15 22:51:07 +01:00
26_stock_scraper.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
27_send_sms.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
28_income_tax_calculator.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
29_json_test.json Add +x on all files for owner 2015-10-15 22:51:07 +01:00
29_json_to_yaml.py Add +x on all files for owner 2015-10-15 22:51:07 +01:00
readme.md Add +x on all files for owner 2015-10-15 22:51:07 +01:00
requirements.txt Add +x on all files for owner 2015-10-15 22:51:07 +01: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
  15. 15_check_my_environment.py: Pass in a config file based on your environment.
  16. 16_jinja_quick_load.py: Render a quick Jinja2 template
  17. 17_rewrite_git_history.md: Backdating/Rewriting Git history (use at your own risk)
  18. 18_zipper.py: Zip contents of a directory, adding a timestamp to the filename
  19. 19_tsv-to-csv.py: Convert TSV to CSV
  20. 20_restore_file_from_git.py: Restore file from Git History
  21. 21_twitter_bot.py: Twitter Bot
  22. 22_git_tag.py: Create Git Tag based on a commit
  23. 23_flask_session_test.py: Just a simple app to see if the sessions are working
  24. 24_sql2csv.py: SQL to CSV.
  25. 25_ip2geolocation.py: Given a CSV file with an ip address (see sample - 25_sample_csv.csv), return the geolocation based on the ip.
  26. 26_stock_scraper.py: Scrape the S&P 500 Companies list from Wikipedia, then output the data.
  27. 27_send_sms.py: Send SMS message via TextBelt
  28. 28_income_tax_calculator.py: Income tax calculator via Taxee
  29. 29_json_to_yaml.py: Convert JSON to YAML