Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
The moschitta-query
package provides a Fluent Query Builder for the Moschitta Framework, enabling developers to generate SQL queries programmatically using a fluent interface.
You can install moschitta-query
via pip:
pip install moschitta-query
Or use it with Poetry:
poetry add moschitta-query
To use moschitta-query
, you need to initialize an instance of the Query
class.
from moschitta_query.query import Query
# Create a basic select query
query = Query().select('id', 'name').from_('users')
print(query.to_sql())
# Output: SELECT id, name FROM users
You can add conditions to your query using the where
method.
# Add a where clause to the query
query = Query().select('*').from_('users').where('age > 21')
print(query.to_sql())
# Output: SELECT * FROM users WHERE age > 21
Perform joins using the join
method.
# Perform an inner join with another table
query = Query().select('users.id', 'users.name', 'orders.total').from_('users') \
.join('orders', 'users.id = orders.user_id')
print(query.to_sql())
# Output: SELECT users.id, users.name, orders.total FROM users JOIN orders ON users.id = orders.user_id
Specify the order of the result set using the order_by
method.
# Order the result set by a column
query = Query().select('name').from_('users').order_by('name')
print(query.to_sql())
# Output: SELECT name FROM users ORDER BY name
moschitta_query.query.Query
select(*columns: str) -> Query
: Specifies the columns to select in the query.from_(table: str) -> Query
: Specifies the table to select data from.where(*conditions: str) -> Query
: Adds conditions to filter the result set.join(table: str, on_clause: str) -> Query
: Performs an inner join with another table.left_join(table: str, on_clause: str) -> Query
: Performs a left outer join with another table.right_join(table: str, on_clause: str) -> Query
: Performs a right outer join with another table.order_by(*columns: str) -> Query
: Specifies the columns to order the result set by.group_by(*columns: str) -> Query
: Groups the result set by the specified columns.having(*conditions: str) -> Query
: Adds conditions to filter the grouped result set.limit(count: int) -> Query
: Limits the number of rows returned by the query.offset(start: int) -> Query
: Specifies the starting offset for the result set.to_sql() -> str
: Returns the constructed SQL query as a string.Contributions to moschitta-query
are welcome! You can contribute by opening issues for bugs or feature requests, submitting pull requests, or helping improve the documentation.
This project is licensed under the terms of the MIT License.
FAQs
Fluent Query Builder Library
We found that moschitta-query demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.