Skip to content

Instantly share code, notes, and snippets.

@pirkla
pirkla / pythonSampleAsync
Last active July 30, 2019 21:25
A sample async call using python.
#!/usr/bin/env python3
# import required modules
import asyncio
import aiohttp
from aiohttp import ClientSession
# an async function to build test calls based on a value with a given client session
async def testCall(val,session):
print("start: "+str(val))
@pirkla
pirkla / pythonSampleAsyncBatch.py
Last active August 4, 2019 11:09
Sample python script for asynchronous calls with batching
#!/usr/bin/env python3
import asyncio
import aiohttp
from aiohttp import ClientSession
async def testCall(val,session):
print("start"+str(val))
t1 = await session.request("GET",'http://python.org/'+str(val))
c = await t1.text()
@pirkla
pirkla / pythonSampleClientSessionClass.py
Created July 30, 2019 21:35
A sample python script with a wrapper for client sessions
#!/usr/bin/env python3
import asyncio
import aiohttp
from aiohttp import ClientSession
# use atexit module
import atexit
class SessionController:
@pirkla
pirkla / pythonSampleURLParse.py
Last active July 30, 2019 21:56
A sample script to parse a url with formatting into a list of urls
#!/usr/bin/env python3
import re
someURL = 'https://someurl.com/[1-10:2]/id/[11-20]/more/{a,b}'
def parseURLList(url):
urlList = []
subString = re.search(r"\[(.*?)\]|\{(.*?)\}", url)
if subString == None:
urlList.append(url)
@pirkla
pirkla / asyncCalls.py
Created July 30, 2019 21:42
A script that can make asynchronous calls using curl-like syntax on the command line
#!/usr/bin/env python3
import asyncio
import aiofiles
import aiohttp
from aiohttp import ClientSession
import base64
import timeit
@pirkla
pirkla / sampleArgParse.py
Last active August 4, 2019 11:41
A sample python script using argParse
#!/usr/bin/env python3
import asyncio
import aiohttp
from aiohttp import ClientSession
import argparse
import re
class StoreDictKeyPair(argparse.Action):
@pirkla
pirkla / customPlistCreation.sh
Last active August 6, 2019 01:54
Create a custom plist and convert it to xml
# Create the plist and place it on the desktop
defaults write ~/Desktop/com.domain.name key value
# additional key value pairs can be added as follows
defaults write ~/Desktop/com.domain.name key2 value2
# Convert the plist to xml1 formatting for easy viewing and editing
plutil -convert xml1 ~/Desktop/com.domain.name.plist
@pirkla
pirkla / plistSample.plist
Created August 6, 2019 03:04
A plist sample
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>someKey</key>
<valueType>someValue</valueType>
</dict>
</plist>
@pirkla
pirkla / apiAuth.sh
Last active February 11, 2022 12:46
Generate a bearer token from the Jamf Pro UAPI
# Generate a token
tokenResp=$(curl -k -u "username:password" -X POST "https:/yoururl.jamfcloud.com/uapi/auth/tokens" -H "accept: application/json")
# parse the token from the response
token=$(echo $tokenResp | awk -F '[:,{"}]' ' {print $6} ')
# pass the token into a cURL command
curl -k -X GET "https://yoururl.jamfcloud.com/uapi/v1/inventory-preload" -H "accept: application/json" -H "Authorization: Bearer $token"
# The expiration time can be found with the following
time=$(echo $tokenResp | awk -F "[:,{}]" ' {print $5} ')
#!/bin/sh
# This is an example only, and is not a valid script
# Set the url and credentials
jssURL="https://tryitout.jamfcloud.com/JSSResource"
endPoint="/computers"
jssUser="admin"
jssPass="password"