[x] as a package [x] run.py parameters [x] sortable projects list #12 [x] Postgresql Supported via SQLAlchemy (with the power of SQLAlchemy, pyspider also support Oracle, SQL Server, etc) [x] benchmarking [ ] pypi release version
v0.4.0
| #!/usr/bin/env python | |
| # -*- encoding: utf-8 -*- | |
| # vim: set et sw=4 ts=4 sts=4 ff=unix fenc=utf8: | |
| # Author: Binux<[email protected]> | |
| # http://binux.me | |
| # Created on 2014-12-04 00:56:49 | |
| def get_py(word): | |
| word = word.encode('gbk') |
| #!/usr/bin/env python | |
| # -*- encoding: utf-8 -*- | |
| # vim: set et sw=4 ts=4 sts=4 ff=unix fenc=utf8: | |
| # Author: Binux<[email protected]> | |
| # http://binux.me | |
| # Created on 2014-11-17 23:29:30 | |
| import os | |
| import sys | |
| import time |
| #!/usr/bin/env python | |
| # -*- encoding: utf-8 -*- | |
| # vim: set et sw=4 ts=4 sts=4 ff=unix fenc=utf8: | |
| # Created on 2014-09-10 12:05:42 | |
| import os | |
| import re | |
| import json | |
| import datetime | |
| from libs.pprint import pprint |
| #!/bin/bash | |
| # vim: set et sw=4 ts=4 sts=4 ff=unix fenc=utf8: | |
| # Author: Binux<[email protected]> | |
| # http://binux.me | |
| # Created on 2014-10-23 23:26:46 | |
| PROCESSOR=`uname -p` | |
| # make tools dir | |
| mkdir -p $HOME/tools |
| #!/bin/bash | |
| # | |
| # The Bash shell script executes a command with a time-out. | |
| # Upon time-out expiration SIGTERM (15) is sent to the process. If the signal | |
| # is blocked, then the subsequent SIGKILL (9) terminates it. | |
| # | |
| # Based on the Bash documentation example. | |
| # Hello Chet, | |
| # please find attached a "little easier" :-) to comprehend |
| #!/usr/bin/env python | |
| # -*- encoding: utf-8 -*- | |
| # vim: set et sw=4 ts=4 sts=4 ff=unix fenc=utf8: | |
| # Created on 2014-02-28 00:15:53 | |
| from libs.pprint import pprint | |
| from libs.base_handler import * | |
| class Handler(BaseHandler): | |
| ''' |
| // vim: set et sw=2 ts=2 sts=2 ff=unix fenc=utf8: | |
| // Author: Binux<[email protected]> | |
| // http://binux.me | |
| // Created on 2013-11-11 18:50:58 | |
| (function(){ | |
| function getOffset(elem) { | |
| var top = 0; | |
| var left = 0; | |
| do { |
| #!/bin/sh | |
| while : | |
| do | |
| dev=$(ip link | grep state | awk '{ sub(":", "", $2); print $2 }' | grep vpn) | |
| if [ $? -ne 0 ]; then | |
| sleep 5 | |
| continue | |
| fi | |
| break |
| // vim: set et sw=2 ts=2 sts=2 ff=unix fenc=utf8: | |
| // Author: Binux<[email protected]> | |
| // http://binux.me | |
| // Created on 2013-09-17 10:53:19 | |
| (function() { | |
| window.console = window.console || {}; | |
| window.console.log = window.console.log || function() {}; | |
| var _ = {}; |