A Python library for Concept-Connection System (CCS) - offline-first knowledge graph management
Project description
CCS
A Python library for CCS functionality.
Installation
From source (development mode)
# Clone the repository
git clone https://github.com/yourusername/ccs.git
cd ccs
# Install in development mode
pip install -e .
# Install with development dependencies
pip install -e ".[dev]"
From PyPI (once published)
pip install ccs
Usage
# Import the main functions and classes
from ccs import example_function, ExampleClass, helper_function
# Use example_function
result = example_function("hello")
print(result) # Output: Processed: hello
# Use ExampleClass
obj = ExampleClass("my_instance")
obj.process("some data")
print(obj) # Output: ExampleClass(name='my_instance', data=some data)
# Use helper_function
first_item = helper_function([1, 2, 3])
print(first_item) # Output: 1
Import specific modules
from ccs.core import ExampleClass
from ccs.utils import flatten_list, validate_input
# Flatten nested lists
flat = flatten_list([[1, 2], [3, 4]])
print(flat) # Output: [1, 2, 3, 4]
# Validate input types
is_valid = validate_input("hello", str)
print(is_valid) # Output: True
Project Structure
CCS-Python/
├── pyproject.toml # Package configuration
├── README.md # This file
├── src/
│ └── ccs/ # Main package
│ ├── __init__.py # Package initialization & exports
│ ├── core.py # Core functionality
│ └── utils.py # Utility functions
├── tests/ # Test suite
│ ├── __init__.py
│ ├── test_core.py
│ └── test_utils.py
└── docs/ # Documentation (optional)
Development
Running tests
# Install dev dependencies
pip install -e ".[dev]"
# Run tests
pytest
# Run tests with coverage
pytest --cov=ccs
Code formatting
# Format code with black
black src/ tests/
# Lint with ruff
ruff check src/ tests/
Type checking
mypy src/
Building & Publishing
Build the package
pip install build
python -m build
This creates distribution files in the dist/ directory:
ccs-0.1.0.tar.gz(source distribution)ccs-0.1.0-py3-none-any.whl(wheel distribution)
Publish to PyPI
pip install twine
# Upload to TestPyPI first (recommended)
twine upload --repository testpypi dist/*
# Upload to PyPI
twine upload dist/*
License
MIT License - see LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mftsccs-0.1.9.tar.gz
(54.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
mftsccs-0.1.9-py3-none-any.whl
(70.4 kB
view details)
File details
Details for the file mftsccs-0.1.9.tar.gz.
File metadata
- Download URL: mftsccs-0.1.9.tar.gz
- Upload date:
- Size: 54.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc637d041a482c163a5f87a75640c59995b360c0196fc57a0e2db7b1a19d050d
|
|
| MD5 |
e5dae44f2d39fdac47a75324968b6896
|
|
| BLAKE2b-256 |
492c5d84130268a4bca6778ba264082a4c1a1d4ab1405bfa22cf6e38a49456ab
|
File details
Details for the file mftsccs-0.1.9-py3-none-any.whl.
File metadata
- Download URL: mftsccs-0.1.9-py3-none-any.whl
- Upload date:
- Size: 70.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3264598f8d8c1fea90b6955a5c023b24c093b940564031b96389d99ad5fe3d33
|
|
| MD5 |
32e782160f6b033d2affda7afc4f1166
|
|
| BLAKE2b-256 |
85d7ded6468e12f095bb4a50f4634d043b57f5d7c042b2a820d57fa1a7209fab
|