├── .gitignore ├── README.md ├── excel-xlrd-json.py ├── excel-xlrd-sample.xls ├── excel-xlrd.py ├── facebook-api-sqlite.py ├── find-thursday.py ├── formcontrols.py ├── ftp-example.py ├── optionparser-test.py ├── ordered-dict.py ├── palewire-scrape.py ├── pip-upgrade.py ├── psycopg2-test.py ├── pyodbc-test.py ├── rand.py ├── regex-example.py ├── sql-to-json-ordereddict.py ├── twitter-api-sqlite.py └── twitter-api.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/README.md -------------------------------------------------------------------------------- /excel-xlrd-json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/excel-xlrd-json.py -------------------------------------------------------------------------------- /excel-xlrd-sample.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/excel-xlrd-sample.xls -------------------------------------------------------------------------------- /excel-xlrd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/excel-xlrd.py -------------------------------------------------------------------------------- /facebook-api-sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/facebook-api-sqlite.py -------------------------------------------------------------------------------- /find-thursday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/find-thursday.py -------------------------------------------------------------------------------- /formcontrols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/formcontrols.py -------------------------------------------------------------------------------- /ftp-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/ftp-example.py -------------------------------------------------------------------------------- /optionparser-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/optionparser-test.py -------------------------------------------------------------------------------- /ordered-dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/ordered-dict.py -------------------------------------------------------------------------------- /palewire-scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/palewire-scrape.py -------------------------------------------------------------------------------- /pip-upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/pip-upgrade.py -------------------------------------------------------------------------------- /psycopg2-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/psycopg2-test.py -------------------------------------------------------------------------------- /pyodbc-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/pyodbc-test.py -------------------------------------------------------------------------------- /rand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/rand.py -------------------------------------------------------------------------------- /regex-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/regex-example.py -------------------------------------------------------------------------------- /sql-to-json-ordereddict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/sql-to-json-ordereddict.py -------------------------------------------------------------------------------- /twitter-api-sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/twitter-api-sqlite.py -------------------------------------------------------------------------------- /twitter-api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonydb/python-snippets/HEAD/twitter-api.py --------------------------------------------------------------------------------