diff --git a/dist/veracross_api-0.1.tar.gz b/dist/veracross_api-0.1.tar.gz new file mode 100644 index 0000000..e39e65f Binary files /dev/null and b/dist/veracross_api-0.1.tar.gz differ diff --git a/dist/veracross_api-0.2.tar.gz b/dist/veracross_api-0.2.tar.gz new file mode 100644 index 0000000..5eb3da9 Binary files /dev/null and b/dist/veracross_api-0.2.tar.gz differ diff --git a/veracross_api.egg-info/PKG-INFO b/veracross_api.egg-info/PKG-INFO new file mode 100644 index 0000000..dc9e466 --- /dev/null +++ b/veracross_api.egg-info/PKG-INFO @@ -0,0 +1,47 @@ +Metadata-Version: 2.1 +Name: veracross-api +Version: 0.2 +Summary: Simple library for interacting with the Veracross API +Home-page: https://github.com/beckf/veracross_api +Author: Forrest Beck +Author-email: forrest.beck@da.org +License: MIT License +Download-URL: https://github.com/beckf/veracross_api/archive/v.02.tar.gz +Description: # Veracross API Python Library + Provides an easy way to pull information from the Veracross API in Python. + + Rate limiting and pagination will be handled automatically. + + Usage Example: + ```python + import veracross_api as v + + c = {'vcurl': 'https://api.veracross.com/XschoolshortnameX/v2', + 'vcuser': 'username', + 'vcpass': 'password' + } + + vc = v.Veracross(c) + data = vc.pull("facstaff") + print(data) + data = vc.pull("facstaff/99999") + print(data) + data = vc.pull("facstaff", "updated_after=2018-05-01") + print(data) + ``` + + All data will be returned as a dictionary. + + +Keywords: Veracross,API +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: Topic :: Software Development :: Build Tools +Classifier: License :: OSI Approved :: MIT License +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.4 +Classifier: Programming Language :: Python :: 3.5 +Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 +Description-Content-Type: text/markdown diff --git a/veracross_api.egg-info/SOURCES.txt b/veracross_api.egg-info/SOURCES.txt new file mode 100644 index 0000000..42e1a56 --- /dev/null +++ b/veracross_api.egg-info/SOURCES.txt @@ -0,0 +1,10 @@ +README.md +setup.cfg +setup.py +veracross_api/__init__.py +veracross_api/veracross.py +veracross_api.egg-info/PKG-INFO +veracross_api.egg-info/SOURCES.txt +veracross_api.egg-info/dependency_links.txt +veracross_api.egg-info/requires.txt +veracross_api.egg-info/top_level.txt \ No newline at end of file diff --git a/veracross_api.egg-info/dependency_links.txt b/veracross_api.egg-info/dependency_links.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/veracross_api.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/veracross_api.egg-info/requires.txt b/veracross_api.egg-info/requires.txt new file mode 100644 index 0000000..f229360 --- /dev/null +++ b/veracross_api.egg-info/requires.txt @@ -0,0 +1 @@ +requests diff --git a/veracross_api.egg-info/top_level.txt b/veracross_api.egg-info/top_level.txt new file mode 100644 index 0000000..c96c518 --- /dev/null +++ b/veracross_api.egg-info/top_level.txt @@ -0,0 +1 @@ +veracross_api