text
stringlengths
0
1.05M
meta
dict
#!/bin/env python # # generate a production base. # player_config = """ -- player configuration SetStartView(0, 28, 3) SetPlayerData(0, "Resources", "gold", 40000) SetPlayerData(0, "Resources", "wood", 40000) SetPlayerData(0, "Resources", "oil", 40000) SetPlayerData(0, "RaceName", "human") SetAiType(0, "wc...
{ "repo_name": "k1643/StratagusAI", "path": "tools/the-right-strategy-basegen.py", "copies": "1", "size": "3963", "license": "apache-2.0", "hash": -2548080232074289700, "line_mean": 32.7631578947, "line_max": 84, "alpha_frac": 0.5680040373, "autogenerated": false, "ratio": 2.636726546906188, "co...
#!/bin/env python """ Generation of stochastic noise ============================== This example script shows how to run the stochastic noise field generators included in pysteps. These noise fields are used as perturbation terms during an extrapolation nowcast in order to represent the uncertainty in the e...
{ "repo_name": "pySTEPS/pysteps", "path": "examples/plot_noise_generators.py", "copies": "1", "size": "5672", "license": "bsd-3-clause", "hash": 4446008906841409500, "line_mean": 30.5977011494, "line_max": 86, "alpha_frac": 0.6292313117, "autogenerated": false, "ratio": 3.1775910364145656, "conf...
#!/bin/env python import os, re, sys from shutil import copy2 try: destination_root = os.environ.get("POTOO_API") or sys.argv[1] except: print("Error: You must supply a destination_root by either using the POTOO_API environment variable or supplying the path as first argument to this script.") exit(-1) ...
{ "repo_name": "Manuzor/UnitTestFramework", "path": "install.py", "copies": "1", "size": "2206", "license": "mit", "hash": -8187210892608139000, "line_mean": 24.9024390244, "line_max": 158, "alpha_frac": 0.6627379873, "autogenerated": false, "ratio": 2.9335106382978724, "config_test": false, "...
import os from functools import partial import copy import numpy as np from numpy import sqrt, tanh from scipy import optimize import matplotlib.pyplot as plt __author__ = 'Andreas Ennemoser' __copyright__ = 'Copyright 2015' __license__ = 'MIT' __version__ = '0.95' __email__ = 'andreas.ennemoser@aon.at...
{ "repo_name": "chiefenne/JET", "path": "jet.py", "copies": "1", "size": "21548", "license": "mit", "hash": 4486385479160815000, "line_mean": 34.771331058, "line_max": 87, "alpha_frac": 0.4441711528, "autogenerated": false, "ratio": 3.1365356622998544, "config_test": false, "has_no_keywords": ...
#!/bin/env python """ Precipitation downscaling with RainFARM ======================================= This example script shows how to use the stochastic downscaling method RainFARM available in pysteps. RainFARM is a downscaling algorithm for rainfall fields developed by Rebora et al. (2006). The method can...
{ "repo_name": "pySTEPS/pysteps", "path": "examples/rainfarm_downscale.py", "copies": "1", "size": "4762", "license": "bsd-3-clause", "hash": 4082967092609988000, "line_mean": 32.2446043165, "line_max": 85, "alpha_frac": 0.631512605, "autogenerated": false, "ratio": 3.5025754231052244, "config_t...
""" Copyright (c) 2016 Christopher M. Bruns Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publis...
{ "repo_name": "cmbruns/pyktx", "path": "src/tools/ktx_from_octree.py", "copies": "1", "size": "14278", "license": "mit", "hash": 807829747496208600, "line_mean": 43.6166134185, "line_max": 121, "alpha_frac": 0.593220339, "autogenerated": false, "ratio": 3.7593470247498684, "config_test": false,...
#! /bin/env python """ This script will return the paths that distutils will use for installing a package. To use this script, execute it the same way that you would execute setup.py, but instead of providing 'install' or 'build' as the command, specify 'purelib' or 'platlib' and the corresponding path will be...
{ "repo_name": "timkrentz/SunTracker", "path": "IMU/VTK-6.2.0/ThirdParty/xdmf2/vtkxdmf2/CMake/setup_install_paths.py", "copies": "2", "size": "4078", "license": "mit", "hash": 7788736428211806000, "line_mean": 27.5507246377, "line_max": 74, "alpha_frac": 0.5640019617, "autogenerated": false, "rati...
from Tkinter import * import Pmw class YasaraControl(Frame): """A yasara controller for comparison use""" def __init__(self, parent, yasara): Frame.__init__(self, parent, height=200,width=160) self.yasara = yasara c=Button(self,text='Align', command=self.align) ...
{ "repo_name": "dmnfarrell/peat", "path": "PEATDB/Yasara.py", "copies": "1", "size": "1231", "license": "mit", "hash": 522425771869689540, "line_mean": 29.5641025641, "line_max": 66, "alpha_frac": 0.5418359058, "autogenerated": false, "ratio": 3.5994152046783627, "config_test": false, "has_no_...
#!/bin/env python # This script will validate and convert a custom formatted tab-delimited text file # into an OBO file based on input parameters. import sys, string import argparse import time import collections generatingTool = "BioGRID Tab2OBO 0.0.1a" formatVersion = "1.2" colCount = 8 # Process Co...
{ "repo_name": "BioGRID/BioGRID-Ontologies", "path": "generator/Tab2OBO.py", "copies": "1", "size": "5230", "license": "mit", "hash": 8379410051022758000, "line_mean": 37.9389312977, "line_max": 241, "alpha_frac": 0.6317399618, "autogenerated": false, "ratio": 3.0800942285041226, "config_test": ...
#!/bin/env python # Unofficial python bindings for OpenVR API version 1.16.8 # from https://github.com/cmbruns/pyopenvr # based on OpenVR C++ API at https://github.com/ValveSoftware/openvr import os import platform import ctypes from ctypes import * from .version import __version__ import openvr.error_co...
{ "repo_name": "cmbruns/pyopenvr", "path": "src/openvr/__init__.py", "copies": "1", "size": "363419", "license": "bsd-3-clause", "hash": 546984032730190340, "line_mean": 47.3708735226, "line_max": 497, "alpha_frac": 0.7046439509, "autogenerated": false, "ratio": 3.60674268814323, "config_test": ...
""" /*- * Copyright (c) 1997 by Tracy Camp campt@hurrah.com * * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose and without fee is hereby granted, * provided that the above copyright notice appear in all copies and that * both that copyright notice and ...
{ "repo_name": "yorickdewid/tinypy", "path": "examples/vines.py", "copies": "1", "size": "5696", "license": "mit", "hash": 2576407977644087300, "line_mean": 31.5176470588, "line_max": 93, "alpha_frac": 0.5079002809, "autogenerated": false, "ratio": 3.3924955330553903, "config_test": false, "ha...
#!/bin/env /usr/bin/python2.6 from datetime import date,timedelta import json import httplib from string import Template import sys import urllib def search_issues(query_terms, sortBy=None, orderDir=None): conn = httplib.HTTPSConnection("api.github.com") params_map = {"q": "+".join(query_terms)} if None != sort...
{ "repo_name": "ydai1124/gobblin-1", "path": "query_github_issues.py", "copies": "10", "size": "2392", "license": "apache-2.0", "hash": -806040465663068300, "line_mean": 32.2222222222, "line_max": 121, "alpha_frac": 0.6584448161, "autogenerated": false, "ratio": 3.2021419009370815, "config_test"...
#!/bin/env /usr/bin/python2.6 # pylint: disable=missing-docstring # pylint: disable=unused-import from datetime import date, timedelta import json import httplib from string import Template import sys import urllib def search_issues(query_terms, sortBy=None, orderDir=None): # pylint: disable=line-too-long # py...
{ "repo_name": "arjun4084346/gobblin", "path": "query_github_issues.py", "copies": "7", "size": "2784", "license": "apache-2.0", "hash": 4278553769251532000, "line_mean": 34.2405063291, "line_max": 123, "alpha_frac": 0.6415229885, "autogenerated": false, "ratio": 3.382746051032807, "config_test"...
#!/bin/env vtkpython import vtk from vtk.test import Testing class kMeansDistanceCalculator( Testing.vtkTest ): def testDistanceCalculator(self): "See whether the distance calculator evaluates functions properly." xv = vtk.vtkDoubleArray() yv = vtk.vtkDoubleArray() xv.SetName( 'x' ) yv...
{ "repo_name": "hlzz/dotfiles", "path": "graphics/VTK-7.0.0/Filters/Statistics/Testing/Python/kMeansDistanceCalculator.py", "copies": "2", "size": "2196", "license": "bsd-3-clause", "hash": -1859543830386539300, "line_mean": 34, "line_max": 113, "alpha_frac": 0.6707650273, "autogenerated": false, ...
#!bin/evn python # -*-coding:utf8-*- from mysql import MySQL import datetime import sys import types import cPickle reload(sys) sys.setdefaultencoding('utf-8') class SimilarImages: def insert(self,d): n = MySQL() n.selectDb('images') tbname = 'similar_images' n.insert(tbname, d) ...
{ "repo_name": "fffy2366/image-processing", "path": "bin/python/models/similar_images.py", "copies": "1", "size": "1043", "license": "mit", "hash": 6829706924024311000, "line_mean": 23.8571428571, "line_max": 133, "alpha_frac": 0.6021093001, "autogenerated": false, "ratio": 3.419672131147541, "c...
#!bin/evn python # -*-coding:utf8-*- import datetime import sys sys.path.append("../../..") from bin.python.models.mysql import MySQL reload(sys) sys.setdefaultencoding('utf-8') class YouyuanLog: def insert(self,d): n = MySQL() n.selectDb('images') tbname = 'youyuan_log' n.insert(...
{ "repo_name": "fffy2366/image-processing", "path": "bin/python/models/youyuan_log.py", "copies": "1", "size": "2056", "license": "mit", "hash": -7712574571201377000, "line_mean": 30.5846153846, "line_max": 164, "alpha_frac": 0.5521442495, "autogenerated": false, "ratio": 2.986899563318777, "con...
#!bin/evn python #-*-coding:utf8-*- from credential import BceCredentials from bceocrapi import BceOCRAPI import base64 import sys import os import logging reload(sys) sys.setdefaultencoding('utf-8') # 创建一个logger logger = logging.getLogger('mylogger') logger.setLevel(logging.DEBUG) # 创建一个handler,用于写入日志文件 fh = loggin...
{ "repo_name": "fffy2366/image-processing", "path": "batchocr.py", "copies": "1", "size": "2452", "license": "mit", "hash": 1154452495523243000, "line_mean": 24.3655913978, "line_max": 93, "alpha_frac": 0.612807464, "autogenerated": false, "ratio": 2.667420814479638, "config_test": false, "has...
#!bin/evn python # -*-coding:utf8-*- ''' http://weipengfei.blog.51cto.com/1511707/1269034 ''' import MySQLdb import sys import types reload(sys) sys.setdefaultencoding('utf-8') OperationalError = MySQLdb.OperationalError class MySQL: def __init__(self, host='127.0.0.1', user='root', password='1234', port=3306, c...
{ "repo_name": "fffy2366/image-processing", "path": "bin/python/models/mysql.py", "copies": "1", "size": "3676", "license": "mit", "hash": 8078632968674536000, "line_mean": 29.8235294118, "line_max": 109, "alpha_frac": 0.5267175573, "autogenerated": false, "ratio": 3.37442502299908, "config_test...
#!bin/evn python # -*-coding:utf8-*- import base64 import sys import os import logging import datetime import re import multiprocessing # from pylab import * from PIL import Image import cv2 from bceocrapi import BceOCRAPI from bin.python.models.images import Images from nude import Nude import imagehash from bin.py...
{ "repo_name": "fffy2366/image-processing", "path": "api_matlab.py", "copies": "1", "size": "7334", "license": "mit", "hash": 2316767880844094500, "line_mean": 27.4939271255, "line_max": 106, "alpha_frac": 0.5234441603, "autogenerated": false, "ratio": 3.143367574810183, "config_test": false, ...
#!bin/evn python # -*-coding:utf8-*- import base64 import sys import os import logging import datetime import re import multiprocessing # from pylab import * from PIL import Image import cv2 sys.path.append("../..") from bin.python.models.youyuan_log import YouyuanLog from nude import Nude import imagehash from bin.p...
{ "repo_name": "fffy2366/image-processing", "path": "tests/python/finger_log.py", "copies": "1", "size": "2811", "license": "mit", "hash": 4046533079234193400, "line_mean": 25.3786407767, "line_max": 214, "alpha_frac": 0.6032388664, "autogenerated": false, "ratio": 2.8126293995859215, "config_te...
#!bin/evn python # -*-coding:utf8-*- import base64 import sys import os import logging import datetime import re import threading import multiprocessing from PIL import Image as image import cv2 from bceocrapi import BceOCRAPI from bin.python.models.images import Images from nude import Nude image.LOAD_TRUNCATED_IM...
{ "repo_name": "fffy2366/image-processing", "path": "batch.py", "copies": "1", "size": "8156", "license": "mit", "hash": 2563679280006623000, "line_mean": 23.6900958466, "line_max": 102, "alpha_frac": 0.5989906832, "autogenerated": false, "ratio": 2.7125307125307123, "config_test": false, "has...
#!bin/evn python # -*-coding:utf8-*- ''' name:face.py $ python face.py input.jpg ''' import sys import cv2 # Get user supplied values imagePath = "public/uploads/face/" + sys.argv[1] # cascPath = sys.argv[2] cascPath = "./data/haarcascades/haarcascade_frontalface_alt.xml" cascPath2 = "./data/haarcascades/haarcascade_f...
{ "repo_name": "fffy2366/image-processing", "path": "face.py", "copies": "1", "size": "2292", "license": "mit", "hash": -5106883350670480000, "line_mean": 26.4736842105, "line_max": 96, "alpha_frac": 0.6422413793, "autogenerated": false, "ratio": 2.1978947368421053, "config_test": false, "has_...
#!bin/evn python # -*-coding:utf8-*- ''' name:face.py $ python face.py input.jpg ''' import sys import cv2 # Get user supplied values imagePath = "../../public/uploads/face/" + sys.argv[1] # cascPath = sys.argv[2] #cascPath = "../../data/haarcascades/haarcascade_frontalface_alt.xml" cascPath = "../../data/haarcascades...
{ "repo_name": "fffy2366/image-processing", "path": "bin/python/face.py", "copies": "1", "size": "1286", "license": "mit", "hash": -3285955806555763700, "line_mean": 22.6666666667, "line_max": 99, "alpha_frac": 0.696400626, "autogenerated": false, "ratio": 2.4158790170132325, "config_test": fals...
#!bin/evn python # -*- coding: utf-8 -*- """ auth: jaypei email: jaypei97159@gmail.com 例程: from somelib import logger # 默认log存放目录,需要在程序入口调用才能生效,可省略 logger.log_dir = "./app" # log文件名前缀,需要在程序入口调用才能生效,可省略 logger.log_name = "test_log" conf = logger.Logger() conf.debug('debug') conf.warn('tr-warn') conf.info('ds-info...
{ "repo_name": "fffy2366/image-processing", "path": "bin/python/utils/logger.py", "copies": "2", "size": "4425", "license": "mit", "hash": 5283398361472369000, "line_mean": 26.0126582278, "line_max": 93, "alpha_frac": 0.5917506445, "autogenerated": false, "ratio": 3.264728385615914, "config_test...
#!bin/evn python # -*-coding:utf8-*- import cv import math ''' http://www.cnblogs.com/xianglan/archive/2010/12/26/1917247.html ''' def LRotate(image,angle): h = image.height w = image.width anglePi = angle*math.pi/180.0 cosA = math.cos(anglePi) sinA = math.sin(anglePi) X1 = math.ceil(abs(0.5*...
{ "repo_name": "fffy2366/image-processing", "path": "tests/python/rotate.py", "copies": "1", "size": "1270", "license": "mit", "hash": 7864995395747348000, "line_mean": 28.5581395349, "line_max": 78, "alpha_frac": 0.625984252, "autogenerated": false, "ratio": 2.2557726465364123, "config_test": f...
#!bin/evn python # -*-coding:utf8-*- ''' 检测眼睛 name:eyedetect.py $ python eyedetect.py ''' import sys import cv2 from bin.python.models.images import Images import threading import multiprocessing imgDir = "/Users/fengxuting/Downloads/photo/photo_pass/photo_pass/" def detecteyes(img, cascade): rects = cascade.det...
{ "repo_name": "fffy2366/image-processing", "path": "eyedetect.py", "copies": "1", "size": "3069", "license": "mit", "hash": 8002305377652068000, "line_mean": 27.9484536082, "line_max": 128, "alpha_frac": 0.6277164232, "autogenerated": false, "ratio": 2.4884751773049647, "config_test": false, ...
#!bin/evn python # -*-coding:utf8-*- ''' [Python-OpenCV 处理图像(八):图像二值化处理](https://segmentfault.com/a/1190000003755115) 0x02. cv.Threshold cv.Threshold(src, dst, threshold, maxValue, thresholdType) 函数 cvThreshold 对单通道数组应用固定阈值操作。 该函数的典型应用是对灰度图像进行阈值操作得到二值图像。 参数说明: 全选复制放进笔记src:原始数组 (单通道 , 8-bit of 32-bit 浮点数)。 dst:输出数组...
{ "repo_name": "fffy2366/image-processing", "path": "tests/python/threshold.py", "copies": "1", "size": "1959", "license": "mit", "hash": 8645709027098821000, "line_mean": 32.4693877551, "line_max": 95, "alpha_frac": 0.6741915802, "autogenerated": false, "ratio": 1.856172140430351, "config_test"...
#!bin/evn python # -*-coding:utf8-*- ''' 从数据库选取图片 批量检测人脸 name:batchface.py $ python batchface.py ''' import sys import cv2 from bin.python.models.images import Images import threading import multiprocessing # imgDir = "/Users/fengxuting/Downloads/photo/photo_del/photo_del/" imgDir = "D:/photo/photo_pass/" def show(na...
{ "repo_name": "fffy2366/image-processing", "path": "batchface.py", "copies": "1", "size": "4176", "license": "mit", "hash": -8307194126648309000, "line_mean": 28.2170542636, "line_max": 103, "alpha_frac": 0.605626327, "autogenerated": false, "ratio": 2.443579766536965, "config_test": false, "...
#!bin/evn python # -*-coding:utf8-*- ''' 从数据库选取图片 批量鉴黄 name:batchnude.py $ python batchnude.py $ nohup python batchnude.py & ''' import os import sys import cv2 import threading import multiprocessing from PIL import Image from nude import Nude from bin.python.models.images import Images from bin.python.config.config i...
{ "repo_name": "fffy2366/image-processing", "path": "batchnude.py", "copies": "1", "size": "7945", "license": "mit", "hash": 8810099029662821000, "line_mean": 30.0255319149, "line_max": 105, "alpha_frac": 0.5233849952, "autogenerated": false, "ratio": 2.7817626859977107, "config_test": false, ...
__author__ = 'feng' import os import shutil #文件目录 ori_dir = "/Users/fengxuting/Downloads/" #目标目录 dst_dir = "/Users/fengxuting/Downloads/mvtest" ### 创建多层目录 def mkdirs(path): # 去除首位空格 path=path.strip() # 去除尾部 \ 符号 path=path.rstrip("\\") # 判断路径是否存在 # 存在 True # 不存在 False isExists=os.p...
{ "repo_name": "fffy2366/image-processing", "path": "tests/python/mv.py", "copies": "1", "size": "1033", "license": "mit", "hash": -7677722335823541000, "line_mean": 17.6086956522, "line_max": 58, "alpha_frac": 0.5707602339, "autogenerated": false, "ratio": 2.1375, "config_test": false, "has_n...
__author__ = 'feng' import os import sys import logging import cv2 import numpy as np reload(sys) sys.setdefaultencoding('utf-8') # 创建一个logger logger = logging.getLogger('mylogger') logger.setLevel(logging.DEBUG) # 创建一个handler,用于写入日志文件 fh = logging.FileHandler('y.log') fh.setLevel(logging.DEBUG) # 再创建一个handler,用于输出到...
{ "repo_name": "fffy2366/image-processing", "path": "tests/python/filelist.py", "copies": "1", "size": "1947", "license": "mit", "hash": 7157115347126501000, "line_mean": 20.6904761905, "line_max": 85, "alpha_frac": 0.6046128501, "autogenerated": false, "ratio": 2.4023746701846966, "config_test"...
#!bin/evn python # encoding:utf-8 from __future__ import print_function import os from nude import Nude import time import cv2 from PIL import Image ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) # 人脸识别 排除人脸 def facedetect(file): # Get user supplied values imagePath = file...
{ "repo_name": "fffy2366/image-processing", "path": "bin/python/testnude.py", "copies": "1", "size": "1648", "license": "mit", "hash": -6983963961968204000, "line_mean": 22.8805970149, "line_max": 83, "alpha_frac": 0.650625, "autogenerated": false, "ratio": 2.5974025974025974, "config_test": fal...
#!bin/evn python # encoding:utf-8 from __future__ import print_function import os import sys from nude import Nude import time import cv2 from PIL import Image as image ROOT = os.path.dirname(os.path.abspath(__file__)) print('start waiting', time.strftime('%H:%M:%S'), '\n<br/>') ''' 从数据库选取图片 批量鉴黄 name:batchnude.py ...
{ "repo_name": "fffy2366/image-processing", "path": "nudedetect.py", "copies": "1", "size": "6737", "license": "mit", "hash": -4267238480108070400, "line_mean": 28.5747663551, "line_max": 105, "alpha_frac": 0.5226734081, "autogenerated": false, "ratio": 2.819153674832962, "config_test": false, ...
# !/bin/evn python from datetime import datetime from flask import Flask, render_template, url_for from flask import request from flask import make_response from flask import redirect from flask import abort from flask_script import Manager from flask_moment import Moment from flask_wtf import Form from wtforms impor...
{ "repo_name": "gitgitcode/myflask", "path": "hello.py", "copies": "1", "size": "2375", "license": "mit", "hash": 3972440113907124000, "line_mean": 23.4845360825, "line_max": 94, "alpha_frac": 0.6606315789, "autogenerated": false, "ratio": 3.3170391061452515, "config_test": false, "has_no_keyw...
#!/bin/evn python import urllib2 import json import time import traceback import requests from flask import Flask, request, render_template from jparser import PageModel app = Flask(__name__) @app.route("/") def index(): return render_template("index.html") @app.route("/parser", methods=["GET","POST"]) def pars...
{ "repo_name": "fxsjy/jparser", "path": "serv.py", "copies": "1", "size": "1374", "license": "mit", "hash": 3991423070789774300, "line_mean": 29.5333333333, "line_max": 146, "alpha_frac": 0.5727802038, "autogenerated": false, "ratio": 3.523076923076923, "config_test": false, "has_no_keywords":...
# Bin examples. import pygame from ocempgui.widgets import * from ocempgui.widgets.Constants import * class PivotBin (Bin): """PivotBin (widget) -> OwnBin A Bin implementation example class. This class does not support real rotations of widgets. Instead it simply rotates their image surface and displ...
{ "repo_name": "prim/ocempgui", "path": "doc/examples/bin.py", "copies": "1", "size": "3262", "license": "bsd-2-clause", "hash": -4288348632150236700, "line_mean": 34.8461538462, "line_max": 80, "alpha_frac": 0.6051502146, "autogenerated": false, "ratio": 4.275229357798165, "config_test": false,...
#!/bin/false -- # do not execute! # # foxLanguagesBase.py - base class for foxLanguages classes. # class foxLanguagesBase(object): # # define the names that all foxLanguages* classes must define: # # comment -> either a single string for comment-line-start, # or a tuple of ( comment-block-start, com...
{ "repo_name": "darkfoxprime/foxCAT", "path": "src/foxLanguagesBase.py", "copies": "1", "size": "4064", "license": "isc", "hash": -8182346021461466000, "line_mean": 33.1512605042, "line_max": 74, "alpha_frac": 0.5856299213, "autogenerated": false, "ratio": 3.7490774907749076, "config_test": fals...
#!/bin/false -- # do not execute! # # foxLanguagesPython - the Python language definitions # for the parser and lexer generation. from foxLanguagesBase import * class foxLanguagesPython(foxLanguagesBase): """Python bindings for the foxLanguages class for generating lexers and parsers.""" comment = u'#' extensi...
{ "repo_name": "darkfoxprime/foxCAT", "path": "src/foxLanguagesPython.py", "copies": "1", "size": "25729", "license": "isc", "hash": -5779099214010141000, "line_mean": 40.9722675367, "line_max": 396, "alpha_frac": 0.6456527654, "autogenerated": false, "ratio": 3.9989120298414673, "config_test": ...
#!/bin/false # -*- coding: utf-8 -*- import sys sys.path.append("/pub/home/aspid43/lxml/lib/python2.6/site-packages/lxml-2.2.4-py2.6-freebsd-8.1-RELEASE-amd64.egg/") import sqlite3 import cgi import cgitb cgitb.enable() from os import environ from Cookie import SimpleCookie from exceptions import Exception from urlli...
{ "repo_name": "veprbl/wikichords", "path": "common.py", "copies": "1", "size": "7482", "license": "mit", "hash": 6806741271741970000, "line_mean": 26.0872727273, "line_max": 464, "alpha_frac": 0.5733655524, "autogenerated": false, "ratio": 3.081919735208937, "config_test": false, "has_no_keyw...
import pinutils; info = { 'name' : "ST NUCLEO-F401RE", 'link' : [ "http://www.st.com/web/catalog/tools/FM116/SC959/SS1532/LN1847/PF260000"], 'default_console' : "EV_SERIAL2", # USART2 by default, the Nucleo's USB is actually running on this too 'default_console_tx' : "A2", # USART2_TX on PA2, 'default_console_rx...
{ "repo_name": "mjdietzx/Espruino", "path": "boards/NUCLEOF401RE.py", "copies": "3", "size": "4608", "license": "mpl-2.0", "hash": -5647142870883693000, "line_mean": 36.762295082, "line_max": 144, "alpha_frac": 0.5598003039, "autogenerated": false, "ratio": 2.563717306622148, "config_test": fals...
import pinutils; info = { 'name' : "ST NUCLEO-F401RE", 'link' : [ "http://www.st.com/web/catalog/tools/FM116/SC959/SS1532/LN1847/PF260000"], 'default_console' : "EV_SERIAL2", # USART2 by default, the Nucleo's USB is actually running on this too 'default_console_tx' : "A2", # USART2_TX on PA2, 'default_conso...
{ "repo_name": "0xPIT/Espruino", "path": "boards/NUCLEOF401RE.py", "copies": "1", "size": "4467", "license": "mpl-2.0", "hash": -4701554285960109000, "line_mean": 39.2342342342, "line_max": 144, "alpha_frac": 0.5703090013, "autogenerated": false, "ratio": 2.591990713871155, "config_test": false,...
import pinutils; info = { 'name' : "ST NUCLEO-F411RE", 'link' : [ "http://www.st.com/web/catalog/tools/FM116/SC959/SS1532/LN1847/PF260320"], 'default_console' : "EV_SERIAL2", # USART2 by default, the Nucleo's USB is actually running on this too 'default_console_tx' : "A2", # USART2_TX on PA2, 'default_console_rx...
{ "repo_name": "redbear/Espruino", "path": "boards/NUCLEOF411RE.py", "copies": "3", "size": "4612", "license": "mpl-2.0", "hash": -948988154307422300, "line_mean": 36.7950819672, "line_max": 144, "alpha_frac": 0.5599653004, "autogenerated": false, "ratio": 2.564516129032258, "config_test": false...
import pinutils; info = { 'name' : "ST NUCLEO-F411RE", 'link' : [ "http://www.st.com/web/catalog/tools/FM116/SC959/SS1532/LN1847/PF260320"], 'default_console' : "EV_SERIAL2", # USART2 by default, the Nucleo's USB is actually running on this too 'default_console_tx' : "A2", # USART2_TX on PA2, 'default_conso...
{ "repo_name": "aethaniel/Espruino", "path": "boards/NUCLEOF411RE.py", "copies": "3", "size": "4643", "license": "mpl-2.0", "hash": -8997550627948188000, "line_mean": 38.6752136752, "line_max": 144, "alpha_frac": 0.5650581646, "autogenerated": false, "ratio": 2.5831942125765166, "config_test": f...
import pinutils; info = { 'name' : "ST NUCLEO-F413ZH", 'link' : [ "http://www.st.com/web/catalog/tools/FM116/SC959/SS1532/LN1847/PF260320"], 'default_console' : "EV_SERIAL3", # USART3 by default, the Nucleo's USB is actually running on this too 'default_console_tx' : "D8", # USART2_TX on PD8, 'default_console_rx...
{ "repo_name": "lancernet/Espruino", "path": "boards/NUCLEOF413ZH.py", "copies": "4", "size": "4957", "license": "mpl-2.0", "hash": -3682752881406382000, "line_mean": 35.9850746269, "line_max": 144, "alpha_frac": 0.5583131558, "autogenerated": false, "ratio": 2.549382716049383, "config_test": fa...
# ***** WARNING: The support for the EMW3165 is in development, WIFI in particular does # ***** *not* work yet. import pinutils; info = { 'name' : "EMW3165", 'link' : [ "http://www.mxchip.com/wireless/downloadcenter/wifi/32.html"], 'default_console' : "EV_SERIAL2", # USART2 by default, the WifiMCU has...
{ "repo_name": "AlexanderBrevig/Espruino", "path": "boards/EMW3165.py", "copies": "1", "size": "3473", "license": "mpl-2.0", "hash": 4653995663511894000, "line_mean": 35.5473684211, "line_max": 102, "alpha_frac": 0.6036866359, "autogenerated": false, "ratio": 2.797743755036261, "config_test": fa...
import pinutils; info = { 'name' : "ST NUCLEO-L476RG", 'link' : [ "http://www.st.com/content/st_com/en/products/evaluation-tools/product-evaluation-tools/mcu-eval-tools/stm32-mcu-eval-tools/stm32-mcu-nucleo/nucleo-l476rg.html"], 'default_console' : "EV_SERIAL2", # USART2 by default, the Nucleo's USB is actually ru...
{ "repo_name": "luetgendorf/Espruino", "path": "boards/NUCLEOL476RG.py", "copies": "3", "size": "4893", "license": "mpl-2.0", "hash": 6045631540464976000, "line_mean": 36.6384615385, "line_max": 175, "alpha_frac": 0.56509299, "autogenerated": false, "ratio": 2.549765502866076, "config_test": fal...
# An xchat plugin to warn when someone references you directly # License: LGPLv2 # Author: # http://www.pixelbeat.org/ # Notes: # Put this in ~/.xchat2/ dir to autoload. # This plugin requires that xchat-python is installed # Changes: # V1.0, 02 Dec 2005, Initial release # V2.1, 14 Aug 2011, # htt...
{ "repo_name": "rezapx/private", "path": "nano_nano/scripts/scripts/xchat_warn.py", "copies": "1", "size": "1555", "license": "apache-2.0", "hash": -7103231316410742000, "line_mean": 27.7962962963, "line_max": 76, "alpha_frac": 0.6778135048, "autogenerated": false, "ratio": 3.1287726358148893, "...
#!/bin/false import pinutils; import json; info = { 'name': "EFM32 GG STK", 'link': [ "https://www.silabs.com/products/mcu/lowpower/Pages/efm32gg-stk3700.aspx" ], 'variables': 1720, 'binary_name': 'espruino_%v_efm32ggstk.bin', 'default_console' : "EV_SERIAL4", 'default_console_tx' : "E0", 'default_consol...
{ "repo_name": "lancernet/Espruino", "path": "boards/EFM32GGSTK.py", "copies": "4", "size": "1120", "license": "mpl-2.0", "hash": -612374398800206100, "line_mean": 23.347826087, "line_max": 134, "alpha_frac": 0.56875, "autogenerated": false, "ratio": 2.3779193205944797, "config_test": false, "...
#!/bin/false #Robot control module from Adafruit_MotorHAT import Adafruit_MotorHAT, Adafruit_DCMotor, Adafruit_StepperMotor import time import atexit mh = Adafruit_MotorHAT(addr = 0x60) def turnOffMotors(): mh.getMotor(1).run(Adafruit_MotorHAT.RELEASE) mh.getMotor(2).run(Adafruit_MotorHAT.RELEASE)...
{ "repo_name": "maciekgajewski/raspberry-adventures", "path": "5/robot.py", "copies": "1", "size": "1473", "license": "mit", "hash": 1158689972175489500, "line_mean": 24.3965517241, "line_max": 88, "alpha_frac": 0.7196198235, "autogenerated": false, "ratio": 2.5796847635726796, "config_test": fa...
# This file is part of Espruino, a JavaScript interpreter for Microcontrollers # # Copyright (C) 2013 Gordon Williams <gw@pur3.co.uk> # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozill...
{ "repo_name": "wilberforce/Espruino", "path": "scripts/common.py", "copies": "1", "size": "17475", "license": "mpl-2.0", "hash": -8871121360670763000, "line_mean": 41.2101449275, "line_max": 205, "alpha_frac": 0.5845493562, "autogenerated": false, "ratio": 3.6976301311891664, "config_test": fal...
import pinutils; info = { 'name' : "ARMinARM addon board for Raspberry Pi B+", 'link' : [ "https://www.onandoffables.com/" ], 'variables' : 3250, 'binary_name' : 'espruino_%v_ARMinARM.bin', 'build' : { 'optimizeflags' : '-Os', 'libraries' : [ 'NET', 'GRAPHICS', 'NEOPIXEL' 'FILESYSTEM' ...
{ "repo_name": "luetgendorf/Espruino", "path": "boards/ARMINARM.py", "copies": "6", "size": "2171", "license": "mpl-2.0", "hash": -3210965644324108000, "line_mean": 30.0142857143, "line_max": 91, "alpha_frac": 0.5163519116, "autogenerated": false, "ratio": 2.772669220945083, "config_test": false...
import pinutils; import json; info = { 'name' : "Leaflabs Maple Mini", 'link' : [ "http://leaflabs.com/docs/hardware/maple-mini.html" ], 'variables' : 715, 'binary_name' : 'espruino_%v_maplemini.bin', 'build' : { } }; chip = { 'part' : "STM32F103CB", #T6 'family' : "STM32F1", 'package' : "LQFP48", 'ram'...
{ "repo_name": "jasonkajita/Espruino", "path": "boards/MAPLEMINI.py", "copies": "6", "size": "3213", "license": "mpl-2.0", "hash": 3600724282054688300, "line_mean": 28.2090909091, "line_max": 155, "alpha_frac": 0.502334267, "autogenerated": false, "ratio": 2.5081967213114753, "config_test": fals...
import os; import pinutils; info = { 'name' : "ESP8266", 'espruino_page_link' : 'EspruinoESP8266', 'default_console' : "EV_SERIAL1", 'default_console_baudrate' : "115200", 'variables' : 1600, 'binary_name' : 'espruino_%v_esp8266_4mb', 'build' : { 'libraries' : [ 'NET', 'TELNET',...
{ "repo_name": "luetgendorf/Espruino", "path": "boards/ESP8266_4MB.py", "copies": "1", "size": "3067", "license": "mpl-2.0", "hash": -8496133929257444000, "line_mean": 24.5583333333, "line_max": 91, "alpha_frac": 0.5493968047, "autogenerated": false, "ratio": 2.7432915921288012, "config_test": f...
import os; import pinutils; info = { 'name' : "ESP8266", 'espruino_page_link' : 'EspruinoESP8266', 'default_console' : "EV_SERIAL1", 'default_console_baudrate' : "115200", 'variables' : 1400, 'binary_name' : 'espruino_%v_esp8266_4mb', 'build' : { 'libraries' : [ 'NET', 'TELNET'...
{ "repo_name": "lancernet/Espruino", "path": "boards/ESP8266_4MB.py", "copies": "1", "size": "2783", "license": "mpl-2.0", "hash": 5282788545666345000, "line_mean": 23.4122807018, "line_max": 91, "alpha_frac": 0.5468918433, "autogenerated": false, "ratio": 2.763654419066534, "config_test": false...
import pinutils; import json; import copy; info = { 'name' : "Embedded PI / COOCOX", 'link' : [ "http://coocox.org" ], 'variables' : 715, 'binary_name' : 'espruino_%v_embedded_pi.bin', 'build' : { 'optimizeflags' : '-Os', 'libraries' : [ ], 'makefile' : [ 'SAVE_ON_FLASH=1', 'STLIB=STM32F10X...
{ "repo_name": "lancernet/Espruino", "path": "boards/EMBEDDED_PI.py", "copies": "6", "size": "4574", "license": "mpl-2.0", "hash": -2291809656290429000, "line_mean": 22.6994818653, "line_max": 140, "alpha_frac": 0.490380411, "autogenerated": false, "ratio": 2.418826017979905, "config_test": fals...
import pinutils; import json; import copy; info = { 'name' : "Embedded PI / COOCOX", 'link' : [ "http://coocox.org" ], 'variables' : 715, 'binary_name' : 'espruino_%v_embedded_pi.bin', }; chip = { 'part' : "STM32F103RB", #T6 'family' : "STM32F1", 'package' : "LQFP64", 'ram' : 20, 'flash' : 128, 'speed...
{ "repo_name": "plumbum/Espruino", "path": "boards/EMBEDDED_PI.py", "copies": "9", "size": "4365", "license": "mpl-2.0", "hash": -6132288205118610000, "line_mean": 22.722826087, "line_max": 140, "alpha_frac": 0.4856815578, "autogenerated": false, "ratio": 2.4263479710950526, "config_test": false...
import pinutils; import json; info = { 'name' : "Haoyu HY-TinySTM103T", 'link' : [ "http://www.hotmcu.com/stm32f103tb-arm-cortex-m3-development-board-p-222.html" ], 'variables' : 1020, 'binary_name' : 'espruino_%v_hytiny_stm103t.bin', 'build' : { 'defines' : [ 'USE_GRAPHICS' ] } }; chip = { 'part' ...
{ "repo_name": "redbear/Espruino", "path": "boards/HYTINY_STM103T.py", "copies": "6", "size": "2537", "license": "mpl-2.0", "hash": 338566512972612160, "line_mean": 25.9893617021, "line_max": 97, "alpha_frac": 0.541978715, "autogenerated": false, "ratio": 2.629015544041451, "config_test": false,...
import pinutils; import json; info = { 'name' : "Leaflabs Maple RET6", 'link' : [ "https://www.olimex.com/Products/Duino/STM32/OLIMEXINO-STM32/", "http://leaflabs.com/devices/maple/" ], 'variables' : 3250, 'binary_name' : 'espruino_%v_mapleret6_stm32.bin', 'build' : { 'defines' : [ 'USE_NET', 'USE_G...
{ "repo_name": "mjdietzx/Espruino", "path": "boards/MAPLERET6_STM32.py", "copies": "6", "size": "4428", "license": "mpl-2.0", "hash": 7950099556235568000, "line_mean": 21.7076923077, "line_max": 117, "alpha_frac": 0.4954832882, "autogenerated": false, "ratio": 2.4464088397790054, "config_test": ...
import pinutils; import json; info = { 'name' : "Olimexino STM32 / Leaflabs Maple", 'link' : [ "https://www.olimex.com/Products/Duino/STM32/OLIMEXINO-STM32/", "http://leaflabs.com/devices/maple/" ], 'variables' : 1020, 'binary_name' : 'espruino_%v_olimexino_stm32.bin', 'build' : { 'defines' : [ 'USE_FILE...
{ "repo_name": "jasonkajita/Espruino", "path": "boards/OLIMEXINO_STM32.py", "copies": "1", "size": "4508", "license": "mpl-2.0", "hash": 4667993168114345000, "line_mean": 23.3675675676, "line_max": 117, "alpha_frac": 0.4968944099, "autogenerated": false, "ratio": 2.45, "config_test": false, "h...
import pinutils; import json; info = { 'name' : "Olimexino STM32 / Leaflabs Maple (with bootloader)", 'link' : [ "https://www.olimex.com/Products/Duino/STM32/OLIMEXINO-STM32/", "http://leaflabs.com/devices/maple/" ], 'variables' : 254, }; chip = { 'part' : "STM32F103RB", #T6 'family' : "STM32F1", 'package' ...
{ "repo_name": "nkolban/Espruino", "path": "boards/OLIMEXINO_STM32_BOOTLOADER.py", "copies": "7", "size": "4247", "license": "mpl-2.0", "hash": -155027927476673920, "line_mean": 23.408045977, "line_max": 117, "alpha_frac": 0.4937603014, "autogenerated": false, "ratio": 2.4436133486766396, "confi...
import pinutils import json info = { 'name': 'Olimexino STM32 / Leaflabs Maple with STM32F103RET', 'link': ['https://www.olimex.com/Products/Duino/STM32/OLIMEXINO-STM32/', 'http://leaflabs.com/devices/maple/'], 'variables': 3250, 'binary_name': 'espruino_%v_olimexino_stm32_re.bin', 'build' : { 'defines' : [ ...
{ "repo_name": "muet/Espruino", "path": "boards/OLIMEXINO_STM32_RE.py", "copies": "6", "size": "4169", "license": "mpl-2.0", "hash": -6339495378497715000, "line_mean": 22.6875, "line_max": 115, "alpha_frac": 0.5025185896, "autogenerated": false, "ratio": 2.465405085748078, "config_test": false, ...
import pinutils; import json; info = { 'name' : "STM32 F3 Discovery", 'link' : [ "http://www.st.com/web/catalog/tools/FM116/SC959/SS1532/PF254044" ], 'variables' : 1720, 'binary_name' : 'espruino_%v_stm32f3discovery.bin', 'build' : { 'defines' : [ 'USE_GRAPHICS', 'USE_NET', ] } }; chip = { 'par...
{ "repo_name": "redbear/Espruino", "path": "boards/STM32F3DISCOVERY.py", "copies": "6", "size": "4137", "license": "mpl-2.0", "hash": 1908499885224851500, "line_mean": 28.9782608696, "line_max": 153, "alpha_frac": 0.4551607445, "autogenerated": false, "ratio": 2.434961742201295, "config_test": f...
import pinutils; info = { 'name' : "Arduino Mega 2560", 'default_console' : "EV_SERIAL1", 'variables' : 1023, 'binary_name' : 'espruino_%v_arduinomega2560', }; chip = { 'part' : "ATMEGA2560", 'family' : "AVR", 'package' : "", 'ram' : 32, 'flash' : 256, 'speed' : 16, 'usart' : 1, 'spi' : 0, 'i2c' ...
{ "repo_name": "tdautc19841202/Espruino", "path": "boards/ARDUINOMEGA2560.py", "copies": "9", "size": "1300", "license": "mpl-2.0", "hash": -3281643115120862700, "line_mean": 26.0833333333, "line_max": 91, "alpha_frac": 0.56, "autogenerated": false, "ratio": 3.2338308457711444, "config_test": fa...
import pinutils; info = { 'name' : "Arietta G25", 'default_console' : "EV_USBSERIAL", 'binary_name' : 'espruino_%v_arietta', 'build' : { 'defines' : [ 'USE_NET', 'USE_GRAPHICS', 'USE_FILESYSTEM', 'USE_CRYPTO', 'USE_TLS' ] } }; chip = { 'part' : "ARMV5TEJL", 'family' : "LINUX", ...
{ "repo_name": "muet/Espruino", "path": "boards/ARIETTA_G25.py", "copies": "6", "size": "1540", "license": "mpl-2.0", "hash": -8467149138183393000, "line_mean": 28.0566037736, "line_max": 91, "alpha_frac": 0.5597402597, "autogenerated": false, "ratio": 3.0985915492957745, "config_test": false, ...
import pinutils; info = { 'name' : "Arietta G25", 'default_console' : "EV_USBSERIAL", 'binary_name' : 'espruino_%v_arietta', 'build' : { 'optimizeflags' : '-O3', 'libraries' : [ 'NET', 'GRAPHICS', 'FILESYSTEM', 'CRYPTO', 'TLS', 'HASHLIB', 'TELNET', ], 'makefile' : [ ...
{ "repo_name": "wilberforce/Espruino", "path": "boards/ARIETTA_G25.py", "copies": "4", "size": "1689", "license": "mpl-2.0", "hash": 5665312466534776000, "line_mean": 27.15, "line_max": 91, "alpha_frac": 0.5529899349, "autogenerated": false, "ratio": 3.0653357531760435, "config_test": false, "...
import pinutils; info = { 'name' : "Arietta G25", 'default_console' : "EV_USBSERIAL", 'binary_name' : 'espruino_%v_arietta', }; chip = { 'part' : "ARMV5TEJL", 'family' : "LINUX", 'package' : "", 'ram' : -1, 'flash' : -1, 'speed' : -1, 'usart' : 0, 'spi' : 1, 'i2c' : 0, 'adc' : 0, 'dac' : 0, };...
{ "repo_name": "plumbum/Espruino", "path": "boards/ARIETTA_G25.py", "copies": "9", "size": "1442", "license": "mpl-2.0", "hash": -8848394622094262000, "line_mean": 28.4489795918, "line_max": 91, "alpha_frac": 0.5672676838, "autogenerated": false, "ratio": 3.1279826464208242, "config_test": false...
import pinutils; info = { 'name' : "Beaglebone Black", 'default_console' : "EV_USBSERIAL", 'binary_name' : 'espruino_%v_beaglebone', 'build' : { 'defines' : [ 'USE_NET', 'USE_GRAPHICS', 'USE_FILESYSTEM', 'USE_CRYPTO', 'USE_TLS' ] } }; chip = { 'part' : "BEAGLEBONEBLACK", 'family...
{ "repo_name": "nkolban/Espruino", "path": "boards/BEAGLEBONE_BLACK.py", "copies": "6", "size": "1452", "license": "mpl-2.0", "hash": -3302009849027928600, "line_mean": 27.4705882353, "line_max": 91, "alpha_frac": 0.5564738292, "autogenerated": false, "ratio": 3.1225806451612903, "config_test": ...
import pinutils; info = { 'name' : "Beaglebone Black", 'default_console' : "EV_USBSERIAL", 'binary_name' : 'espruino_%v_beaglebone', 'build' : { 'optimizeflags' : '-O3', 'libraries' : [ 'NET', 'GRAPHICS', 'FILESYSTEM', 'CRYPTO', 'TLS', 'HASHLIB', 'TELNET', ], 'makefil...
{ "repo_name": "luetgendorf/Espruino", "path": "boards/BEAGLEBONE_BLACK.py", "copies": "4", "size": "1608", "license": "mpl-2.0", "hash": -418200382788940700, "line_mean": 26.724137931, "line_max": 91, "alpha_frac": 0.5503731343, "autogenerated": false, "ratio": 3.0923076923076924, "config_test"...
import pinutils; info = { 'name' : "Beaglebone Black", 'default_console' : "EV_USBSERIAL", 'binary_name' : 'espruino_%v_beaglebone', }; chip = { 'part' : "BEAGLEBONEBLACK", 'family' : "LINUX", 'package' : "", 'ram' : -1, 'flash' : -1, 'speed' : -1, 'usart' : 0, 'spi' : 0, 'i2c' : 1, 'adc' : 0, ...
{ "repo_name": "AlexanderBrevig/Espruino", "path": "boards/BEAGLEBONE_BLACK.py", "copies": "1", "size": "1320", "license": "mpl-2.0", "hash": -5065396351821139000, "line_mean": 30.4285714286, "line_max": 91, "alpha_frac": 0.5689393939, "autogenerated": false, "ratio": 3.1884057971014492, "config...
import pinutils; info = { 'name' : "Carambola", 'default_console' : "EV_USBSERIAL", 'binary_name' : 'espruino_%v_raspberrypi', 'build' : { 'defines' : [ 'USE_NET', 'USE_GRAPHICS', 'USE_FILESYSTEM', 'USE_CRYPTO', 'USE_TLS' ] } }; chip = { 'part' : "CARAMBOLA", 'family' : "LINUX",...
{ "repo_name": "mjdietzx/Espruino", "path": "boards/CARAMBOLA.py", "copies": "6", "size": "1803", "license": "mpl-2.0", "hash": -2011770069524412400, "line_mean": 30.0862068966, "line_max": 91, "alpha_frac": 0.5740432612, "autogenerated": false, "ratio": 3.020100502512563, "config_test": false, ...
import pinutils; info = { 'name' : "Carambola", 'default_console' : "EV_USBSERIAL", 'binary_name' : 'espruino_%v_raspberrypi', 'build' : { 'libraries' : [ 'NET', 'GRAPHICS', 'FILESYSTEM', 'CRYPTO', 'TLS', 'HASHLIB', 'TELNET', ], 'makefile' : [ 'LINUX=1', '-DCAR...
{ "repo_name": "lancernet/Espruino", "path": "boards/CARAMBOLA.py", "copies": "4", "size": "1913", "license": "mpl-2.0", "hash": 442065329974887300, "line_mean": 28.890625, "line_max": 91, "alpha_frac": 0.566649242, "autogenerated": false, "ratio": 3.0031397174254315, "config_test": false, "ha...
import pinutils; info = { 'name' : "Carambola", 'default_console' : "EV_USBSERIAL", 'binary_name' : 'espruino_%v_raspberrypi', }; chip = { 'part' : "CARAMBOLA", 'family' : "LINUX", 'package' : "", 'ram' : -1, 'flash' : -1, 'speed' : -1, 'usart' : 1, 'spi' : 1, 'i2c' : 1, 'adc' : 0, 'dac' : 0, ...
{ "repo_name": "aethaniel/Espruino", "path": "boards/CARAMBOLA.py", "copies": "10", "size": "1706", "license": "mpl-2.0", "hash": -6769790591024139000, "line_mean": 30.5925925926, "line_max": 91, "alpha_frac": 0.580890973, "autogenerated": false, "ratio": 3.0355871886120998, "config_test": false...
import pinutils; info = { 'name' : "DPT-Board", 'default_console' : "EV_USBSERIAL", 'binary_name' : 'espruino', 'build' : { 'libraries' : [ 'NET', 'GRAPHICS', 'FILESYSTEM', 'CRYPTO', 'TLS', 'HASHLIB', 'TELNET', ], 'makefile' : [ 'LINUX=1', 'DEFINES += -DDPTBOAR...
{ "repo_name": "wilberforce/Espruino", "path": "boards/DPTBOARD.py", "copies": "4", "size": "1513", "license": "mpl-2.0", "hash": -4924779148167119000, "line_mean": 25.0862068966, "line_max": 91, "alpha_frac": 0.5426305354, "autogenerated": false, "ratio": 3.1586638830897704, "config_test": fals...
import pinutils; info = { 'name' : "DPT-Board", 'default_console' : "EV_USBSERIAL", 'binary_name' : 'espruino_%v_dpt_board', }; chip = { 'part' : "DPTBOARD", 'family' : "LINUX", 'package' : "", 'ram' : -1, 'flash' : -1, 'speed' : -1, 'usart' : 1, 'spi' : 1, 'i2c' : 1, 'adc' : 0, 'dac' : 0, }; ...
{ "repo_name": "dptechnics/Espruino", "path": "boards/DPTBOARD.py", "copies": "1", "size": "1240", "license": "mpl-2.0", "hash": -2076578496038640400, "line_mean": 25.3829787234, "line_max": 91, "alpha_frac": 0.5516129032, "autogenerated": false, "ratio": 3.2375979112271542, "config_test": false...
import pinutils; info = { 'name' : "ESP32", 'espruino_page_link' : 'ESP32', 'default_console' : "EV_SERIAL1", 'default_console_baudrate' : "115200", 'variables' : 5000, 'binary_name' : 'espruino_%v_esp32.bin', 'build' : { 'optimizeflags' : '-Og',...
{ "repo_name": "luetgendorf/Espruino", "path": "boards/ESP32.py", "copies": "2", "size": "4723", "license": "mpl-2.0", "hash": 48329767321632190, "line_mean": 29.0828025478, "line_max": 106, "alpha_frac": 0.5841626085, "autogenerated": false, "ratio": 2.7174913693901037, "config_test": false, ...
import pinutils; info = { 'name' : "ESP32", 'espruino_page_link' : 'EspruinoESP32', 'default_console' : "EV_SERIAL1", 'default_console_baudrate' : "115200", 'variables' : 5000, 'binary_name' : 'espruino_%v_esp32', 'build' : { 'defines' : [ '...
{ "repo_name": "nkolban/Espruino", "path": "boards/ESP32.py", "copies": "1", "size": "4403", "license": "mpl-2.0", "hash": -7557674689733104000, "line_mean": 23.1978021978, "line_max": 91, "alpha_frac": 0.577560754, "autogenerated": false, "ratio": 2.7062077443146895, "config_test": false, "ha...
import pinutils; info = { 'name' : "ESP8266 512KB", 'default_console' : "EV_SERIAL1", 'variables' : 1023, 'binary_name' : 'espruino_esp8266_board', }; chip = { 'part' : "ESP8266", 'family' : "ESP8266", 'package' : "", 'ram' : 80, 'flash' : 512, 'speed' : 80, 'usart' ...
{ "repo_name": "dptechnics/Espruino", "path": "boards/ESP8266_BOARD.py", "copies": "1", "size": "1652", "license": "mpl-2.0", "hash": 2735431038661950000, "line_mean": 29.0363636364, "line_max": 93, "alpha_frac": 0.5611380145, "autogenerated": false, "ratio": 3.207766990291262, "config_test": fa...
import pinutils; info = { 'name' : "ESP8266", 'default_console' : "EV_SERIAL1", 'variables' : 1023, 'binary_name' : 'espruino_esp8266_board', }; chip = { 'part' : "ESP8266", 'family' : "ESP8266", 'package' : "", 'ram' : 80, 'flash' : 512, 'speed' : 80, 'usart' : 1, ...
{ "repo_name": "vshymanskyy/Espruino", "path": "boards/ESP8266_BOARD.py", "copies": "1", "size": "1337", "license": "mpl-2.0", "hash": 6195545707929045000, "line_mean": 26.8541666667, "line_max": 91, "alpha_frac": 0.5362752431, "autogenerated": false, "ratio": 3.245145631067961, "config_test": f...
import pinutils; info = { 'name' : "ESP8266", 'espruino_page_link' : 'EspruinoESP8266', 'default_console' : "EV_SERIAL1", 'default_console_baudrate' : "115200", 'variables' : 1023, 'binary_name' : 'espruino_%v_esp8266', }; chip = { 'part' : "ESP8266", 'family' : "ESP8266", 'package...
{ "repo_name": "AlexanderBrevig/Espruino", "path": "boards/ESP8266_BOARD.py", "copies": "1", "size": "3262", "license": "mpl-2.0", "hash": -6573604694345214000, "line_mean": 23.5263157895, "line_max": 93, "alpha_frac": 0.5708154506, "autogenerated": false, "ratio": 2.707053941908714, "config_tes...
import pinutils; info = { 'name' : "ESP8266", 'espruino_page_link' : 'EspruinoESP8266', 'default_console' : "EV_SERIAL1", 'default_console_baudrate' : "115200", 'variables' : 1400, 'binary_name' : 'espruino_%v_esp8266', 'build' : { 'defines' : [ 'USE_NET' ] } }; chip = { 'part...
{ "repo_name": "jasonkajita/Espruino", "path": "boards/ESP8266_BOARD.py", "copies": "1", "size": "3159", "license": "mpl-2.0", "hash": -779764039831936300, "line_mean": 22.0583941606, "line_max": 91, "alpha_frac": 0.5571383349, "autogenerated": false, "ratio": 2.6816638370118846, "config_test": ...
import pinutils; info = { 'name' : "ESP8266", 'espruino_page_link' : 'EspruinoESP8266', 'default_console' : "EV_SERIAL1", 'default_console_baudrate' : "115200", 'variables' : 1600, 'binary_name' : 'espruino_%v_esp8266', 'build' : { 'libraries' : [ 'NET', 'TELNET', 'GRAPHIC...
{ "repo_name": "lancernet/Espruino", "path": "boards/ESP8266_BOARD.py", "copies": "1", "size": "3235", "license": "mpl-2.0", "hash": -490977954527603100, "line_mean": 21.7887323944, "line_max": 91, "alpha_frac": 0.5539412674, "autogenerated": false, "ratio": 2.684647302904564, "config_test": fal...
import pinutils; info = { 'name' : "ESP8266", 'espruino_page_link' : 'EspruinoESP8266', 'default_console' : "EV_SERIAL1", 'default_console_baudrate' : "115200", 'variables' : 1700, 'binary_name' : 'espruino_%v_esp8266', 'build' : { 'defines' : [ 'USE_NET', 'USE_TELNET', 'U...
{ "repo_name": "mjdietzx/Espruino", "path": "boards/ESP8266_BOARD.py", "copies": "3", "size": "3219", "license": "mpl-2.0", "hash": 5037102687209489000, "line_mean": 21.9928571429, "line_max": 91, "alpha_frac": 0.5557626592, "autogenerated": false, "ratio": 2.6802664446294755, "config_test": fal...
import pinutils; info = { 'name' : "Espruini Board rev 1.0", 'link' : [ "http://www.espruino.com/EspruinoBoard" ], 'default_console' : "EV_SERIAL1", 'default_console_tx' : "B6", 'default_console_rx' : "B7", 'variables' : 3040, 'binary_name' : 'espruino_%v_espruini_1r0.bin', }; chip = { 'part' : "STM32F401CCU6...
{ "repo_name": "0xPIT/Espruino", "path": "boards/ESPRUINIBOARD_R1_0.py", "copies": "1", "size": "3308", "license": "mpl-2.0", "hash": -4839697604696616000, "line_mean": 25.464, "line_max": 102, "alpha_frac": 0.5326481258, "autogenerated": false, "ratio": 2.590446358653093, "config_test": false, ...
import pinutils; info = { 'name' : "Espruino Board rev 1.0", 'link' : [ "http://www.espruino.com/EspruinoBoard" ], 'variables' : 2000, 'bootloader' : 0, 'serial_bootloader' : False, 'binary_name' : 'espruino_%v_espruino_1r0.bin', }; chip = { 'part' : "STM32F103RGT6", 'family' : "STM32F1", 'package' : "LQFP...
{ "repo_name": "femtoio/Espruino", "path": "boards/ESPRUINOBOARD_R1_0.py", "copies": "9", "size": "2617", "license": "mpl-2.0", "hash": 7097849543032507000, "line_mean": 27.1397849462, "line_max": 147, "alpha_frac": 0.4998089415, "autogenerated": false, "ratio": 2.4457943925233643, "config_test"...
import pinutils; info = { 'name' : "Espruino Board rev 1.0", 'link' : [ "http://www.espruino.com/kick" ], 'variables' : 2000, 'bootloader' : 0, 'serial_bootloader' : False, 'binary_name' : 'espruino_%v_espruino_1r0.bin', }; chip = { 'part' : "STM32F103RGT6", 'family' : "STM32F1", 'package' : "LQFP64", 'r...
{ "repo_name": "rwaldron/Espruino", "path": "boards/ESPRUINOBOARD_R1_0.py", "copies": "1", "size": "2608", "license": "mpl-2.0", "hash": 1059767056548652400, "line_mean": 27.0430107527, "line_max": 147, "alpha_frac": 0.4980828221, "autogenerated": false, "ratio": 2.4465290806754223, "config_test...
import pinutils; info = { 'name' : "Espruino Board rev 1.1", 'link' : [ "http://www.espruino.com/EspruinoBoard" ], 'variables' : 2000, 'bootloader' : 1, 'serial_bootloader' : True, 'binary_name' : 'espruino_%v_espruino_1r1.bin', }; chip = { 'part' : "STM32F103RCT6", 'family' : "STM32F1", 'package' : "LQFP6...
{ "repo_name": "femtoio/Espruino", "path": "boards/ESPRUINOBOARD_R1_1.py", "copies": "9", "size": "2644", "license": "mpl-2.0", "hash": -6027290480176495000, "line_mean": 27.7391304348, "line_max": 148, "alpha_frac": 0.5011346445, "autogenerated": false, "ratio": 2.461824953445065, "config_test"...
import pinutils; info = { 'name' : "Espruino Board rev 1.1", 'link' : [ "http://www.espruino.com/kick" ], 'variables' : 2000, 'bootloader' : 1, 'serial_bootloader' : True, 'binary_name' : 'espruino_%v_espruino_1r1.bin', }; chip = { 'part' : "STM32F103RCT6", 'family' : "STM32F1", 'package' : "LQFP64", 'ra...
{ "repo_name": "rwaldron/Espruino", "path": "boards/ESPRUINOBOARD_R1_1.py", "copies": "1", "size": "2630", "license": "mpl-2.0", "hash": 642564815315951000, "line_mean": 27.5869565217, "line_max": 148, "alpha_frac": 0.4992395437, "autogenerated": false, "ratio": 2.4694835680751175, "config_test"...
import pinutils; info = { 'name' : "Espruino Board rev 1.3/1.4", 'link' : [ "http://www.espruino.com/EspruinoBoard" ], 'default_console' : "EV_SERIAL1", 'default_console_tx' : "A9", 'default_console_rx' : "A10", 'variables' : 2250, 'bootloader' : 1, 'serial_bootloader' : True, 'binary_name' : 'espruino_%v_esp...
{ "repo_name": "femtoio/Espruino", "path": "boards/ESPRUINOBOARD.py", "copies": "1", "size": "3591", "license": "mpl-2.0", "hash": 8960861374494752000, "line_mean": 32.8773584906, "line_max": 212, "alpha_frac": 0.5413533835, "autogenerated": false, "ratio": 2.5129461161651503, "config_test": fal...
import pinutils; info = { 'name' : "Espruino Board rev 1.3/1.4", 'link' : [ "http://www.espruino.com/EspruinoBoard" ], 'espruino_page_link' : "EspruinoBoard", 'default_console' : "EV_SERIAL1", 'default_console_tx' : "A9", 'default_console_rx' : "A10", 'variables' : 2250, 'bootloader' : 1, 'serial_bootloader' ...
{ "repo_name": "muet/Espruino", "path": "boards/ESPRUINOBOARD.py", "copies": "5", "size": "4022", "license": "mpl-2.0", "hash": -3048320815542498000, "line_mean": 29.9384615385, "line_max": 212, "alpha_frac": 0.5330681253, "autogenerated": false, "ratio": 2.550412175015853, "config_test": false,...
import pinutils; info = { 'name' : "Espruino Board rev 1.3", 'link' : [ "http://www.espruino.com/EspruinoBoard" ], 'default_console' : "EV_SERIAL1", 'default_console_tx' : "A9", 'default_console_rx' : "A10", 'variables' : 2250, 'bootloader' : 1, 'serial_bootloader' : True, 'binary_name' : 'espruino_%v_espruin...
{ "repo_name": "aethaniel/Espruino", "path": "boards/ESPRUINOBOARD.py", "copies": "1", "size": "3253", "license": "mpl-2.0", "hash": 1974683427007857700, "line_mean": 31.2079207921, "line_max": 212, "alpha_frac": 0.5268982478, "autogenerated": false, "ratio": 2.5275835275835274, "config_test": f...
import pinutils; info = { 'name' : "Espruino Board rev 1.3", 'link' : [ "http://www.espruino.com/kick" ], 'variables' : 2000, 'bootloader' : 1, 'serial_bootloader' : True, 'binary_name' : 'espruino_%v_espruino_1r3.bin', }; chip = { 'part' : "STM32F103RCT6", 'family' : "STM32F1", 'package' : "LQFP64", 'ra...
{ "repo_name": "rwaldron/Espruino", "path": "boards/ESPRUINOBOARD.py", "copies": "1", "size": "2702", "license": "mpl-2.0", "hash": 731996083280405800, "line_mean": 27.7446808511, "line_max": 148, "alpha_frac": 0.4944485566, "autogenerated": false, "ratio": 2.463081130355515, "config_test": fals...
import pinutils; info = { 'name' : "Espruino Pico rev 1.0", 'link' : [ "http://www.espruino.com/Pico" ], 'default_console' : "EV_SERIAL1", 'default_console_tx' : "B6", 'default_console_rx' : "B7", 'variables' : 3040, 'binary_name' : 'espruino_%v_pico_1r0.bin', }; chip = { 'part' : "STM32F401CCU6", 'family' ...
{ "repo_name": "koltegirish/Espruino", "path": "boards/PICO_R1_0.py", "copies": "5", "size": "3290", "license": "mpl-2.0", "hash": -4322835685117139500, "line_mean": 25.32, "line_max": 102, "alpha_frac": 0.5306990881, "autogenerated": false, "ratio": 2.576350822239624, "config_test": false, "h...
import pinutils; info = { 'name' : "Espruino Pico rev 1.1", 'link' : [ "http://www.espruino.com/Pico" ], 'default_console' : "EV_SERIAL1", 'default_console_tx' : "B6", 'default_console_rx' : "B7", 'variables' : 3040, 'binary_name' : 'espruino_%v_pico_1r1.bin', }; chip = { 'part' : "STM32F401CCU6", 'family' ...
{ "repo_name": "aethaniel/Espruino", "path": "boards/PICO_R1_1.py", "copies": "3", "size": "3152", "license": "mpl-2.0", "hash": 7420506803858731000, "line_mean": 26.4086956522, "line_max": 102, "alpha_frac": 0.5336294416, "autogenerated": false, "ratio": 2.6398659966499163, "config_test": false...
import pinutils; info = { 'name' : "Espruino Pico rev 1.2", 'link' : [ "http://www.espruino.com/Pico" ], 'default_console' : "EV_SERIAL1", 'default_console_tx' : "B6", 'default_console_rx' : "B7", 'variables' : 3040, # 'bootloader' : 1, 'binary_name' : 'espruino_%v_pico_1r2.bin', }; chip = { 'part' : "STM32F4...
{ "repo_name": "aethaniel/Espruino", "path": "boards/PICO_R1_2.py", "copies": "1", "size": "3169", "license": "mpl-2.0", "hash": -1888384095777772300, "line_mean": 26.5565217391, "line_max": 102, "alpha_frac": 0.5329757021, "autogenerated": false, "ratio": 2.610378912685338, "config_test": false...
import pinutils; info = { 'name' : "Espruino Pico rev 1.3/1.4", 'link' : [ "http://www.espruino.com/Pico" ], 'espruino_page_link' : 'Pico', 'default_console' : "EV_SERIAL1", 'default_console_tx' : "B6", 'default_console_rx' : "B7", 'variables' : 5100, 'bootloader' : 1, 'binary_name' : 'espruino_%v_pico_1r3.bi...
{ "repo_name": "muet/Espruino", "path": "boards/PICO_R1_3.py", "copies": "5", "size": "4158", "license": "mpl-2.0", "hash": 3107013568291342300, "line_mean": 28.0769230769, "line_max": 104, "alpha_frac": 0.5524290524, "autogenerated": false, "ratio": 2.64, "config_test": false, "has_no_keyword...
import pinutils; info = { 'name' : "Espruino Pico rev 1.3", 'link' : [ "http://www.espruino.com/Pico" ], 'default_console' : "EV_SERIAL1", 'default_console_tx' : "B6", 'default_console_rx' : "B7", 'variables' : 3040, 'bootloader' : 1, 'binary_name' : 'espruino_%v_pico_1r3.bin', 'binaries' : [ { 'filename' :...
{ "repo_name": "femtoio/Espruino", "path": "boards/PICO_R1_3.py", "copies": "1", "size": "3501", "license": "mpl-2.0", "hash": 4605539432924713500, "line_mean": 28.175, "line_max": 106, "alpha_frac": 0.5464153099, "autogenerated": false, "ratio": 2.5933333333333333, "config_test": false, "has_...
import pinutils; info = { 'name' : "Espruino Pico rev 1.3", 'link' : [ "http://www.espruino.com/Pico" ], 'espruino_page_link' : 'Pico', 'default_console' : "EV_SERIAL1", 'default_console_tx' : "B6", 'default_console_rx' : "B7", 'variables' : 5100, 'bootloader' : 1, 'binary_name' : 'espruino_%v_pico_1r3.bin', ...
{ "repo_name": "AlexanderBrevig/Espruino", "path": "boards/PICO_R1_3.py", "copies": "1", "size": "3364", "license": "mpl-2.0", "hash": -2615398758438608400, "line_mean": 27.0333333333, "line_max": 104, "alpha_frac": 0.540725327, "autogenerated": false, "ratio": 2.5896843725943035, "config_test":...
import pinutils; info = { 'name' : "Espruino WiFi", 'link' : [ "http://www.espruino.com/EspruinoWiFi" ], 'espruino_page_link' : 'EspruinoWiFi', 'default_console' : "EV_SERIAL1", 'default_console_tx' : "B6", 'default_console_rx' : "B7", 'variables' : 5100, 'bootloader' : 1, 'binary_name' : 'espruino_%v_wifi.bi...
{ "repo_name": "mjdietzx/Espruino", "path": "boards/ESPRUINOWIFI.py", "copies": "3", "size": "3816", "license": "mpl-2.0", "hash": -3850939266570467300, "line_mean": 27.0588235294, "line_max": 98, "alpha_frac": 0.5298742138, "autogenerated": false, "ratio": 2.6299104066161267, "config_test": fal...
import pinutils; info = { 'name' : "Gordon's car ECU", 'link' : [ "http://www.st.com/web/catalog/tools/FM116/SC959/SS1532/LN1199/PF252419" ], 'default_console' : "EV_SERIAL1", 'default_console_tx' : "B6", 'default_console_rx' : "B7", 'default_console_baudrate' : "115200", 'variables' : 5450, 'util_timer_tasks...
{ "repo_name": "lancernet/Espruino", "path": "boards/ECU.py", "copies": "12", "size": "3825", "license": "mpl-2.0", "hash": -8958163287008557000, "line_mean": 29.6, "line_max": 157, "alpha_frac": 0.4645751634, "autogenerated": false, "ratio": 2.4301143583227445, "config_test": false, "has_no_k...
import pinutils; info = { 'name' : "HY-MiniSTM32V 3.2 inch LCD Board (VCT6)", 'link' : [ "http://www.hotmcu.com/hyministm32v-dev-board-32-tft-lcd-module-p-5.html" ], 'variables' : 2000, 'serial_bootloader' : True, 'binary_name' : 'espruino_%v_hystm32_32_vc.bin', 'build' : { 'defines' : [ 'USE_GRAPHICS', ...
{ "repo_name": "jasonkajita/Espruino", "path": "boards/HYSTM32_32.py", "copies": "6", "size": "4188", "license": "mpl-2.0", "hash": -4320466677148431000, "line_mean": 27.2972972973, "line_max": 151, "alpha_frac": 0.4479465138, "autogenerated": false, "ratio": 2.460634547591069, "config_test": fa...