Skip to content

Commit 3520615

Browse files
TheiaTheia
Theia
authored and
Theia
committed
Updates try and except statement for no weather alerts
1 parent 3a3dce3 commit 3520615

File tree

16 files changed

+1384
-2
lines changed

16 files changed

+1384
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Freeze the state of data-structures and objects for data-analysis or testing
2+
(diffing data-structures). Frozen data-structures consist of only tuples
3+
and these are comparable/sortable/hashable. The freeze() function can be used
4+
for many purposes for example implement __hash__() for your complex object
5+
very fast. dump() is intended for testing and analysis.
6+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pip
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
Metadata-Version: 2.0
2+
Name: freeze
3+
Version: 1.0.10
4+
Summary: Freeze - dump / hash / sort / compare / diff anything
5+
Home-page: https://github.com/adfinis-sygroup/freeze
6+
Author: Adfinis-SyGroup
7+
Author-email: https://adfinis-sygroup.ch/
8+
License: UNKNOWN
9+
Keywords: freeze state hash sort compare unittest
10+
Platform: UNKNOWN
11+
Classifier: Development Status :: 5 - Production/Stable
12+
Classifier: Environment :: Console
13+
Classifier: Intended Audience :: Developers
14+
Classifier: Intended Audience :: Education
15+
Classifier: Intended Audience :: Information Technology
16+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
17+
Classifier: Natural Language :: English
18+
Classifier: Operating System :: OS Independent
19+
Classifier: Programming Language :: Python :: 2.6
20+
Classifier: Programming Language :: Python :: 2.7
21+
Classifier: Programming Language :: Python :: 3.3
22+
Classifier: Programming Language :: Python :: 3.4
23+
Classifier: Programming Language :: Python :: 3.5
24+
Classifier: Topic :: Software Development :: Libraries
25+
Classifier: Topic :: Scientific/Engineering :: Information Analysis
26+
Classifier: Topic :: Software Development :: Testing
27+
Requires-Dist: six
28+
29+
Freeze the state of data-structures and objects for data-analysis or testing
30+
(diffing data-structures). Frozen data-structures consist of only tuples
31+
and these are comparable/sortable/hashable. The freeze() function can be used
32+
for many purposes for example implement __hash__() for your complex object
33+
very fast. dump() is intended for testing and analysis.
34+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
freeze/__init__.py,sha256=MmX2x_Eg-qYnLDQzxF09yEwt3GlINeGhqdwMr_ZtzF8,89
2+
freeze/fpprint.py,sha256=_6LG-k9rx2ze4IxlH07w0sj_d3-6saJz06id-dl-N00,14714
3+
freeze/version.py,sha256=5aODTxfsKH-7ZDiVzcmfHYikmn7X04NVM5_g_mgq2ZE,95
4+
freeze/xfreeze.py,sha256=-py8XKqo5PCo2lhW7ncxEsoQj5obivfJMoLp6kEqgz4,26175
5+
freeze-1.0.10.dist-info/DESCRIPTION.rst,sha256=la0Y6MZfst8yXZhmkqX9zwvIsqalJbLd0pO_aI-i0fQ,360
6+
freeze-1.0.10.dist-info/METADATA,sha256=U0AjYM_ziD0fwlCOUCAQO-ApveeGYKa75mhAXjhsMj8,1521
7+
freeze-1.0.10.dist-info/RECORD,,
8+
freeze-1.0.10.dist-info/WHEEL,sha256=BtVfdXUcEYLcFjOkbIrCFRyXU4qszVPt-E9o3RWkSNw,93
9+
freeze-1.0.10.dist-info/metadata.json,sha256=2nb0XIRWmKy58Yw2ItnJRdd46aj9k5FucCt7oB4U4dA,1256
10+
freeze-1.0.10.dist-info/top_level.txt,sha256=IldHutA4VR8rWraeKMy7qXajZoNwqexuqr-xojyK_cU,7
11+
freeze-1.0.10.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
12+
freeze/fpprint.pyc,,
13+
freeze/xfreeze.pyc,,
14+
freeze/__init__.pyc,,
15+
freeze/version.pyc,,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Wheel-Version: 1.0
2+
Generator: bdist_wheel (0.29.0)
3+
Root-Is-Purelib: true
4+
Tag: cp27-none-any
5+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"classifiers": ["Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Information Technology", "License :: OSI Approved :: GNU Affero General Public License v3", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Software Development :: Libraries", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Software Development :: Testing"], "extensions": {"python.details": {"contacts": [{"email": "https://adfinis-sygroup.ch/", "name": "Adfinis-SyGroup", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "https://github.com/adfinis-sygroup/freeze"}}}, "extras": [], "generator": "bdist_wheel (0.29.0)", "keywords": ["freeze", "state", "hash", "sort", "compare", "unittest"], "metadata_version": "2.0", "name": "freeze", "run_requires": [{"requires": ["six"]}], "summary": "Freeze - dump / hash / sort / compare / diff anything", "version": "1.0.10"}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
freeze
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Cython + Python 2.7 compatibilty
2+
from .xfreeze import * # noqa
3+
4+
# pylama:ignore=W0401
224 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)