Skip to main content

PyroSequel, advanced SQL querying

Project description

PyroSequel

PyroSequel is a small and asynchronous ORM / SQL query builder. PyroSequel started as a wrapper for the aiosqlite library, but now supports using different databases.

Right now, only SQLiteDatabase is implemented (using aiosqlite).

Installation

To install PyroSequel with SQLite support, run this:

$ pip install pyrosequel

Example

Here's a small example, showcasing simple use case for the PyroSequel.

import asyncio
from pyrosequel import *

async def main():
    db = await SQLiteDatabase.connect(":memory:")

    @db.register_model()
    class User(Model):
        id = IntegerField(PrimaryKey())
        name = TextField(NotNull())
    
    await User.create_table()

    # insert to specified column
    await User.insert(
        (User.name, "gecko")
    ).cast()

    # or just pass values in
    await User.insert(None, "zedikon").cast()

    # now fetch the user
    print(await User.select()
                    .where(User.name == "gecko")
                    .cast())
    # [(1, 'gecko')]

Licensing

This project is licensed under BSD 3-clause licese. See LICENSE file for more. Copyright 2024 GeckoNerd (geckwwo)

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

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

pyrosequel-0.1.2.tar.gz (8.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyrosequel-0.1.2-py3-none-any.whl (9.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pyrosequel-0.1.2.tar.gz
  • Upload date:
  • Size: 8.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pyrosequel-0.1.2.tar.gz
Algorithm Hash digest
SHA256 4017e566215e4aefec500cb306a118e77df0eb5c9bf19aaa75c1aebc53c27d15
MD5 2c1dff537c4d48d3450f5143d3259297
BLAKE2b-256 56b2154eab6a60ee99ab3729bbd9429cc87726571b189723558d42c7ad378725

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrosequel-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 9.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pyrosequel-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 9b822b0d905fcaacd413ed25210a2e8f2853d322b47fb877f537b81eebdded7e
MD5 d6f9275395a3e9659fbf7bd9de4f95b8
BLAKE2b-256 459d3d94e8a2043ed012487f88dfa1c5af6d61eaf2d0c335284edc7794774fbe

See more details on using hashes here.

Supported by

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