first published version

get_list_of_videos
Mark Cotton 2023-07-20 09:43:50 -06:00
parent fe650b4837
commit b7b68d71e0
3 changed files with 12 additions and 18 deletions

1
.gitignore vendored
View File

@ -9,3 +9,4 @@ my_settings.py
.ipynb_checkpoints/* .ipynb_checkpoints/*
flask_session/ flask_session/
src/EagleEyev3.egg-info/ src/EagleEyev3.egg-info/
dist/

View File

@ -1,25 +1,14 @@
[build-system] [build-system]
requires = ["setuptools>=61.0.0", "wheel"] requires = ["flit_core >=3.2,<4"]
build-backend = "setuptools.build_meta" build-backend = "flit_core.buildapi"
[project] [project]
name = "EagleEyev3" name = "EagleEyev3"
version = "0.0.4" authors = [{name = "mcotton", email = "mcotton@mcottondesign.com"}]
description = "Helper library for Eagle Eye Networks API v3"
readme = "README.md" readme = "README.md"
authors = [{ name = "Mark Cotton", email = "mcotton@een.com" }] license = {file = "LICENSE"}
license = { file = "LICENSE" } classifiers = ["License :: OSI Approved :: MIT License"]
classifiers = [ dynamic = ["version", "description"]
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["EagleEye"]
dependencies = [
"pytz",
"requests",
]
requires-python = ">=3.6"
[project.urls] [project.urls]
Homepage = "https://mcotton.space" Home = "https://mcottondesign.com"

View File

@ -1,3 +1,7 @@
""" Python client for Eagle Eye Networks APIv3 """
__version__ = "0.0.4"
import json import json
import logging import logging
import requests import requests