-
New from Gist https://forum.omz-software.com/topic/795/sharing-code-on-github https://gist.github.com/b0644f5ed1d94bd32805
-
pipista https://gist.github.com/4116558 https://gist.github.com/sloanlance/a67db5e241bf22c819d660ee9709b55b https://forum.omz-software.com/topic/479/pip-alike-pipista-download-python-modules-from-pypi/5 https://forum.omz-software.com/topic/1467/solved-installing-modules-with-pipista-shellista/4
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 is the README file.
- Install package from the source directory:
pip install -e .
- Install package from GitHub repo specific branch or tag, with installation config files in a different subdirectory (not the project root):
pip install 'git+_GitHub_repo_URL_@_branch_or_tag_name_#egg=_project_name_&subdirectory=_subdirectory_path_'
Since ArcREST's repository directory structure doesn't follow that expected of the usual Python packages (some files that usually appear in the root directory are in the src
directory instead), care must be taken to install it using specific commands.
- Install from PyPI using pip:
This is recommended in README.md. The package in PyPI is a static build of ArcREST and is not dependent on the contents of the git repository, so the unusual directory structure isn't an impediment.
pip install arcrest_package
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/sh -- | |
## | |
## Requires your VPN service to be already configured | |
## and your password saved in your keychain. | |
## | |
## Alter the VPN variable below to contain the name | |
## of your configured VPN service before running. | |
## |
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/sh -- | |
# While working with PHP applications, there were a few obstacles to | |
# local development. It wasn't possible/easy to get an Oracle server | |
# or Oracle client for PHP to run under Mac OS X. Furthermore, the | |
# local environment didn't have the authenticated user's name available | |
# in the environment. Although an odd situation, it was easier to | |
# develop on the local machine, commit to SVN, then update a copy of | |
# the project running on a server that supported Oracle, CoSign, etc. | |
# The following script, run in the project directory of the server |
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 |
OlderNewer