Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alt predicate, Composition, Objectless dataframe. #14

Open
wants to merge 14 commits into
base: reorg
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@
CRED.json
*.vscode/
*.pyperf
*.code-workspace
.RtypesStateManagerState
Binary file removed python/dist/pcc-0.0.10-py2-none-any.whl
Binary file not shown.
Binary file removed python/dist/pcc-0.0.11-py2-none-any.whl
Binary file not shown.
Binary file removed python/dist/pcc-0.0.12-py2-none-any.whl
Binary file not shown.
Binary file removed python/dist/pcc-0.0.13-py2-none-any.whl
Binary file not shown.
Binary file removed python/dist/pcc-0.0.14-py2-none-any.whl
Binary file not shown.
Binary file removed python/dist/pcc-0.0.15-py2-none-any.whl
Binary file not shown.
Binary file removed python/dist/pcc-0.0.16-py2-none-any.whl
Binary file not shown.
Binary file removed python/dist/pcc-0.0.4-py2-none-any.whl
Binary file not shown.
Binary file removed python/dist/pcc-0.0.5-py2-none-any.whl
Binary file not shown.
Binary file removed python/dist/pcc-0.0.6-py2-none-any.whl
Binary file not shown.
Binary file removed python/dist/pcc-0.0.7-py2-none-any.whl
Binary file not shown.
Binary file removed python/dist/pcc-0.0.8-py2-none-any.whl
Binary file not shown.
Binary file removed python/dist/pcc-0.0.9-py2-none-any.whl
Binary file not shown.
Binary file removed python/dist/pcc-0.1.0-py2-none-any.whl
Binary file not shown.
Binary file added python/dist/pcc-0.3.0-py2-none-any.whl
Binary file not shown.
21 changes: 21 additions & 0 deletions python/pcc.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Metadata-Version: 1.1
Name: pcc
Version: 0.3.0
Summary: Predicate collection classes
Home-page: https://github.com/Mondego/pcc
Author: Rohan Achar
Author-email: [email protected]
License: MIT
Description: $ pip install dist/pcc-0.0.xxx-py2-none-any.whl

Keywords: predicate collection classes,design patterns,dataframe,object databases
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
57 changes: 57 additions & 0 deletions python/pcc.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
setup.py
pcc.egg-info/PKG-INFO
pcc.egg-info/SOURCES.txt
pcc.egg-info/dependency_links.txt
pcc.egg-info/requires.txt
pcc.egg-info/top_level.txt
rtypes/__init__.py
rtypes/connectors/__init__.py
rtypes/connectors/sql.py
rtypes/connectors/xml.py
rtypes/dataframe/__init__.py
rtypes/dataframe/application_queue.py
rtypes/dataframe/change_manager.py
rtypes/dataframe/dataframe.py
rtypes/dataframe/dataframe_client.py
rtypes/dataframe/dataframe_request.py
rtypes/dataframe/dataframe_threading.py
rtypes/dataframe/dataframe_type.py
rtypes/dataframe/object_manager.py
rtypes/dataframe/objectless_dataframe.py
rtypes/dataframe/queue_manager.py
rtypes/dataframe/state_manager.py
rtypes/dataframe/state_recorder.py
rtypes/dataframe/trigger_manager.py
rtypes/dataframe/type_manager.py
rtypes/dataframe/type_state.py
rtypes/dataframe/dataframe_changes/IDataframeChanges.py
rtypes/dataframe/dataframe_changes/__init__.py
rtypes/dataframe/dataframe_changes/dataframe_changes_bson.py
rtypes/dataframe/dataframe_changes/dataframe_changes_cbor.py
rtypes/dataframe/dataframe_changes/dataframe_changes_json.py
rtypes/pcc/__init__.py
rtypes/pcc/attributes.py
rtypes/pcc/create.py
rtypes/pcc/this.py
rtypes/pcc/triggers.py
rtypes/pcc/types/__init__.py
rtypes/pcc/types/impure.py
rtypes/pcc/types/isa.py
rtypes/pcc/types/join.py
rtypes/pcc/types/parameter.py
rtypes/pcc/types/projection.py
rtypes/pcc/types/set.py
rtypes/pcc/types/subset.py
rtypes/pcc/types/union.py
rtypes/pcc/utils/__init__.py
rtypes/pcc/utils/_utils.py
rtypes/pcc/utils/cache.py
rtypes/pcc/utils/enums.py
rtypes/pcc/utils/metadata.py
rtypes/pcc/utils/recursive_dictionary.py
tests/connectors/__init__.py
tests/connectors/test_sql.py
tests/pcc/__init__.py
tests/pcc/test_create.py
tests/pcc/utils/__init__.py
tests/pcc/utils/metadata_tests.py
1 change: 1 addition & 0 deletions python/pcc.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

8 changes: 8 additions & 0 deletions python/pcc.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
cbor

[bson]
bson

[dev]

[test]
1 change: 1 addition & 0 deletions python/pcc.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rtypes
Loading