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.5.tar.gz
(39.1 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.5-py3-none-any.whl
(49.7 kB
view details)
File details
Details for the file mftsccs-0.1.5.tar.gz.
File metadata
- Download URL: mftsccs-0.1.5.tar.gz
- Upload date:
- Size: 39.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a000c56d345be788338a602822ddaa0712d79ecdb60adc1b8134e30b31302e69
|
|
| MD5 |
7133537c866d2dcd70621365b057c81d
|
|
| BLAKE2b-256 |
e2f68532e328a877184812f2ea82a9fd26a973a60af36a44af57ed8f62eade7c
|
File details
Details for the file mftsccs-0.1.5-py3-none-any.whl.
File metadata
- Download URL: mftsccs-0.1.5-py3-none-any.whl
- Upload date:
- Size: 49.7 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 |
f7039b572e281b5788a048bf83523ddef81e702915a3bf025c18986a030d2d4b
|
|
| MD5 |
908825784cdfd800f6d1706a40e15a21
|
|
| BLAKE2b-256 |
3226c648536ba87b274c1f5dc096e1b3fdb665b3a8aca1899dcc7cd23ead4bf6
|