Skip to content

Instantly share code, notes, and snippets.

View jlaura's full-sized avatar
🏠
Working from home

Jay Laura jlaura

🏠
Working from home
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jlaura
jlaura / GitHubBot.py
Created August 19, 2020 14:08
A bot to manage issues on the USGS-Astrogeology ISIS3 repository.
import requests
from datetime import datetime
### Config ###
# A mapping between the label id needed by the API and the human readable name
labelids = {'inactive': 'MDU6TGFiZWwyMjg1Mjc0MTc2',
'automatically_closed': 'MDU6TGFiZWwyMjg1Mjc2MjI3'}
# Headers necessary for authentication
{
"stac_version": "0.9.0",
"id": "I01327002RDR",
"type": "Feature",
"stac_extensions": ["proj"],
"bbox": [75.22664324464296, 78.51530600869609, 14.643038735060996, 32.673300304733246],
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
{
"productid": "I01327002RDR",
"serialnumber": "Odyssey/THEMIS_IR/702244417.102",
"label_isis": {
"IsisCube": {
"Core": {
"StartByte": 65537,
"Format": "Tile",
"TileSamples": 320,
"TileLines": 128,
@jlaura
jlaura / test_pfeffernusse_response.py
Created July 12, 2019 15:17
Code block for testing pfeffernusse response when errors are being thrown. Toss this into a notebook and alter the URL to test different instances of pfeffernusse.
import csmapi
import requests
from requests.adapters import HTTPAdapter
from requests.packages.urllib3.util.retry import Retry
import os
import json
def requests_retry_session(retries=1, backoff_factor=0.3, status_forcelist=(500, 502, 504), session=None):
session = session or requests.Session()
retry = Retry(total=retries, read=retries, connect=retries, backoff_factor=backoff_factor, status_forcelist=status_forcelist)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.