initial commit
This commit is contained in:
30
co3.egg-info/PKG-INFO
Normal file
30
co3.egg-info/PKG-INFO
Normal file
@@ -0,0 +1,30 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: co3
|
||||
Version: 0.1.1
|
||||
Summary: Lightweight ORM
|
||||
Author-email: Sam Griesemer <samgriesemer@gmail.com>
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: License :: OSI Approved :: MIT License
|
||||
Classifier: Operating System :: OS Independent
|
||||
Requires-Python: >=3.11
|
||||
Description-Content-Type: text/markdown
|
||||
Requires-Dist: tqdm
|
||||
|
||||
# Overview
|
||||
`co4` is a package for file conversion and associated database operations. The `CO4` base class
|
||||
provides a standard interface for performing conversions, preparing inserts, and
|
||||
interacting with database schemas that mirror the class hierarchy.
|
||||
|
||||
Simplified description of the operational model:
|
||||
|
||||
**Goal**: interact with a storage medium (database, pickled structure, VSS framework) with
|
||||
a known schema.
|
||||
|
||||
- **Accessor** to provide access to stored items
|
||||
- **Composer** to compose common access points (e.g., JOINed tables)
|
||||
- **Indexer** to index/cache access queries
|
||||
- **Manager** to manage storage state (e.g., supported inserts, database syncs)
|
||||
- **Collector** to collect data for updating storage state
|
||||
|
||||
**CO4** is an abstract base class that makes it easy to integrate this model with object
|
||||
hierarchies that mirror a storage schema.
|
||||
34
co3.egg-info/SOURCES.txt
Normal file
34
co3.egg-info/SOURCES.txt
Normal file
@@ -0,0 +1,34 @@
|
||||
MANIFEST.in
|
||||
README.md
|
||||
pyproject.toml
|
||||
co3/__init__.py
|
||||
co3/accessor.py
|
||||
co3/co3.py
|
||||
co3/collector.py
|
||||
co3/composer.py
|
||||
co3/database.py
|
||||
co3/indexer.py
|
||||
co3/manager.py
|
||||
co3/mapper.py
|
||||
co3/relation.py
|
||||
co3.egg-info/PKG-INFO
|
||||
co3.egg-info/SOURCES.txt
|
||||
co3.egg-info/dependency_links.txt
|
||||
co3.egg-info/requires.txt
|
||||
co3.egg-info/top_level.txt
|
||||
co3/accessors/__init__.py
|
||||
co3/accessors/fts.py
|
||||
co3/accessors/sql.py
|
||||
co3/accessors/vss.py
|
||||
co3/databases/__init__.py
|
||||
co3/databases/fts.py
|
||||
co3/databases/sql.py
|
||||
co3/databases/vss.py
|
||||
co3/managers/__init__.py
|
||||
co3/managers/fts.py
|
||||
co3/managers/sql.py
|
||||
co3/managers/vss.py
|
||||
co3/relations/__init__.py
|
||||
co3/util/__init__.py
|
||||
co3/util/db.py
|
||||
co3/util/regex.py
|
||||
1
co3.egg-info/dependency_links.txt
Normal file
1
co3.egg-info/dependency_links.txt
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
1
co3.egg-info/requires.txt
Normal file
1
co3.egg-info/requires.txt
Normal file
@@ -0,0 +1 @@
|
||||
tqdm
|
||||
1
co3.egg-info/top_level.txt
Normal file
1
co3.egg-info/top_level.txt
Normal file
@@ -0,0 +1 @@
|
||||
co3
|
||||
Reference in New Issue
Block a user