tensorwatch-api 0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: tensorwatch-api
3
+ Version: 0.1
4
+ Requires-Dist: pykafka
5
+ Requires-Dist: tensorwatchext
6
+ Requires-Dist: ipywidgets
7
+ Requires-Dist: ipympl
8
+ Dynamic: requires-dist
@@ -0,0 +1,5 @@
1
+ # jupyter-stream-vis
2
+ This is a project for my thesis at Technical University of Crete.
3
+ Our goal is to make to make it simple to visualize streaming data on jupyter Lab
4
+ This projects main goal is to provide a connector to Kafka and with the help of some parsers and a simple to use
5
+ api provide the user the abillity to stream his streaming data.
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,18 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='tensorwatch-api',
5
+ version='0.1',
6
+ packages=['twapi'],
7
+ install_requires=[
8
+ 'pykafka',
9
+ 'tensorwatchext',
10
+ 'ipywidgets',
11
+ 'ipympl',
12
+ ],
13
+ entry_points={
14
+ 'console_scripts': [
15
+ 'twapi-senter=twapi.Example_Senter:main',
16
+ ],
17
+ },
18
+ )
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.4
2
+ Name: tensorwatch-api
3
+ Version: 0.1
4
+ Requires-Dist: pykafka
5
+ Requires-Dist: tensorwatchext
6
+ Requires-Dist: ipywidgets
7
+ Requires-Dist: ipympl
8
+ Dynamic: requires-dist
@@ -0,0 +1,9 @@
1
+ README.md
2
+ setup.py
3
+ tensorwatch_api.egg-info/PKG-INFO
4
+ tensorwatch_api.egg-info/SOURCES.txt
5
+ tensorwatch_api.egg-info/dependency_links.txt
6
+ tensorwatch_api.egg-info/entry_points.txt
7
+ tensorwatch_api.egg-info/requires.txt
8
+ tensorwatch_api.egg-info/top_level.txt
9
+ twapi/__init__.py
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ twapi-senter = twapi.Example_Senter:main
@@ -0,0 +1,4 @@
1
+ pykafka
2
+ tensorwatchext
3
+ ipywidgets
4
+ ipympl
@@ -0,0 +1 @@
1
+ from .tensorwatch-api import twapi