This is the README file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os, os.path, sys, urllib2, requests | |
class PyPiError(Exception): | |
def __init__(self, value): | |
self.value = value | |
def __str__(self): | |
return repr(self.value) | |
def _chunk_report(bytes_so_far, chunk_size, total_size): | |
if (total_size != None): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
# Olaf, Dec 2015, Pythonista 1.6 beta | |
'''Appex GetFromURL | |
Pythonista app extension for use on share sheet of other apps to import file from URL into Pythonista | |
The file is saved at HOME/DESTINATION without user interaction (no 'save as' dialog) unless duplicate''' | |
from __future__ import print_function | |
try: | |
import appex, console, contextlib, itertools, os, os.path, sys, time, urllib, urlparse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Iso8601UTCTimeFormatter(logging.Formatter): | |
""" | |
A logging Formatter class giving timestamps in a more common ISO 8601 format. | |
The default logging.Formatter class **claims** to give timestamps in ISO 8601 format | |
if it is not initialized with a different timestamp format string. However, its | |
format, "YYYY-MM-DD hh:mm:ss,sss", is much less common than, "YYYY-MM-DDThh:mm:ss.sss". | |
That is, the separator between date and time is a space instead of the letter "T" | |
and the separator for fractional seconds is a comma instead of a period (full stop). | |
While these differences may not be strictly *wrong*, it makes the formatted timestamp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# author: Leon van Kammen / Coder of Salvation 2014 | |
# | |
# restconsole, a simple curl REST api wrapper for bash | |
rooturl="http://api.yourcompany.com" | |
apikey="e270f99745341a89e883c583a25b821c" | |
cache=() | |
# here you can define your preset calls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ּ_בּ | |
בּ_בּ | |
טּ_טּ | |
כּ‗כּ | |
לּ_לּ | |
מּ_מּ | |
סּ_סּ | |
תּ_תּ | |
٩(×̯×)۶ | |
٩(̾●̮̮̃̾•̃̾)۶ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
# Barcode scanner demo for Pythonista | |
# Based on http://www.infragistics.com/community/blogs/torrey-betts/archive/2013/10/10/scanning-barcodes-with-ios-7-objective-c.aspx | |
from objc_util import * | |
from ctypes import c_void_p | |
import ui | |
import sound | |
found_codes = set() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os, os.path, sys, urllib2, requests, tempfile, zipfile, shutil, gzip, tarfile | |
__pypi_base__ = os.path.abspath(os.path.dirname(__file__)) | |
class PyPiError(Exception): | |
def __init__(self, value): | |
self.value = value | |
def __str__(self): | |
return repr(self.value) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Standalone mini version of pip | |
# Geared towards Pythonista, but easily adaptable to other pure python installs | |
import argparse, copy, gzip, os, os.path, re, requests, shutil, site, sys, tarfile, time, xmlrpclib | |
# Where packages will end up installed | |
site_packages = site.USER_SITE | |
# Root of Pythonista saveable document location | |
pythonista_base = os.path.split(site_packages)[0] | |
# Temporary directory for work |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
# From http://nedbatchelder.com/blog/200712/human_sorting.html | |
import re | |
def tryint(s): | |
try: | |
return int(s) |
OlderNewer