ORM support for Mssql in python3
Project description

Microsoft SQL Server Object Related Mapping
MSORM
msorm is a basic MSSQL Object Related Mapper for Python3.x versions. With msorm, existing mssql database can be easily mapped with django style model system. It is still an alpha project Click For source code and pre-releases of msorm.
Installation
You can install the msorm from PyPI:
pip install msorm
msorm is supported on Python 3.7 and above.
How to use
To use msorm first of all you have to create python file (which is prefered name is "models.py"). After that you have to initialize msorm :
from msorm import models
ip_address = "ip address or server name"
database_name = "TestDatabase"
username = "username"
password = "********"
models.init(ip_address, database_name,username, password)
After initialization, you can start writing your own models. But models' name must have the same name as their representatives in MSSQL. (without dbo tag in front of the table name).
But before creating the models you should know the fields. The only field that came from MSSQL is the Foreign key for the alpha version. The other fields are only reflections of MSSQL fields on python variable types.
FIELDS
Every field but the foreign key has a value parameter to be assigned as the value of the key in the database. Fields:
from msorm.models import Field, Model
default_value = "default value of field 'For migrations'"
isnullable = True # For null parameter standart value is True
Field.bit(default=default_value, null=isnullable)
Field.bigint(default=default_value, null=isnullable)
Field.int(default=default_value, null=isnullable)
Field.smallint(default=default_value, null=isnullable)
Field.tinyint(default=default_value, null=isnullable)
Field.decimal(default=default_value, null=isnullable, precision=18, scale=0)
# precision and scale are not implemented yet
Field.numeric(default=default_value, null=isnullable, precision=18, scale=0)
Field.money(default=default_value, null=isnullable)
Field.smallmoney(default=default_value, null=isnullable)
Field.float(default=default_value, null=isnullable)
Field.real(default=default_value, null=isnullable)
length = 255 # length of the value, default value of length is min lenght of the field
Field.char(default=default_value, null=isnullable, length=length)
Field.nchar(default=default_value, null=isnullable, length=length)
Field.varchar(default=default_value, null=isnullable, length=length)
Field.nvarchar(default=default_value, null=isnullable, length=length)
Field.text(default=default_value, null=isnullable)
Field.ntext(default=default_value, null=isnullable)
length = 255 # size of the value, default value of length is min lenght of the field
Field.binary(default=default_value, null=isnullable, length=length)
Field.varbinary(default=default_value, null=isnullable, length=length)
Field.image(default=default_value, null=isnullable)
Field.date(default=default_value, null=isnullable)
Field.datetime(default=default_value, null=isnullable)
Field.smalldatetime(default=default_value, null=isnullable)
model = Model # the class of the foreign table
value = 1 # pk of the foreign table
name = "testTableID" # if the field's name is not same with class of the table set name as field's name
Field.foreignKey(model, value, name)
#primaryKey field has to be used, and there can be only one primaryKey for a table
Field.primaryKey()
CREATING THE MODELS
from msorm import models
from msorm.models import Field
class Server(models.Model):
serverID = Field.primaryKey()
discordSystemID = Field.nvarchar(length=128)
languageID = Field.int()
active = Field.bit()
welcomeMessage = Field.text()
welcomeMessagePrivate = Field.bit()
premiumEndDate = Field.datetime()
isBlockedAllURL = Field.bit()
description = Field.text()
inviteURL = Field.nvarchar(length=64)
categoryID = Field.int()
tags = Field.text()
website = Field.nvarchar(length=128)
updateUUID = Field.nvarchar(length=4000)
class Announce(models.Model):
announceID = Field.primaryKey()
serverID = Field.foreignKey(model=Server, name="serverID")
channelID = Field.nvarchar(length=64)
loopHours = Field.int()
text = Field.text()
title = Field.nvarchar(length=32)
HOW TO MAKE QUERIES
To make queries, In the alpha version msorm has only two methods. These are "where" and "all". Both methods have 'fields' parameter:
'fields' PARAMETER
'fields' parameter gets a tuple which includes fields that are wanted to be pulled from the database . When filled 'fields' parameter with field names, msorm sets values of the fields as none which is not included in the tuple.
WHAT DO METHODS RETURN?
They return the collection of the model, which encapsulated as QueryDict
QueryDict
A QueryDict which holds a collection of models, which all() method used on, and it can be iterated with for loop. Also QueryDict has six methods for easy accessing and managing the collections of the method. These methods are find(field, value), get(field, value), remove(field, value), pop(field, value), values(*fields), dicts(*fields).
field: The name of the field holds the value
value: wanted value of field
find(field, value)
find(field, value) method is used for filtering the model instances after queries. And it returns a new QueryDict filled with filtered models.
get(field, value)
get(field, value) method is used for filtering the model instances after queries but it returns first model instance it found.
remove(field, value)
remove(field, value) method is used for removing the model instance. The method remove the first instance it found.
pop(field, value)
pop(field, value) method is used for removing the model instance. The method removes and returns the first instance it found.
values(*fields)
values(*fields) method is used for retrieving values from QueryDict as a collection of tuples. 'fields' parameter gets a tuple which includes fields that are wanted to be pulled from the QueryDict.
dicts(*fields)
dicts(*fields) method is used for retrieving values from QueryDict as a tuple of dictionaries that hold fields and their values for every instance. 'fields' parameter gets a tuple which includes fields that are wanted to be pulled from the QueryDict.
HOW TO USE ALL(*fields) AND WHERE(*args,**kwargs) METHODS
HOW TO USE ALL(*fields) METHOD
Announce.all() # Without using 'fields' parameter
Announce.all("field_name")
HOW TO USE WHERE(*args,**kwargs)
To use where you can use **kwargs variable which represents collections of {field_name/filters:value}. But to be able to use all featuers of where(*args,**kwargs) method, use filters.
Filters
filedname : SELECT * FROM table WHERE (key=value)
fieldname__gt : SELECT * FROM table WHERE (key>value)
fieldname__gte : SELECT * FROM table WHERE (key>=value)
fieldname__lt : SELECT * FROM table WHERE (key<value)
fieldname__lte : SELECT * FROM table WHERE (key<=value)
fieldname__not : SELECT * FROM table WHERE (key!=value)
fieldname__in : SELECT * FROM table WHERE (key IN (tuple of given values))
fieldname__not_in: SELECT * FROM table WHERE (key NOT IN (tuple of given values))
#NOT IMPLEMENTED YET (v0.0.2a0)#
fieldname__like : SELECT * FROM table WHERE (key LIKE given pattern)
with filters where(*args,**kwargs) method can be used like these:
from msorm.models import Model,Field
class model_name(Model):
field1 = Field.primaryKey()
field2 = Field.int()
field3 = Field.int()
# There is no limit for fields or filters combination #
value = 1
value2 = 2
value3 = 4
model_name.where(field1=value,field2=value2,field3=value3)
model_name.where(field1=value,field2__gt=value2,field3__gte=value3)
model_name.where(field1=value,field2__lt=value2,field3__lte=value3)
model_name.where(field1=value,field2__not=value2,field3__notin=value3)
model_name.where(field1=value,field2__in=value2,field3__like=value3)
Also where(*args,**kwargs) method supports the special operators but all of them will probably be deprecated except OR(*other_operators, **kwargs) in newer versions.
HOW TO USE OR(*other_operators, **kwargs)
other_operators parameter will probably deprecated in the newer versions. **kwargs variable represents collections of {field_name/filters:value}. OR operators can be used like this:
from msorm.models import Model,Field, OR
class model_name(Model):
field1 = Field.primaryKey()
field2 = Field.int()
field3 = Field.int()
# There is no limit for fields or filters combination #
value = 1
value2 = 2
value3 = 4
model_name.where(OR(field1=value)|OR(field1=value2)|OR(field1=value3))
model_name.where(OR(field1=value)|OR(field1__gt=value2)|OR(field1__gte=value3))
model_name.where(OR(field1=value)|OR(field1__lt=value2)|OR(field1__lte=value3))
model_name.where(OR(field1=value)|OR(field1__not=value2)|OR(field1__notin=value3))
model_name.where(OR(field1=value)|OR(field1__in=value2)|OR(field1__like=value3))
HOW TO USE SAVE & UPDATE METHOD
save & update method can be used only after model's initialization. You don't have to use directly update method when save method is called, if the primaryKey field of the model's instance is None, save method execute an INSERT sql but if it is not None then save method will call update method and it will execute an UPDATE sql
from msorm.models import Model,Field
class model_name(Model):
field1 = Field.primaryKey()
field2 = Field.int()
field3 = Field.int()
#save method for saving
model_name_instance1 = model_name(field1=value1, field2=value2, field3=value3)
#it will execute "INSERT" sql
model_name_instance1.save()
#save method for updating
model_name_instance2 = model_name.get(field2__gt=1, ...)
#it will execute "UPDATE"
model_name_instance1.save()
TARGET FEATURES FOR VERSION 1.0.4a0
- Added get method
- Added first method
- Added count method to Model class
- Improved QueryDict class's dicts and values method
- Added dict() and values() method to Model class
- For dict() and dicts() methods, added depth parameter. (with depth parameter, related tables can be serialize as dictionary)
- Added metadata via __init_subclass to make it easier to access the field's value except for foreign field.
- Version data changed for better understanding of distributions of msorm.
- QueryObject's find, get, remove and pop functions are changed. Now, to find the wanted obj you have to give a lambda function. Ex: QueryObject.get(lambda x: x.field_name == 1)
- if QueryObject's get function can't succeed to find the wanted obj, it will raise ItemNotFound (ItemNotFoundException)
- Operators removed and OR was moved to models.py.
- Added __safe parameter for model _init_ function to understand if _init_ is called by a query or hand
- type_fields.py renamed as mssql_fields.py
- All fields were moved to Fields class which is in models.py
- Added developer usage for field class, now it can be called directly for creating test models
- Added settings.py
- With settings.py, added _MFA_ and _MFL_ to check if value is suitable for the field
- Now, all fields except foreign key have produce method to check if value is suitable for the field.
- Added most of the fields of MSSQL to msorm
- Changed versioning system to Semantic Versioning
- Added save & update & delete methods to Model class
- Made better where, get, first and count methods 17.06.2021
- Added automatic model creation from existing databases.
- Migration Support is Suspended for v1.0.4a0
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
Built Distribution
File details
Details for the file msorm-1.3.1a0.tar.gz
.
File metadata
- Download URL: msorm-1.3.1a0.tar.gz
- Upload date:
- Size: 29.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3676016d824466b87c17b1b901d263ed58ccdef43fdf812dbf8cef9114d6d10 |
|
MD5 | 61397176ade9c43486cf133ade106849 |
|
BLAKE2b-256 | 3510479d28c31d5fca4d9988c147cd83f6aeb30532a3e362030460acc81dedb7 |
File details
Details for the file msorm-1.3.1a0-py3-none-any.whl
.
File metadata
- Download URL: msorm-1.3.1a0-py3-none-any.whl
- Upload date:
- Size: 29.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e0490329d37355ec343c7eb95134531f8f51b195c0f9d1f63b500c9cec01f409 |
|
MD5 | a396e18843a9c758a441683d4551cd68 |
|
BLAKE2b-256 | ec06381c286e9e1579ba4ac6d5bb3715a821abb5af9de4862ad443a179997820 |