Skip to main content

No project description provided

Project description

SQLSymphony

A simple and powerful ORM library in Python


SQLSymphony: The elegant and powerful SQLite3 ORM for Python

SQLSymphony is a lightweight โœจ, powerful ๐Ÿ’ช, and high-performanceโšก๏ธ, Object-Relational Mapping (ORM) library for Python, designed to simplify the interaction with SQLite3 databases. It provides a Pythonic, object-oriented interface that allows developers to focus on their application's bussiness logic rather than the underlying database management.

SQLSymphony ORM - powerful and simple ORM for python

โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ณโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“
โ”ƒ Key              โ”ƒ Value           โ”ƒ Description          โ”ƒ
โ”กโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ•‡โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ฉ
โ”‚ Version          โ”‚ 0.1.0           โ”‚ Stable               โ”‚
โ”‚ Author           โ”‚ alexeev-prog    โ”‚ Maintainer&Developer โ”‚
โ”‚ License          โ”‚ GNU GPL v3      โ”‚ License of library   โ”‚
โ”‚ Language         โ”‚ Python 3.12.7   โ”‚ Main language        โ”‚
โ”‚ PyPi pep package โ”‚ sqlsymphony_orm โ”‚ Package name         โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

๐ŸŒŸ Comparison with Alternatives

Feature SqlSymphony SQLAlchemy Peewee
๐Ÿ’ซ Simplicity โœ”๏ธ โœ”๏ธ โŒ
๐Ÿš€ Performance โœ”๏ธ โŒ โœ”๏ธ
๐ŸŒ Database Agnosticism โŒ โœ”๏ธ โŒ
๐Ÿ“š Comprehensive Documentation โœ”๏ธ โœ”๏ธ โœ”๏ธ
๐Ÿ”ฅ Active Development โœ”๏ธ โœ”๏ธ โŒ

๐Ÿค” Why Choose SqlSymphony?

โœจ Simplicity: SqlSymphony offers a straightforward and intuitive API for performing CRUD operations, filtering, sorting, and more, making it a breeze to work with databases in your Python projects.

๐Ÿ’ช Flexibility: The library is designed to be database-agnostic, allowing you to switch between different SQLite3 implementations without modifying your codebase.

โšก๏ธ Performance: SqlSymphony is optimized for performance, leveraging techniques like lazy loading and eager loading to minimize database queries and improve overall efficiency.

๐Ÿ“š Comprehensive Documentation: SqlSymphony comes with detailed documentation, including usage examples and API reference, to help you get started quickly and efficiently.

๐Ÿ” Maintainability: The codebase follows best practices in software engineering, including principles like SOLID, Clean Code, and modular design, ensuring the library is easy to extend and maintain.

๐Ÿงช Extensive Test Coverage: SqlSymphony is backed by a comprehensive test suite, ensuring the library's reliability and stability.

๐Ÿ“š Key Features

  • Intuitive API: Pythonic, object-oriented interface for interacting with SQLite3 databases.
  • Database Agnosticism: Seamlessly switch between different SQLite3 implementations.
  • Performance Optimization: Lazy loading, eager loading, and other techniques for efficient database queries.
  • Comprehensive Documentation: Detailed usage examples and API reference to help you get started.
  • Modular Design: Clean, maintainable codebase that follows best software engineering practices.
  • Extensive Test Coverage: Robust test suite to ensure the library's reliability and stability.

๐Ÿš€ Getting Started

To install SqlSymphony, use pip:

pip install sqlsymphony_orm

Once installed, you can start using the library in your Python projects. Check out the documentation for detailed usage examples and API reference.

๐Ÿ’ป Usage Examples

Creating a Model

from sqlsymphony import Model, fields

class User(Model):
    id = fields.IntegerField(primary_key=True)
    name = fields.CharField()

Performing CRUD Operations

Create a new record
user = User(name='John Doe', email='john.doe@example.com')
user.save()
Read records
all_users = User.all()
user = User.get(id=1)
Update a record
user = User.get(id=1)
user.email = 'new_email@example.com'
user.save()
Delete a record
user = User.get(id=1)
user.delete()

๐Ÿค Contributing

We welcome contributions from the community! If you'd like to help improve SqlSymphony, please check out the contributing guidelines to get started.

๐Ÿ’ฌ Support

If you encounter any issues or have questions about SqlSymphony, please:

๐Ÿ”ฎ Roadmap

Our future goals for SqlSymphony include:

  • ๐Ÿ“š Expanding support for more SQLite3 features
  • ๐Ÿš€ Improving performance through further optimizations
  • โœ… Enhancing the testing suite and code coverage
  • ๐ŸŒ Translating the documentation to multiple languages
  • ๐Ÿ”ง Implementing advanced querying capabilities

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sqlsymphony_orm-0.1.2.tar.gz (10.1 kB view details)

Uploaded Source

Built Distribution

sqlsymphony_orm-0.1.2-py3-none-any.whl (10.3 kB view details)

Uploaded Python 3

File details

Details for the file sqlsymphony_orm-0.1.2.tar.gz.

File metadata

  • Download URL: sqlsymphony_orm-0.1.2.tar.gz
  • Upload date:
  • Size: 10.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.7 Linux/6.11.1-1-cachyos

File hashes

Hashes for sqlsymphony_orm-0.1.2.tar.gz
Algorithm Hash digest
SHA256 f10be2b585e36719a3b46a540ba80285a11e26352dd86d3a7b7d558eaf63d6bb
MD5 c1c06d4e531000deb4d1c5b94e362fb5
BLAKE2b-256 65fd5d5020b2d6d02ad13e8651f58924ca4a9b73f76cea568cd15f558d694d33

See more details on using hashes here.

File details

Details for the file sqlsymphony_orm-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: sqlsymphony_orm-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 10.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.7 Linux/6.11.1-1-cachyos

File hashes

Hashes for sqlsymphony_orm-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 247edfbbf451d188a3a05b4b39f56616ddf7431ba15ebcdccc4c23023a4de706
MD5 53b22a087b44b13a5c212ae01c14d79f
BLAKE2b-256 aa225865c3b266611cf0b0d8e787da1cb7f40cb1c9b756ab3e06391833288b1a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page