python-scripts/readme.md

36 lines
2.7 KiB
Markdown
Raw Normal View History

2014-04-10 04:57:38 +02:00
## Just another repo of Python scripts
2014-04-21 15:55:09 +02:00
1. **01_remove_all_pyc.md**: remove all *.pyc* files from a git repo
2014-05-02 23:55:19 +02:00
1. **02_find_all_links.py**: get all links from a webpage
1. **03_simple_twitter_manager.py**: accessing the Twitter API, example functions
2014-05-09 17:20:21 +02:00
1. **04_rename_with_slice.py**: rename group of files, within a single directory, using slice
2015-10-11 17:28:50 +02:00
1. **05_load_json_without_dupes.py**: load JSON, convert to dict, raise error if there is a duplicate key
2014-05-09 17:20:21 +02:00
1. **06_execution_time.py**: class used for timing execution of code
2014-05-09 20:06:38 +02:00
1. **07_benchmark_permissions_loading_django.py**: benchmark loading of permissions in Django
2014-05-18 20:16:56 +02:00
1. **08_basic_email_web_crawler.py**: web crawler for grabbing emails from a website
2014-06-12 14:14:45 +02:00
1. **09_basic_link_web_crawler.py**: web crawler for grabbing links from a website
2014-05-18 19:05:31 +02:00
1. **10_find_files_recursively.py**: recursively grab files from a directory
2014-05-18 23:37:17 +02:00
1. **11_optimize_images_with_wand.py**: recursively grab images from a directory, then optimize them for the web
2014-05-30 16:31:11 +02:00
1. **12_csv_split.py**: Splits a CSV file into multiple files based on command line arguments.
2014-06-02 21:08:53 +02:00
1. **13_random_name_generator.py**: random name generator
2014-06-12 14:14:45 +02:00
1. **14_html_to_markdown.sh**: Convert all html files in a single directory to markdown
1. **15_check_my_environment.py**: Pass in a config file based on your environment.
2014-06-13 17:52:30 +02:00
1. **16_jinja_quick_load.py**: Render a quick Jinja2 template
2014-08-17 00:23:00 +02:00
1. **17_rewrite_git_history.md**: Backdating/Rewriting Git history (use at your own risk)
2014-11-12 04:43:23 +01:00
1. **18_zipper.py**: Zip contents of a directory, adding a timestamp to the filename
1. **19_tsv-to-csv.py**: Convert TSV to CSV
2015-01-03 23:13:57 +01:00
1. **20_restore_file_from_git.py**: Restore file from Git History
1. **21_twitter_bot.py**: Twitter Bot
2015-01-07 20:01:29 +01:00
1. **22_git_tag.py**: Create Git Tag based on a commit
2015-02-17 06:58:11 +01:00
1. **23_flask_session_test.py**: Just a simple app to see if the sessions are working
2015-02-18 19:56:18 +01:00
1. **24_sql2csv.py**: SQL to CSV.
1. **25_ip2geolocation.py**: Given a CSV file with an ip address (see sample - *25_sample_csv.csv*), return the geolocation based on the ip.
1. **26_stock_scraper.py**: Scrape the S&P 500 Companies list from Wikipedia, then output the data.
1. **27_send_sms.py**: Send SMS message via [TextBelt](http://textbelt.com/)
2015-10-11 17:28:50 +02:00
1. **28_income_tax_calculator.py**: Income tax calculator via [Taxee](http://taxee.io/)
1. **29_json_to_yaml.py**: Convert JSON to YAML
2015-10-25 22:20:53 +01:00
1. **30_fullcontact.py**: Call the [FullcContact](https://www.fullcontact.com/developer/) API
2016-01-26 14:00:00 +01:00
1. **31_youtube_sentiment.py**: Calculate sentiment score from the comments of a Youtube video
2016-02-02 06:33:14 +01:00
1. **32_stock_scraper.py**: Get stock prices
1. **34_git_all_repos.py**: Clone all repositories from a public user or organization on Github. Usage: `python git_all_repos.py users USER_NAME` or `python git_all_repos.py orgs ORG_NAME`