repo
stringlengths
7
90
file_url
stringlengths
81
315
file_path
stringlengths
4
228
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 14:38:15
2026-01-05 02:33:18
truncated
bool
2 classes
Frojd/wagtail-geo-widget
https://github.com/Frojd/wagtail-geo-widget/blob/ec36d7bfcd551fc415f50e8b27bd8d68a013c445/tests/geopage/admin.py
tests/geopage/admin.py
python
MIT
ec36d7bfcd551fc415f50e8b27bd8d68a013c445
2026-01-05T07:13:00.652315Z
false
Frojd/wagtail-geo-widget
https://github.com/Frojd/wagtail-geo-widget/blob/ec36d7bfcd551fc415f50e8b27bd8d68a013c445/tests/geopage/models.py
tests/geopage/models.py
from django.contrib.gis.db import models from django.utils.functional import cached_property from django.utils.translation import gettext as _ from modelcluster.fields import ParentalKey from wagtail import blocks from wagtail.admin.panels import ( FieldPanel, InlinePanel, MultiFieldPanel, ObjectList, ...
python
MIT
ec36d7bfcd551fc415f50e8b27bd8d68a013c445
2026-01-05T07:13:00.652315Z
false
Frojd/wagtail-geo-widget
https://github.com/Frojd/wagtail-geo-widget/blob/ec36d7bfcd551fc415f50e8b27bd8d68a013c445/tests/geopage/__init__.py
tests/geopage/__init__.py
python
MIT
ec36d7bfcd551fc415f50e8b27bd8d68a013c445
2026-01-05T07:13:00.652315Z
false
Frojd/wagtail-geo-widget
https://github.com/Frojd/wagtail-geo-widget/blob/ec36d7bfcd551fc415f50e8b27bd8d68a013c445/tests/geopage/tests.py
tests/geopage/tests.py
python
MIT
ec36d7bfcd551fc415f50e8b27bd8d68a013c445
2026-01-05T07:13:00.652315Z
false
Frojd/wagtail-geo-widget
https://github.com/Frojd/wagtail-geo-widget/blob/ec36d7bfcd551fc415f50e8b27bd8d68a013c445/tests/geopage/apps.py
tests/geopage/apps.py
from django.apps import AppConfig class GeopageConfig(AppConfig): name = "tests.geopage"
python
MIT
ec36d7bfcd551fc415f50e8b27bd8d68a013c445
2026-01-05T07:13:00.652315Z
false
Frojd/wagtail-geo-widget
https://github.com/Frojd/wagtail-geo-widget/blob/ec36d7bfcd551fc415f50e8b27bd8d68a013c445/tests/geopage/migrations/0001_initial.py
tests/geopage/migrations/0001_initial.py
# Generated by Django 4.2.23 on 2025-08-14 04:41 import django.contrib.gis.db.models.fields from django.db import migrations, models import django.db.models.deletion import modelcluster.fields import wagtail.fields class Migration(migrations.Migration): initial = True dependencies = [ ("wagtailcore...
python
MIT
ec36d7bfcd551fc415f50e8b27bd8d68a013c445
2026-01-05T07:13:00.652315Z
false
Frojd/wagtail-geo-widget
https://github.com/Frojd/wagtail-geo-widget/blob/ec36d7bfcd551fc415f50e8b27bd8d68a013c445/tests/geopage/migrations/__init__.py
tests/geopage/migrations/__init__.py
python
MIT
ec36d7bfcd551fc415f50e8b27bd8d68a013c445
2026-01-05T07:13:00.652315Z
false
Frojd/wagtail-geo-widget
https://github.com/Frojd/wagtail-geo-widget/blob/ec36d7bfcd551fc415f50e8b27bd8d68a013c445/tests/search/views.py
tests/search/views.py
from django.core.paginator import EmptyPage, PageNotAnInteger, Paginator from django.shortcuts import render from wagtail.contrib.search_promotions.models import Query from wagtail.models import Page def search(request): search_query = request.GET.get("query", None) page = request.GET.get("page", 1) # Se...
python
MIT
ec36d7bfcd551fc415f50e8b27bd8d68a013c445
2026-01-05T07:13:00.652315Z
false
Frojd/wagtail-geo-widget
https://github.com/Frojd/wagtail-geo-widget/blob/ec36d7bfcd551fc415f50e8b27bd8d68a013c445/tests/search/__init__.py
tests/search/__init__.py
python
MIT
ec36d7bfcd551fc415f50e8b27bd8d68a013c445
2026-01-05T07:13:00.652315Z
false
Frojd/wagtail-geo-widget
https://github.com/Frojd/wagtail-geo-widget/blob/ec36d7bfcd551fc415f50e8b27bd8d68a013c445/wagtailgeowidget/panels.py
wagtailgeowidget/panels.py
from wagtail.admin.panels import FieldPanel from wagtailgeowidget import geocoders from wagtailgeowidget.app_settings import GEO_WIDGET_ZOOM from wagtailgeowidget.widgets import GeocoderField, GoogleMapsField, LeafletField class GoogleMapsPanel(FieldPanel): def __init__(self, *args, **kwargs): self.class...
python
MIT
ec36d7bfcd551fc415f50e8b27bd8d68a013c445
2026-01-05T07:13:00.652315Z
false
Frojd/wagtail-geo-widget
https://github.com/Frojd/wagtail-geo-widget/blob/ec36d7bfcd551fc415f50e8b27bd8d68a013c445/wagtailgeowidget/blocks.py
wagtailgeowidget/blocks.py
from django import forms from django.utils.functional import cached_property from wagtail.blocks import FieldBlock, IntegerBlock from wagtailgeowidget import geocoders from wagtailgeowidget.helpers import geosgeometry_str_to_struct from wagtailgeowidget.widgets import GeocoderField, GoogleMapsField, LeafletField cla...
python
MIT
ec36d7bfcd551fc415f50e8b27bd8d68a013c445
2026-01-05T07:13:00.652315Z
false
Frojd/wagtail-geo-widget
https://github.com/Frojd/wagtail-geo-widget/blob/ec36d7bfcd551fc415f50e8b27bd8d68a013c445/wagtailgeowidget/widgets.py
wagtailgeowidget/widgets.py
import json import uuid from django import forms from django.forms import widgets from django.utils.functional import cached_property from django.utils.html import format_html from django.utils.safestring import mark_safe from django.utils.translation import gettext as _ from wagtail import VERSION as WAGTAIL_VERSION ...
python
MIT
ec36d7bfcd551fc415f50e8b27bd8d68a013c445
2026-01-05T07:13:00.652315Z
false
Frojd/wagtail-geo-widget
https://github.com/Frojd/wagtail-geo-widget/blob/ec36d7bfcd551fc415f50e8b27bd8d68a013c445/wagtailgeowidget/helpers.py
wagtailgeowidget/helpers.py
import re from typing import Dict, Optional geos_ptrn = re.compile( r"^SRID=([0-9]{1,});POINT\s?\((-?[0-9\.]{1,})\s(-?[0-9\.]{1,})\)$" ) def geosgeometry_str_to_struct(value: str) -> Optional[Dict]: """ Parses a geosgeometry string into struct. Example: SRID=5432;POINT(12.0 13.0) Returns...
python
MIT
ec36d7bfcd551fc415f50e8b27bd8d68a013c445
2026-01-05T07:13:00.652315Z
false
Frojd/wagtail-geo-widget
https://github.com/Frojd/wagtail-geo-widget/blob/ec36d7bfcd551fc415f50e8b27bd8d68a013c445/wagtailgeowidget/geocoders.py
wagtailgeowidget/geocoders.py
NOMINATIM = "nominatim" GOOGLE_MAPS = "google_maps" GOOGLE_MAPS_PLACES = "google_maps_places" GOOGLE_MAPS_PLACES_NEW = "google_maps_places_new" MAPBOX = "mapbox"
python
MIT
ec36d7bfcd551fc415f50e8b27bd8d68a013c445
2026-01-05T07:13:00.652315Z
false
Frojd/wagtail-geo-widget
https://github.com/Frojd/wagtail-geo-widget/blob/ec36d7bfcd551fc415f50e8b27bd8d68a013c445/wagtailgeowidget/__init__.py
wagtailgeowidget/__init__.py
#!/usr/bin/env python """ wagtailgeowidget ---------- Wagtail-Geo-Widget is the complete map solution for your Wagtail site. """ __title__ = "wagtailgeowidget" __version__ = "9.1.0" __build__ = 901 __author__ = "Martin Sandström" __license__ = "MIT" __copyright__ = "Copyright 2015-Present Fröjd Interactive"
python
MIT
ec36d7bfcd551fc415f50e8b27bd8d68a013c445
2026-01-05T07:13:00.652315Z
false
Frojd/wagtail-geo-widget
https://github.com/Frojd/wagtail-geo-widget/blob/ec36d7bfcd551fc415f50e8b27bd8d68a013c445/wagtailgeowidget/apps.py
wagtailgeowidget/apps.py
from django.apps import AppConfig class WagtailgeowidgetConfig(AppConfig): name = "wagtailgeowidget"
python
MIT
ec36d7bfcd551fc415f50e8b27bd8d68a013c445
2026-01-05T07:13:00.652315Z
false
Frojd/wagtail-geo-widget
https://github.com/Frojd/wagtail-geo-widget/blob/ec36d7bfcd551fc415f50e8b27bd8d68a013c445/wagtailgeowidget/app_settings.py
wagtailgeowidget/app_settings.py
from django.conf import settings GEO_WIDGET_DEFAULT_LOCATION = getattr( settings, "GEO_WIDGET_DEFAULT_LOCATION", {"lat": 59.3293, "lng": 18.0686} ) GEO_WIDGET_EMPTY_LOCATION = getattr(settings, "GEO_WIDGET_EMPTY_LOCATION", False) GEO_WIDGET_ZOOM = getattr(settings, "GEO_WIDGET_ZOOM", 7) GEO_WIDGET_LEAFLET_TILE_LA...
python
MIT
ec36d7bfcd551fc415f50e8b27bd8d68a013c445
2026-01-05T07:13:00.652315Z
false
Frojd/wagtail-geo-widget
https://github.com/Frojd/wagtail-geo-widget/blob/ec36d7bfcd551fc415f50e8b27bd8d68a013c445/wagtailgeowidget/migrations/__init__.py
wagtailgeowidget/migrations/__init__.py
python
MIT
ec36d7bfcd551fc415f50e8b27bd8d68a013c445
2026-01-05T07:13:00.652315Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/setup.py
setup.py
import sys from distutils.core import setup setup( name = 'loophole', packages = ['loophole', 'loophole.polar', 'loophole.polar.pb'], version = '0.5.2', description = 'Polar devices Python API and CLI.', author = 'Radoslaw Matusiak', author_email = 'radoslaw.matusiak@gmail.com', url = 'https://github.com...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/__main__.py
loophole/__main__.py
#!/usr/bin/env python __author__ = 'Radoslaw Matusiak' __copyright__ = 'Copyright (c) 2016 Radoslaw Matusiak' __license__ = 'MIT' __version__ = '0.5' import cmd import functools import os import sys from polar import Device from polar.pb import device_pb2 as pb_device __INTRO = """ _| ...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/__init__.py
loophole/__init__.py
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/__init__.py
loophole/polar/__init__.py
#!/usr/bin/env python __author__ = 'Radoslaw Matusiak' __copyright__ = 'Copyright (c) 2016 Radoslaw Matusiak' __license__ = 'MIT' __version__ = '0.5' from collections import namedtuple import os import time import pb.pftp_response_pb2 as pb_resp import pb.pftp_request_pb2 as pb_req PFTP_ERROR = {0: ...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/dailysummary_pb2.py
loophole/polar/pb/dailysummary_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: dailysummary.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/exercise_stats_pb2.py
loophole/polar/pb/exercise_stats_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: exercise_stats.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
true
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/user_test_prefs_pb2.py
loophole/polar/pb/user_test_prefs_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: user_test_prefs.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection a...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/structures_pb2.py
loophole/polar/pb/structures_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: structures.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _re...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
true
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/exercise_sensors_pb2.py
loophole/polar/pb/exercise_sensors_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: exercise_sensors.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection ...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/pftp_response_pb2.py
loophole/polar/pb/pftp_response_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: pftp/pftp_response.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflectio...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/training_session_target_pb2.py
loophole/polar/pb/training_session_target_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: training_session_target.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import refl...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/poi_pb2.py
loophole/polar/pb/poi_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: poi.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _reflectio...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/sportprofile_avalon_settings_pb2.py
loophole/polar/pb/sportprofile_avalon_settings_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: sportprofile_avalon_settings.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/sportprofile_mclaren_settings_pb2.py
loophole/polar/pb/sportprofile_mclaren_settings_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: sportprofile_mclaren_settings.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf impor...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/errors_pb2.py
loophole/polar/pb/errors_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: errors.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _reflec...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/exercise_samples_pb2.py
loophole/polar/pb/exercise_samples_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: exercise_samples.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection ...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
true
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/user_devset_pb2.py
loophole/polar/pb/user_devset_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: user_devset.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _r...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
true
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/exercise_phases_pb2.py
loophole/polar/pb/exercise_phases_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: exercise_phases.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection a...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/pftp_error_pb2.py
loophole/polar/pb/pftp_error_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: pftp/pftp_error.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf.internal import enum_type_wrapper from google.protobuf import descriptor as _descriptor from google.protobuf import messa...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/map_information_pb2.py
loophole/polar/pb/map_information_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: map_information.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection a...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/exercise_samples2_pb2.py
loophole/polar/pb/exercise_samples2_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: data/exercise_samples2.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import refle...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/sportprofile_guitar_settings_pb2.py
loophole/polar/pb/sportprofile_guitar_settings_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: sportprofile_guitar_settings.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/act_dailygoal_pb2.py
loophole/polar/pb/act_dailygoal_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: act_dailygoal.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as ...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/user_id_pb2.py
loophole/polar/pb/user_id_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: user_id.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _refle...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/orthostatictestresult_pb2.py
loophole/polar/pb/orthostatictestresult_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: orthostatictestresult.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflec...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/recovery_times_pb2.py
loophole/polar/pb/recovery_times_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: recovery_times.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/exercise_route2_pb2.py
loophole/polar/pb/exercise_route2_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: data/exercise_route2.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflect...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/sport_pb2.py
loophole/polar/pb/sport_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: sport.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _reflect...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/exercise_route_pb2.py
loophole/polar/pb/exercise_route_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: data/exercise_route.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflecti...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/sportprofile_astra_settings_pb2.py
loophole/polar/pb/sportprofile_astra_settings_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: sportprofile_astra_settings.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import ...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/user_prefs_pb2.py
loophole/polar/pb/user_prefs_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: user_prefs.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _re...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/sportprofile_archer_settings_pb2.py
loophole/polar/pb/sportprofile_archer_settings_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: sportprofile_archer_settings.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/exercise_targetinfo_pb2.py
loophole/polar/pb/exercise_targetinfo_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: exercise_targetinfo.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflecti...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/training_session_pb2.py
loophole/polar/pb/training_session_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: training_session.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection ...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/personalbest_pb2.py
loophole/polar/pb/personalbest_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: personalbest.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/pftp_request_pb2.py
loophole/polar/pb/pftp_request_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: pftp/pftp_request.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf.internal import enum_type_wrapper from google.protobuf import descriptor as _descriptor from google.protobuf import mes...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/exercise_base_pb2.py
loophole/polar/pb/exercise_base_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: exercise_base.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as ...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/user_physdata_pb2.py
loophole/polar/pb/user_physdata_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: user_physdata.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as ...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
true
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/syncinfo_pb2.py
loophole/polar/pb/syncinfo_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: syncinfo.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _refl...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/pftp_notification_pb2.py
loophole/polar/pb/pftp_notification_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: pftp/pftp_notification.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf.internal import enum_type_wrapper from google.protobuf import descriptor as _descriptor from google.protobuf impor...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
true
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/user_database_pb2.py
loophole/polar/pb/user_database_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: user_database.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as ...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/identification_pb2.py
loophole/polar/pb/identification_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: identification.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/act_samples_pb2.py
loophole/polar/pb/act_samples_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: act_samples.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _r...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/team_member_pb2.py
loophole/polar/pb/team_member_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: team_member.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _r...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/nanopb_pb2.py
loophole/polar/pb/nanopb_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: nanopb.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _reflec...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/sportprofile_pb2.py
loophole/polar/pb/sportprofile_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: sportprofile.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf.internal import enum_type_wrapper from google.protobuf import descriptor as _descriptor from google.protobuf import message ...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
true
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/__init__.py
loophole/polar/pb/__init__.py
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/exercise_phases_reps_pb2.py
loophole/polar/pb/exercise_phases_reps_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: exercise_phases_reps.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflect...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/planned_route_pb2.py
loophole/polar/pb/planned_route_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: planned_route.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as ...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/swimming_samples_pb2.py
loophole/polar/pb/swimming_samples_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: swimming_samples.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection ...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/types_pb2.py
loophole/polar/pb/types_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: types.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf.internal import enum_type_wrapper from google.protobuf import descriptor as _descriptor from google.protobuf import message as _mes...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
true
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/gpsalmanacinfo_pb2.py
loophole/polar/pb/gpsalmanacinfo_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: gpsalmanacinfo.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/bluetooth_device_pb2.py
loophole/polar/pb/bluetooth_device_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: bluetooth_device.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf.internal import enum_type_wrapper from google.protobuf import descriptor as _descriptor from google.protobuf import mess...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/exercise_laps_pb2.py
loophole/polar/pb/exercise_laps_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: exercise_laps.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as ...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/rr_recordtestresult_pb2.py
loophole/polar/pb/rr_recordtestresult_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: rr_recordtestresult.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflecti...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/exercise_zones_pb2.py
loophole/polar/pb/exercise_zones_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: exercise_zones.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/sportprofile_maserati_settings_pb2.py
loophole/polar/pb/sportprofile_maserati_settings_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: sportprofile_maserati_settings.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf impo...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/device_pb2.py
loophole/polar/pb/device_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: device.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _reflec...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/sportprofile_ace_settings_pb2.py
loophole/polar/pb/sportprofile_ace_settings_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: sportprofile_ace_settings.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import re...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/exercise_rr_samples_pb2.py
loophole/polar/pb/exercise_rr_samples_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: exercise_rr_samples.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflecti...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
rsc-dev/loophole
https://github.com/rsc-dev/loophole/blob/f9389c73f06b419c97ad32847346663a30d80225/loophole/polar/pb/jumptest_pb2.py
loophole/polar/pb/jumptest_pb2.py
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: jumptest.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _refl...
python
MIT
f9389c73f06b419c97ad32847346663a30d80225
2026-01-05T07:13:01.675884Z
false
c0redumb/yahoo_quote_download
https://github.com/c0redumb/yahoo_quote_download/blob/06a3c2d0d88be4bb491d4a1c89e40f4f0fd78eec/setup.py
setup.py
from setuptools import setup # Load version import yahoo_quote_download version = yahoo_quote_download.__version__ #print("Version :", version) # Load README.md as long description with open("README.md", "r") as fh: long_description = fh.read() setup(name='yahoo_quote_download', version=version, desc...
python
BSD-2-Clause
06a3c2d0d88be4bb491d4a1c89e40f4f0fd78eec
2026-01-05T07:13:02.327066Z
false
c0redumb/yahoo_quote_download
https://github.com/c0redumb/yahoo_quote_download/blob/06a3c2d0d88be4bb491d4a1c89e40f4f0fd78eec/tests/test_yqd.py
tests/test_yqd.py
# -*- coding: utf-8 -*- """ test_yqd.py - YQD tester Created on May 20 2017 @author: c0redumb """ from yahoo_quote_download import yqd, validater def load_quote(ticker): print('===', ticker, '===') print(yqd.load_yahoo_quote(ticker, '20181201', '20181231')) print(yqd.load_yahoo_quote(ticker, '20181201', ...
python
BSD-2-Clause
06a3c2d0d88be4bb491d4a1c89e40f4f0fd78eec
2026-01-05T07:13:02.327066Z
false
c0redumb/yahoo_quote_download
https://github.com/c0redumb/yahoo_quote_download/blob/06a3c2d0d88be4bb491d4a1c89e40f4f0fd78eec/yahoo_quote_download/validater.py
yahoo_quote_download/validater.py
# -*- coding: utf-8 -*- """ validate.py - Trivial data validater Created on December 24, 2019 @author: c0redumb """ # To make print working for Python2/3 from __future__ import print_function def validate(ticker, data, begindate='1920-01-01', verbose=0): ''' This function perform a query and extract the matc...
python
BSD-2-Clause
06a3c2d0d88be4bb491d4a1c89e40f4f0fd78eec
2026-01-05T07:13:02.327066Z
false
c0redumb/yahoo_quote_download
https://github.com/c0redumb/yahoo_quote_download/blob/06a3c2d0d88be4bb491d4a1c89e40f4f0fd78eec/yahoo_quote_download/yqd.py
yahoo_quote_download/yqd.py
# -*- coding: utf-8 -*- """ yqd.py - Yahoo Quote Downloader Created on May 18 2017 @author: c0redumb """ # To make print working for Python2/3 from __future__ import print_function # Use six to import urllib so it is working for Python2/3 from six.moves import urllib # If you don't want to use six, please comment out...
python
BSD-2-Clause
06a3c2d0d88be4bb491d4a1c89e40f4f0fd78eec
2026-01-05T07:13:02.327066Z
false
c0redumb/yahoo_quote_download
https://github.com/c0redumb/yahoo_quote_download/blob/06a3c2d0d88be4bb491d4a1c89e40f4f0fd78eec/yahoo_quote_download/downloader.py
yahoo_quote_download/downloader.py
# -*- coding: utf-8 -*- """ downloader.py - Commandline downloader Created on December 25, 2019 @author: c0redumb """ import os import time import datetime import traceback import argparse from yahoo_quote_download import yqd, validater, __version__ def main(): # parse arguments parser = argparse.ArgumentPa...
python
BSD-2-Clause
06a3c2d0d88be4bb491d4a1c89e40f4f0fd78eec
2026-01-05T07:13:02.327066Z
false
c0redumb/yahoo_quote_download
https://github.com/c0redumb/yahoo_quote_download/blob/06a3c2d0d88be4bb491d4a1c89e40f4f0fd78eec/yahoo_quote_download/__init__.py
yahoo_quote_download/__init__.py
__version__ = '0.3.2'
python
BSD-2-Clause
06a3c2d0d88be4bb491d4a1c89e40f4f0fd78eec
2026-01-05T07:13:02.327066Z
false
cloud-custodian/cel-python
https://github.com/cloud-custodian/cel-python/blob/3a134c10394058c73a6bbe0e4ca7e862ea9707b3/tools/gherkinize.py
tools/gherkinize.py
# SPDX-Copyright: Copyright (c) Capital One Services, LLC # SPDX-License-Identifier: Apache-2.0 # Copyright 2025 The Cloud Custodian Authors # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # ...
python
Apache-2.0
3a134c10394058c73a6bbe0e4ca7e862ea9707b3
2026-01-05T07:13:01.631050Z
true
cloud-custodian/cel-python
https://github.com/cloud-custodian/cel-python/blob/3a134c10394058c73a6bbe0e4ca7e862ea9707b3/tools/test_gherkinize.py
tools/test_gherkinize.py
# SPDX-Copyright: Copyright (c) Capital One Services, LLC # SPDX-License-Identifier: Apache-2.0 # Copyright 2020 Capital One Services, LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
python
Apache-2.0
3a134c10394058c73a6bbe0e4ca7e862ea9707b3
2026-01-05T07:13:01.631050Z
true
cloud-custodian/cel-python
https://github.com/cloud-custodian/cel-python/blob/3a134c10394058c73a6bbe0e4ca7e862ea9707b3/src/xlate/__init__.py
src/xlate/__init__.py
python
Apache-2.0
3a134c10394058c73a6bbe0e4ca7e862ea9707b3
2026-01-05T07:13:01.631050Z
false
cloud-custodian/cel-python
https://github.com/cloud-custodian/cel-python/blob/3a134c10394058c73a6bbe0e4ca7e862ea9707b3/src/xlate/c7n_to_cel.py
src/xlate/c7n_to_cel.py
# SPDX-Copyright: Copyright (c) Capital One Services, LLC # SPDX-License-Identifier: Apache-2.0 # Copyright 2020 Capital One Services, LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
python
Apache-2.0
3a134c10394058c73a6bbe0e4ca7e862ea9707b3
2026-01-05T07:13:01.631050Z
true
cloud-custodian/cel-python
https://github.com/cloud-custodian/cel-python/blob/3a134c10394058c73a6bbe0e4ca7e862ea9707b3/src/celpy/celtypes.py
src/celpy/celtypes.py
# SPDX-Copyright: Copyright (c) Capital One Services, LLC # SPDX-License-Identifier: Apache-2.0 # Copyright 2020 Capital One Services, LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
python
Apache-2.0
3a134c10394058c73a6bbe0e4ca7e862ea9707b3
2026-01-05T07:13:01.631050Z
true
cloud-custodian/cel-python
https://github.com/cloud-custodian/cel-python/blob/3a134c10394058c73a6bbe0e4ca7e862ea9707b3/src/celpy/__main__.py
src/celpy/__main__.py
# SPDX-Copyright: Copyright (c) Capital One Services, LLC # SPDX-License-Identifier: Apache-2.0 # Copyright 2020 Capital One Services, LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
python
Apache-2.0
3a134c10394058c73a6bbe0e4ca7e862ea9707b3
2026-01-05T07:13:01.631050Z
false
cloud-custodian/cel-python
https://github.com/cloud-custodian/cel-python/blob/3a134c10394058c73a6bbe0e4ca7e862ea9707b3/src/celpy/evaluation.py
src/celpy/evaluation.py
# SPDX-Copyright: Copyright (c) Capital One Services, LLC # SPDX-License-Identifier: Apache-2.0 # Copyright 2020 Capital One Services, LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
python
Apache-2.0
3a134c10394058c73a6bbe0e4ca7e862ea9707b3
2026-01-05T07:13:01.631050Z
true
cloud-custodian/cel-python
https://github.com/cloud-custodian/cel-python/blob/3a134c10394058c73a6bbe0e4ca7e862ea9707b3/src/celpy/__init__.py
src/celpy/__init__.py
# SPDX-Copyright: Copyright (c) Capital One Services, LLC # SPDX-License-Identifier: Apache-2.0 # Copyright 2020 Capital One Services, LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
python
Apache-2.0
3a134c10394058c73a6bbe0e4ca7e862ea9707b3
2026-01-05T07:13:01.631050Z
false
cloud-custodian/cel-python
https://github.com/cloud-custodian/cel-python/blob/3a134c10394058c73a6bbe0e4ca7e862ea9707b3/src/celpy/c7nlib.py
src/celpy/c7nlib.py
# SPDX-Copyright: Copyright (c) Capital One Services, LLC # SPDX-License-Identifier: Apache-2.0 # Copyright 2020 Capital One Services, LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
python
Apache-2.0
3a134c10394058c73a6bbe0e4ca7e862ea9707b3
2026-01-05T07:13:01.631050Z
true
cloud-custodian/cel-python
https://github.com/cloud-custodian/cel-python/blob/3a134c10394058c73a6bbe0e4ca7e862ea9707b3/src/celpy/celparser.py
src/celpy/celparser.py
# SPDX-Copyright: Copyright (c) Capital One Services, LLC # SPDX-License-Identifier: Apache-2.0 # Copyright 2020 Capital One Services, LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
python
Apache-2.0
3a134c10394058c73a6bbe0e4ca7e862ea9707b3
2026-01-05T07:13:01.631050Z
false
cloud-custodian/cel-python
https://github.com/cloud-custodian/cel-python/blob/3a134c10394058c73a6bbe0e4ca7e862ea9707b3/src/celpy/adapter.py
src/celpy/adapter.py
# SPDX-Copyright: Copyright (c) Capital One Services, LLC # SPDX-License-Identifier: Apache-2.0 # Copyright 2020 Capital One Services, LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
python
Apache-2.0
3a134c10394058c73a6bbe0e4ca7e862ea9707b3
2026-01-05T07:13:01.631050Z
false
cloud-custodian/cel-python
https://github.com/cloud-custodian/cel-python/blob/3a134c10394058c73a6bbe0e4ca7e862ea9707b3/tests/test_adapter.py
tests/test_adapter.py
# SPDX-Copyright: Copyright (c) Capital One Services, LLC # SPDX-License-Identifier: Apache-2.0 # Copyright 2020 Capital One Services, LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
python
Apache-2.0
3a134c10394058c73a6bbe0e4ca7e862ea9707b3
2026-01-05T07:13:01.631050Z
false
cloud-custodian/cel-python
https://github.com/cloud-custodian/cel-python/blob/3a134c10394058c73a6bbe0e4ca7e862ea9707b3/tests/test_celtypes.py
tests/test_celtypes.py
# SPDX-Copyright: Copyright (c) Capital One Services, LLC # SPDX-License-Identifier: Apache-2.0 # Copyright 2020 Capital One Services, LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
python
Apache-2.0
3a134c10394058c73a6bbe0e4ca7e862ea9707b3
2026-01-05T07:13:01.631050Z
false
cloud-custodian/cel-python
https://github.com/cloud-custodian/cel-python/blob/3a134c10394058c73a6bbe0e4ca7e862ea9707b3/tests/test_parser.py
tests/test_parser.py
# SPDX-Copyright: Copyright (c) Capital One Services, LLC # SPDX-License-Identifier: Apache-2.0 # Copyright 2020 Capital One Services, LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
python
Apache-2.0
3a134c10394058c73a6bbe0e4ca7e862ea9707b3
2026-01-05T07:13:01.631050Z
false
cloud-custodian/cel-python
https://github.com/cloud-custodian/cel-python/blob/3a134c10394058c73a6bbe0e4ca7e862ea9707b3/tests/test_evaluation.py
tests/test_evaluation.py
# SPDX-Copyright: Copyright (c) Capital One Services, LLC # SPDX-License-Identifier: Apache-2.0 # Copyright 2020 Capital One Services, LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # ...
python
Apache-2.0
3a134c10394058c73a6bbe0e4ca7e862ea9707b3
2026-01-05T07:13:01.631050Z
true