{
"info": {
"author": "Michiya Takahashi",
"author_email": "michiya.takahashi@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 4 - Beta",
"Framework :: Django",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP"
],
"description": "django-pyodbc-azure\n===================\n\n.. image:: http://img.shields.io/pypi/v/django-pyodbc-azure.svg?style=flat\n :target: https://pypi.python.org/pypi/django-pyodbc-azure\n\n.. image:: http://img.shields.io/pypi/l/django-pyodbc-azure.svg?style=flat\n :target: http://opensource.org/licenses/BSD-3-Clause\n\n*django-pyodbc-azure* is a modern fork of\n`django-pyodbc `__, a\n`Django `__ Microsoft SQL Server external\nDB backend that uses ODBC by employing the\n`pyodbc `__ library. It supports\nMicrosoft SQL Server and Azure SQL Database.\n\nFeatures\n--------\n\n- Supports Django 2.1\n- Supports Microsoft SQL Server 2008/2008R2, 2012, 2014, 2016, 2017 and\n Azure SQL Database\n- Passes most of the tests of the Django test suite\n- Compatible with\n `Micosoft ODBC Driver for SQL Server `__,\n `SQL Server Native Client `__,\n and `FreeTDS `__ ODBC drivers\n\nDependencies\n------------\n\n- Django 2.1\n- pyodbc 3.0 or newer\n\nInstallation\n------------\n\n1. Install pyodbc and Django\n\n2. Install django-pyodbc-azure ::\n\n pip install django-pyodbc-azure\n\n3. Now you can point the ``ENGINE`` setting in the settings file used by\n your Django application or project to the ``'sql_server.pyodbc'``\n module path ::\n\n 'ENGINE': 'sql_server.pyodbc'\n\nConfiguration\n-------------\n\nStandard Django settings\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nThe following entries in a database-level settings dictionary\nin DATABASES control the behavior of the backend:\n\n- ENGINE\n\n String. It must be ``\"sql_server.pyodbc\"``.\n\n- NAME\n\n String. Database name. Required.\n\n- HOST\n\n String. SQL Server instance in ``\"server\\instance\"`` (on-premise) or\n ``\"server.database.windows.net\"`` (Azure SQL Database) format.\n\n- PORT\n\n String. Server instance port.\n An empty string means the default port.\n\n- USER\n\n String. Database user name in ``\"user\"`` (on-premise) or\n ``\"user@server\"`` (Azure SQL Database) format.\n If not given then MS Integrated Security will be used.\n\n- PASSWORD\n\n String. Database user password.\n\n- AUTOCOMMIT\n\n Boolean. Set this to False if you want to disable\n Django's transaction management and implement your own.\n\nand the following entries are also available in the TEST dictionary\nfor any given database-level settings dictionary:\n\n- NAME\n\n String. The name of database to use when running the test suite.\n If the default value (``None``) is used, the test database will use\n the name \"test\\_\" + ``NAME``.\n\n- COLLATION\n\n String. The collation order to use when creating the test database.\n If the default value (``None``) is used, the test database is assigned\n the default collation of the instance of SQL Server.\n\n- DEPENDENCIES\n\n String. The creation-order dependencies of the database.\n See the official Django documentation for more details.\n\n- MIRROR\n\n String. The alias of the database that this database should\n mirror during testing. Default value is ``None``.\n See the official Django documentation for more details.\n\nOPTIONS\n~~~~~~~\n\nDictionary. Current available keys are:\n\n- driver\n\n String. ODBC Driver to use (``\"ODBC Driver 13 for SQL Server\"``,\n ``\"SQL Server Native Client 11.0\"``, ``\"FreeTDS\"`` etc).\n Default is ``\"ODBC Driver 13 for SQL Server\"``.\n\n- isolation_level\n\n String. Sets `transaction isolation level\n `__\n for each database session. Valid values for this entry are\n ``READ UNCOMMITTED``, ``READ COMMITTED``, ``REPEATABLE READ``,\n ``SNAPSHOT``, and ``SERIALIZABLE``. Default is ``None`` which means\n no isolation levei is set to a database session and SQL Server default\n will be used.\n\n- dsn\n\n String. A named DSN can be used instead of ``HOST``.\n\n- host_is_server\n\n Boolean. Only relevant if using the FreeTDS ODBC driver under\n Unix/Linux.\n\n By default, when using the FreeTDS ODBC driver the value specified in\n the ``HOST`` setting is used in a ``SERVERNAME`` ODBC connection\n string component instead of being used in a ``SERVER`` component;\n this means that this value should be the name of a *dataserver*\n definition present in the ``freetds.conf`` FreeTDS configuration file\n instead of a hostname or an IP address.\n\n But if this option is present and it's value is ``True``, this\n special behavior is turned off.\n\n See http://www.freetds.org/userguide/dsnless.htm for more information.\n\n- unicode_results\n\n Boolean. If it is set to ``True``, pyodbc's *unicode_results* feature\n is activated and strings returned from pyodbc are always Unicode.\n Default value is ``False``.\n\n- extra_params\n\n String. Additional parameters for the ODBC connection. The format is\n ``\"param=value;param=value\"``.\n\n- collation\n\n String. Name of the collation to use when performing text field\n lookups against the database. Default is ``None``; this means no\n collation specifier is added to your lookup SQL (the default\n collation of your database will be used). For Chinese language you\n can set it to ``\"Chinese_PRC_CI_AS\"``.\n\n- connection_timeout\n\n Integer. Sets the timeout in seconds for the database connection process.\n Default value is ``0`` which disables the timeout.\n\n- connection_retries\n\n Integer. Sets the times to retry the database connection process.\n Default value is ``5``.\n\n- connection_retry_backoff_time\n\n Integer. Sets the back off time in seconds for reries of\n the database connection process. Default value is ``5``.\n\n- query_timeout\n\n Integer. Sets the timeout in seconds for the database query.\n Default value is ``0`` which disables the timeout.\n\nbackend-specific settings\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThe following project-level settings also control the behavior of the backend:\n\n- DATABASE_CONNECTION_POOLING\n\n Boolean. If it is set to ``False``, pyodbc's connection pooling feature\n won't be activated.\n\nExample\n~~~~~~~\n\nHere is an example of the database settings:\n\n::\n\n DATABASES = {\n 'default': {\n 'ENGINE': 'sql_server.pyodbc',\n 'NAME': 'mydb',\n 'USER': 'user@myserver', \n 'PASSWORD': 'password',\n 'HOST': 'myserver.database.windows.net',\n 'PORT': '',\n\n 'OPTIONS': {\n 'driver': 'ODBC Driver 13 for SQL Server',\n },\n },\n }\n\n # set this to False if you want to turn off pyodbc's connection pooling\n DATABASE_CONNECTION_POOLING = False\n\nLimitations\n-----------\n\nThe following features are currently not supported:\n\n- Altering a model field from or to AutoField at migration\n\nNotice\n------\n\nThis version of *django-pyodbc-azure* only supports Django 2.1.\nIf you want to use it on older versions of Django,\nspecify an appropriate version number (2.0.x.x for Django 2.0)\nat installation like this: ::\n\n pip install \"django-pyodbc-azure<2.1\"\n\n\n",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/michiya/django-pyodbc-azure",
"keywords": "azure django",
"license": "BSD",
"maintainer": "",
"maintainer_email": "",
"name": "django-pyodbc-azure",
"package_url": "https://pypi.org/project/django-pyodbc-azure/",
"platform": "",
"project_url": "https://pypi.org/project/django-pyodbc-azure/",
"project_urls": {
"Homepage": "https://github.com/michiya/django-pyodbc-azure"
},
"release_url": "https://pypi.org/project/django-pyodbc-azure/2.1.0.0/",
"requires_dist": [
"Django (<2.2,>=2.1.0)",
"pyodbc (>=3.0)"
],
"requires_python": "",
"summary": "Django backend for Microsoft SQL Server and Azure SQL Database using pyodbc",
"version": "2.1.0.0"
},
"last_serial": 4190536,
"releases": {
"1.0.1": [
{
"comment_text": "",
"digests": {
"md5": "e938b314e6e58b691e2799c0671862e8",
"sha256": "98eb63ba6088ccacd968b48af4cc455f58eb950b39400755b6b37d81ffb5df66"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "e938b314e6e58b691e2799c0671862e8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25204,
"upload_time": "2013-04-05T03:55:40",
"url": "https://files.pythonhosted.org/packages/60/e9/4678b3d99befa65a316d3d6170889f985a1740fa5fa5b680bdd688b6715e/django-pyodbc-azure-1.0.1.tar.gz"
}
],
"1.0.10": [
{
"comment_text": "",
"digests": {
"md5": "074efb4376b09f04d1498086915d9b02",
"sha256": "d88fda7b79f2dc29bc6d2be93517bf078fd55eae627332f79821b7791b848612"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.0.10.zip",
"has_sig": false,
"md5_digest": "074efb4376b09f04d1498086915d9b02",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34584,
"upload_time": "2013-11-10T03:37:35",
"url": "https://files.pythonhosted.org/packages/f1/07/0bc7ef4058aa7d423f39d0b23fc38fcd67e94572d9725810fd7569ecee62/django-pyodbc-azure-1.0.10.zip"
}
],
"1.0.11": [
{
"comment_text": "",
"digests": {
"md5": "c8581bdcb70929f3905355ea9f9e1f5f",
"sha256": "bff6e39096e9675dc777c3bb19adf6b650c9c8115a1b8face41eddc686b63e05"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.0.11.zip",
"has_sig": false,
"md5_digest": "c8581bdcb70929f3905355ea9f9e1f5f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39087,
"upload_time": "2014-01-17T01:26:30",
"url": "https://files.pythonhosted.org/packages/05/90/de7dc2870dd4b1e981c8861e486051915eac502eadd98c33ec582be68aee/django-pyodbc-azure-1.0.11.zip"
}
],
"1.0.12": [
{
"comment_text": "",
"digests": {
"md5": "19396e2c68f7f270c4be06ad180054a3",
"sha256": "069547aadd715ce8a22e239cfa50421d489f7d82e9ff11c78554135fda2d8770"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.0.12.zip",
"has_sig": false,
"md5_digest": "19396e2c68f7f270c4be06ad180054a3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39079,
"upload_time": "2014-04-04T12:20:20",
"url": "https://files.pythonhosted.org/packages/ef/33/641d50ada0fee0db3bbdc0792b6fa82b7f338ed66beede5ad49d521b8c44/django-pyodbc-azure-1.0.12.zip"
}
],
"1.0.13": [
{
"comment_text": "",
"digests": {
"md5": "942baf01d75991c69cfae5d6dc384fcd",
"sha256": "9d619f0de9946205b427ac86086884a56c38dc0ff2b79c15896c224ce208fccb"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.0.13.zip",
"has_sig": false,
"md5_digest": "942baf01d75991c69cfae5d6dc384fcd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 38894,
"upload_time": "2014-09-05T08:11:19",
"url": "https://files.pythonhosted.org/packages/88/d3/45bb5aef6fbeb5273618064e78b983f524cee94ebeaba9239effa9b458d7/django-pyodbc-azure-1.0.13.zip"
}
],
"1.0.14": [
{
"comment_text": "",
"digests": {
"md5": "4d9c8403d162a65efacd6b1e75f0010a",
"sha256": "9f3c7628afbfc52d62b8ff4d6ef7762dac31e44a5aa0399455da31b2241c1c99"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.0.14.zip",
"has_sig": false,
"md5_digest": "4d9c8403d162a65efacd6b1e75f0010a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39313,
"upload_time": "2015-02-10T07:06:59",
"url": "https://files.pythonhosted.org/packages/27/c2/902fb933e6a2e62c7e78cc61b5431f812a3195541f7a8dd17033663398f5/django-pyodbc-azure-1.0.14.zip"
}
],
"1.0.2": [
{
"comment_text": "",
"digests": {
"md5": "a37aae4f6818b154155c2c9947fab4f8",
"sha256": "8f0f89644661753b6487d9c4ad8a780ba422d010e0d5e8c649d4377bb6d3fff3"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.0.2.tar.gz",
"has_sig": false,
"md5_digest": "a37aae4f6818b154155c2c9947fab4f8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25224,
"upload_time": "2013-04-14T02:44:48",
"url": "https://files.pythonhosted.org/packages/d7/b4/b4235431d42c294dd690ee4fa49f5a9ed155521df26bf03033f2df6d9f3d/django-pyodbc-azure-1.0.2.tar.gz"
}
],
"1.0.3": [
{
"comment_text": "",
"digests": {
"md5": "b182ccbd7d692a4caef5f275d17362b4",
"sha256": "4ef106066c2f51b5b1d864246af34544b6d34ba1b15a551f0fd1b2b862493616"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.0.3.tar.gz",
"has_sig": false,
"md5_digest": "b182ccbd7d692a4caef5f275d17362b4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25319,
"upload_time": "2013-04-26T11:02:45",
"url": "https://files.pythonhosted.org/packages/d6/39/975dad9f9763ffd2fff26b04ff870a2be686178f86fbe89fd6c252d3ec34/django-pyodbc-azure-1.0.3.tar.gz"
}
],
"1.0.5": [
{
"comment_text": "",
"digests": {
"md5": "a51548e786ac655d07e77d1cd79d8b83",
"sha256": "8a56b206cdbd4c0df91c1e7225b0c402212db1e89a3f3830c49ded358639a74b"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.0.5.zip",
"has_sig": false,
"md5_digest": "a51548e786ac655d07e77d1cd79d8b83",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 33502,
"upload_time": "2013-05-03T03:19:54",
"url": "https://files.pythonhosted.org/packages/76/b7/550118d1cf64a8dd2a4e485bf30f869a29b916f42db16ea2a16ad6e520aa/django-pyodbc-azure-1.0.5.zip"
}
],
"1.0.6": [
{
"comment_text": "",
"digests": {
"md5": "649eeb254a039ba91380173f92112980",
"sha256": "03c34d60555a2459dab1e415348c4064f3a4b9b1512537d243149d30e4dca061"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.0.6.zip",
"has_sig": false,
"md5_digest": "649eeb254a039ba91380173f92112980",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34678,
"upload_time": "2013-05-11T02:20:20",
"url": "https://files.pythonhosted.org/packages/e7/f2/2d0993a6ae5f1b2850fab3b2f65907ea7eb9768527d8219e47c41db3f110/django-pyodbc-azure-1.0.6.zip"
}
],
"1.0.7": [
{
"comment_text": "",
"digests": {
"md5": "dd74d9ea07886421ca4fbc8f218c8987",
"sha256": "28661d6296d2253e4fae8b617869ab36960fe5082afa5b147910bd367587b9c3"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.0.7.zip",
"has_sig": false,
"md5_digest": "dd74d9ea07886421ca4fbc8f218c8987",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34431,
"upload_time": "2013-07-09T05:00:03",
"url": "https://files.pythonhosted.org/packages/c4/16/e69faca9109c9f6569b4757df8ef103b7e0898aa8af2e1f1248c60ef55cb/django-pyodbc-azure-1.0.7.zip"
}
],
"1.0.8": [
{
"comment_text": "",
"digests": {
"md5": "cd6906e37a39e012d9c4edd31e617976",
"sha256": "2d04a891ecec051a5924ba71248b828f2577314e3e68d3d7c22a8aa50c867dbe"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.0.8.zip",
"has_sig": false,
"md5_digest": "cd6906e37a39e012d9c4edd31e617976",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34248,
"upload_time": "2013-10-31T07:00:04",
"url": "https://files.pythonhosted.org/packages/87/ae/3be7b0cf341a465331f9b1aa4eca7a7cf10e2a574fff39d016ab59e5ca57/django-pyodbc-azure-1.0.8.zip"
}
],
"1.0.9": [
{
"comment_text": "",
"digests": {
"md5": "4f6cf5914799ed3cfd889e7d89a6dce4",
"sha256": "2893b609762d2efc10fdb34cffbde4d45ea24d4aaf1a0bedc050bbcbd171a25f"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.0.9.zip",
"has_sig": false,
"md5_digest": "4f6cf5914799ed3cfd889e7d89a6dce4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34548,
"upload_time": "2013-11-10T03:21:05",
"url": "https://files.pythonhosted.org/packages/a9/44/d905fde5dfba9e9d2d861a72d3d13f9a4a6646b61a443063ccc386626c7a/django-pyodbc-azure-1.0.9.zip"
}
],
"1.1.0": [
{
"comment_text": "",
"digests": {
"md5": "ba3196a6e90f7febb903222383f17513",
"sha256": "0d8afd39a33374ba520f63a7748d5c83c9c2ddfc670e238c0e22bf4d1e140f2b"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.1.0.zip",
"has_sig": false,
"md5_digest": "ba3196a6e90f7febb903222383f17513",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28639,
"upload_time": "2013-11-14T10:22:21",
"url": "https://files.pythonhosted.org/packages/1d/dd/d01b32fae5c61dc2954080cd3d9d6a8732ba4e819294af1157e10a271117/django-pyodbc-azure-1.1.0.zip"
}
],
"1.1.1": [
{
"comment_text": "",
"digests": {
"md5": "e5685fdac609dc6a3d59a7bcb011b950",
"sha256": "19f75850c5d4177181bad1777f5ee538cfe988a6e700ecca29c9230658496b09"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.1.1.zip",
"has_sig": false,
"md5_digest": "e5685fdac609dc6a3d59a7bcb011b950",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 33267,
"upload_time": "2013-12-02T15:02:29",
"url": "https://files.pythonhosted.org/packages/10/4d/7ce1e56bc5726e02651c35e3ad62c685a62497903949e6f7b4aeb9b8856f/django-pyodbc-azure-1.1.1.zip"
}
],
"1.1.2": [
{
"comment_text": "",
"digests": {
"md5": "fbf574d8d1a623429c318318011dfe48",
"sha256": "aadd3448758d4c9126eac484349a9f37cd12a91bd228f8af56429dcc7397c69b"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.1.2.zip",
"has_sig": false,
"md5_digest": "fbf574d8d1a623429c318318011dfe48",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 33573,
"upload_time": "2013-12-20T07:19:57",
"url": "https://files.pythonhosted.org/packages/7e/2c/c6ac5bb5b0a6f07c45f77bc1ae01a8ebb09ad0c71a0beb6586777d7a88f7/django-pyodbc-azure-1.1.2.zip"
}
],
"1.1.3": [
{
"comment_text": "",
"digests": {
"md5": "5f67f5cd80211175e0e7a33406289a6b",
"sha256": "a7ba02d7318bb245802175f65407c04338f8a0e1e77c36714e2a31ed5831eae1"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.1.3.zip",
"has_sig": false,
"md5_digest": "5f67f5cd80211175e0e7a33406289a6b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 33607,
"upload_time": "2013-12-27T07:34:18",
"url": "https://files.pythonhosted.org/packages/71/8e/8e5242c2e4a032869ebbd38acd1825b9e94d8f2b680d2442ca03d346e7dc/django-pyodbc-azure-1.1.3.zip"
}
],
"1.1.4": [
{
"comment_text": "",
"digests": {
"md5": "8a2ae8c685e03e7b4fbd30ed680954c0",
"sha256": "80a6db48232f2fb73f6730207613e3601c3d131c7f549105be6999c80e5bcff2"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.1.4.zip",
"has_sig": false,
"md5_digest": "8a2ae8c685e03e7b4fbd30ed680954c0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 33318,
"upload_time": "2014-01-17T01:28:38",
"url": "https://files.pythonhosted.org/packages/62/b9/202983056b5fcdb980de9aded9125e08a00934633f983e3a2c51e4aec47c/django-pyodbc-azure-1.1.4.zip"
}
],
"1.1.5": [
{
"comment_text": "",
"digests": {
"md5": "9141c1ce91d032f42afabb0634768dcf",
"sha256": "35d5d7bbebcc38fff6c9e60ec094103943b3eec9039e02d887d05e248fdaea64"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.1.5.zip",
"has_sig": false,
"md5_digest": "9141c1ce91d032f42afabb0634768dcf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 33300,
"upload_time": "2014-04-04T12:21:24",
"url": "https://files.pythonhosted.org/packages/29/2a/4089b830694bacb2eb77bb379a5a3c95fbf45920e82be5c48e6059f7f6ab/django-pyodbc-azure-1.1.5.zip"
}
],
"1.1.6": [
{
"comment_text": "",
"digests": {
"md5": "c8f4f152bf41e9dd6c13a51a94637c40",
"sha256": "de8f575a38d5f7e6d82d038d89ac0801a3d1c59e37d7305899d43c79339a97f0"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.1.6.zip",
"has_sig": false,
"md5_digest": "c8f4f152bf41e9dd6c13a51a94637c40",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 32920,
"upload_time": "2014-09-05T08:13:31",
"url": "https://files.pythonhosted.org/packages/18/71/0947ffb05aae0b061e5c1a613f49cc7465149da1eebc0e86f88b547a5910/django-pyodbc-azure-1.1.6.zip"
}
],
"1.1.7": [
{
"comment_text": "",
"digests": {
"md5": "563f0262672621cfbd654a22be181afc",
"sha256": "b2946df975025126e18fce894bf2d5f836bb3791a67e316d0ea86aeeaf923a58"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.1.7.zip",
"has_sig": false,
"md5_digest": "563f0262672621cfbd654a22be181afc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 33115,
"upload_time": "2014-10-07T09:43:12",
"url": "https://files.pythonhosted.org/packages/f1/ee/7bbe14840d17bddb75b9f1e5ec1089f5be27ddaa4d8d3e19bcd3b1520eec/django-pyodbc-azure-1.1.7.zip"
}
],
"1.1.8": [
{
"comment_text": "",
"digests": {
"md5": "4910fb473d5ccbc0fe53d2b483ff1889",
"sha256": "04fc204f7a8ed7698d0524a2c3792a30e59b1cab00eeb1394a92a54ba9955f78"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.1.8.zip",
"has_sig": false,
"md5_digest": "4910fb473d5ccbc0fe53d2b483ff1889",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 33340,
"upload_time": "2015-02-10T07:07:07",
"url": "https://files.pythonhosted.org/packages/04/5a/6641acc6e5c66bdee747e9f12250b9e5b9f625f3b5b0ce9bd62f0229c7e3/django-pyodbc-azure-1.1.8.zip"
}
],
"1.10.0.0": [
{
"comment_text": "",
"digests": {
"md5": "a8bc69144bf9feeb5c01f56bbb6841a3",
"sha256": "6fb4e1a17dd158908550dd9eb31c6fe338bacbdea770ec5d836bd60dd91996df"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.10.0.0.zip",
"has_sig": false,
"md5_digest": "a8bc69144bf9feeb5c01f56bbb6841a3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 42662,
"upload_time": "2016-08-05T16:23:15",
"url": "https://files.pythonhosted.org/packages/72/59/beb2cc45778b75078ae792c5bfbbcfe2790c24b9a5f5bec0a1ba663c8cdc/django-pyodbc-azure-1.10.0.0.zip"
}
],
"1.10.0.1": [
{
"comment_text": "",
"digests": {
"md5": "b146c666d1dc0f5a2e4b26f48fc87857",
"sha256": "ce375b2e986f8cf94d9cb269b5e7a12a802ccfc8989028074daa3ff0bdf58900"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.10.0.1.zip",
"has_sig": false,
"md5_digest": "b146c666d1dc0f5a2e4b26f48fc87857",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 43208,
"upload_time": "2016-08-14T16:27:08",
"url": "https://files.pythonhosted.org/packages/69/ed/521486597a9ab958f8c8d3c61dfe7d8d75965dcd68e60d1dbb91022eb73b/django-pyodbc-azure-1.10.0.1.zip"
}
],
"1.10.4.0": [
{
"comment_text": "",
"digests": {
"md5": "d9c9a397fd998208a3c07c7ed6d53074",
"sha256": "13fdf5676cda3b50fb25262b441796dbb82d00eea89847865be7bd1781b763a2"
},
"downloads": -1,
"filename": "django_pyodbc_azure-1.10.4.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "d9c9a397fd998208a3c07c7ed6d53074",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 38011,
"upload_time": "2016-12-18T12:24:00",
"url": "https://files.pythonhosted.org/packages/08/9f/5c49475b1f9417d32ba92e6e81f5181fe7a0fe73f01a54f62bba408eed87/django_pyodbc_azure-1.10.4.0-py2.py3-none-any.whl"
}
],
"1.11.0.0": [
{
"comment_text": "",
"digests": {
"md5": "27377f94d140dd8c5fd5f7de0f359b6b",
"sha256": "8aa1be546f9b8f2a3ff4d4cd02047e18502c1c37554d8854016cc331480139d8"
},
"downloads": -1,
"filename": "django_pyodbc_azure-1.11.0.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "27377f94d140dd8c5fd5f7de0f359b6b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39272,
"upload_time": "2017-04-27T16:37:10",
"url": "https://files.pythonhosted.org/packages/d8/bd/9fa64ea81e45d05edfbf0288c8e1a7c08ab48955a004ee8528d6fafe6fd6/django_pyodbc_azure-1.11.0.0-py2.py3-none-any.whl"
}
],
"1.11.11.0": [
{
"comment_text": "",
"digests": {
"md5": "c6f3fd901e6d008f85d59abee7d851c6",
"sha256": "6ac0a95e7eac3eeeea4a8bf998a891eee98d5ef77ecae660d673c193d69fef83"
},
"downloads": -1,
"filename": "django_pyodbc_azure-1.11.11.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c6f3fd901e6d008f85d59abee7d851c6",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 40273,
"upload_time": "2018-03-10T00:38:50",
"url": "https://files.pythonhosted.org/packages/3a/2b/fbb1672d49832af4418587cef244a7275ad1d96c4d9885cba8187e78ada5/django_pyodbc_azure-1.11.11.0-py2.py3-none-any.whl"
}
],
"1.11.12.0": [
{
"comment_text": "",
"digests": {
"md5": "955ad77fed724e59b25914208b301ff9",
"sha256": "bda31329272d52746023356b15f8a937b373358b2b4bbc030f356a09d66cd17f"
},
"downloads": -1,
"filename": "django_pyodbc_azure-1.11.12.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "955ad77fed724e59b25914208b301ff9",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 40655,
"upload_time": "2018-04-04T00:23:44",
"url": "https://files.pythonhosted.org/packages/8b/1f/8d753a29cdb4e5aa5e465a7bd887b3d1d2d82c4fd4eab3fd150fc2955b11/django_pyodbc_azure-1.11.12.0-py2.py3-none-any.whl"
}
],
"1.11.12.1": [
{
"comment_text": "",
"digests": {
"md5": "fe9d8bdf7849b731474b56666440ca0e",
"sha256": "9c1292465f29f9bc8e3bea4948bc1f862b015d78e620b28bb6039fba2571c436"
},
"downloads": -1,
"filename": "django_pyodbc_azure-1.11.12.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "fe9d8bdf7849b731474b56666440ca0e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 40671,
"upload_time": "2018-04-13T15:19:15",
"url": "https://files.pythonhosted.org/packages/43/22/95f383e25b117055cf8276d8d2961e1246173f98ecc777e9c231acc27007/django_pyodbc_azure-1.11.12.1-py2.py3-none-any.whl"
}
],
"1.11.13.0": [
{
"comment_text": "",
"digests": {
"md5": "a4683dfea800c6f79064c0aa0e851c6e",
"sha256": "d50de7e53dab270f25b091a009edb3149a3997fd882ecbfc8426a9a147f19bbd"
},
"downloads": -1,
"filename": "django_pyodbc_azure-1.11.13.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a4683dfea800c6f79064c0aa0e851c6e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 40681,
"upload_time": "2018-06-11T00:44:49",
"url": "https://files.pythonhosted.org/packages/a4/b7/56c8ed4e0eccb563975293739a217ed167b2e608f73212aa2c1e9b077dda/django_pyodbc_azure-1.11.13.0-py2.py3-none-any.whl"
}
],
"1.11.13.1": [
{
"comment_text": "",
"digests": {
"md5": "650e4b41c8fa228e546be08c7715b880",
"sha256": "21aa9b2b719df48f0701a4b2512afe258a765222c534ab577dad47add52b9203"
},
"downloads": -1,
"filename": "django_pyodbc_azure-1.11.13.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "650e4b41c8fa228e546be08c7715b880",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 40686,
"upload_time": "2018-06-12T01:57:32",
"url": "https://files.pythonhosted.org/packages/e0/76/78b5748b4a244795181a93182b221891b5e56acbf52e1a3581ed0e8a7936/django_pyodbc_azure-1.11.13.1-py2.py3-none-any.whl"
}
],
"1.11.15.0": [
{
"comment_text": "",
"digests": {
"md5": "0780ba82fc7ec6cc46d8b256cdcbd44b",
"sha256": "cd2ba65e2932d6762af28fe9466f6fbda43cd250876befdec184cdc2cb8a309a"
},
"downloads": -1,
"filename": "django_pyodbc_azure-1.11.15.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0780ba82fc7ec6cc46d8b256cdcbd44b",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 40724,
"upload_time": "2018-08-21T00:37:19",
"url": "https://files.pythonhosted.org/packages/d9/fc/3566807d4aba5da9dd97988a30f986631ed57d9fa7fa427af9c08beb71a7/django_pyodbc_azure-1.11.15.0-py2.py3-none-any.whl"
}
],
"1.11.9.0": [
{
"comment_text": "",
"digests": {
"md5": "e8eda48c6a1094a876ae5a6ec7c77e5c",
"sha256": "187d8cd8bdae372913f214683bba58212092b6285aba9a65b573b47e3cad4a8c"
},
"downloads": -1,
"filename": "django_pyodbc_azure-1.11.9.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "e8eda48c6a1094a876ae5a6ec7c77e5c",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 39851,
"upload_time": "2018-01-28T15:25:40",
"url": "https://files.pythonhosted.org/packages/e6/13/2bca8ed6c842af6389938224cef26b5367385fb144cd3b98a58936873f5b/django_pyodbc_azure-1.11.9.0-py2.py3-none-any.whl"
}
],
"1.2.0": [
{
"comment_text": "",
"digests": {
"md5": "1d9691006d9e197eeac457dd1ec14b7a",
"sha256": "cbe6ce536ae375c8f107af63dd985c6e090a1249ef2c2632f8992c785d9107d9"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.2.0.zip",
"has_sig": false,
"md5_digest": "1d9691006d9e197eeac457dd1ec14b7a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39446,
"upload_time": "2014-09-05T08:14:56",
"url": "https://files.pythonhosted.org/packages/f5/c7/d2fd8c59c4bf2639d75ce7a5cf0c00df600ef8be4b85c274324d190f6f88/django-pyodbc-azure-1.2.0.zip"
}
],
"1.2.1": [
{
"comment_text": "",
"digests": {
"md5": "ceca3ce352b31e34daf5d8adbde134c9",
"sha256": "396af2e629950e30d4e8c6218fe767c76c5b295f8c472ded54c5856f5189549a"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.2.1.zip",
"has_sig": false,
"md5_digest": "ceca3ce352b31e34daf5d8adbde134c9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39623,
"upload_time": "2014-10-07T09:44:41",
"url": "https://files.pythonhosted.org/packages/2e/03/af28f84b2c8f85c0cae246d61bcd034e26463e2f50e0a1f6fd2e52276f3a/django-pyodbc-azure-1.2.1.zip"
}
],
"1.2.10": [
{
"comment_text": "",
"digests": {
"md5": "0277abf55cd786963209c4925641f2b9",
"sha256": "a875597f8c7c9a14891e4cea228bec858bb1ab9aa83efc3f201f75da24351885"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.2.10.zip",
"has_sig": false,
"md5_digest": "0277abf55cd786963209c4925641f2b9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40674,
"upload_time": "2015-07-11T02:21:13",
"url": "https://files.pythonhosted.org/packages/03/d2/f4454fba084af9825042475271f9be2cb9c929272431421a6a0fd61f67d0/django-pyodbc-azure-1.2.10.zip"
}
],
"1.2.11": [
{
"comment_text": "",
"digests": {
"md5": "7d990b740ff406b48ab54a34eb5cb790",
"sha256": "19854c0bd64a61c18b2f8020101b4cdf1a48dab6630d6f071f33bc070f607043"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.2.11.zip",
"has_sig": false,
"md5_digest": "7d990b740ff406b48ab54a34eb5cb790",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41557,
"upload_time": "2015-11-20T00:45:20",
"url": "https://files.pythonhosted.org/packages/14/c4/a130b511cea7da64e8e678661e9c99f1d948266de43957b2a5e8af185b3e/django-pyodbc-azure-1.2.11.zip"
}
],
"1.2.12": [
{
"comment_text": "",
"digests": {
"md5": "8ab1e653aa2ecf182b12a0eb2d441380",
"sha256": "e3f3298abbe9b2eddb5db75d858a14de41368f6783e2bd60a3be29f4d2561a3d"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.2.12.zip",
"has_sig": false,
"md5_digest": "8ab1e653aa2ecf182b12a0eb2d441380",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41661,
"upload_time": "2015-11-26T12:36:54",
"url": "https://files.pythonhosted.org/packages/7a/b6/ad600cfaf3bea875747c58cfe483349eeff5bc09e7ce567144ec1fa08ce0/django-pyodbc-azure-1.2.12.zip"
}
],
"1.2.2": [
{
"comment_text": "",
"digests": {
"md5": "50f478aaad07c5ef240ed5a9385226c9",
"sha256": "3665f69e682fdbd946ad9a6b9fdbe734c1640414c2cd7742af56078781a2923d"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.2.2.zip",
"has_sig": false,
"md5_digest": "50f478aaad07c5ef240ed5a9385226c9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40386,
"upload_time": "2014-10-27T13:03:10",
"url": "https://files.pythonhosted.org/packages/54/b4/61694a64cd90b1a332cd726483bbcb18107c5845d2f15a0fd2dec4083f5d/django-pyodbc-azure-1.2.2.zip"
}
],
"1.2.3": [
{
"comment_text": "",
"digests": {
"md5": "33b0c6a2d63d70a6d563a68cdccda830",
"sha256": "69ab310e9ce10b85f513f8d38a70bd8e6f34e8039396a866a1f0b3268b88bf8a"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.2.3.zip",
"has_sig": false,
"md5_digest": "33b0c6a2d63d70a6d563a68cdccda830",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40159,
"upload_time": "2015-01-19T05:39:20",
"url": "https://files.pythonhosted.org/packages/88/04/912f054ae434560106f3a4ad25afd86e6c528e5f5a12e3ab3b08ae1373d5/django-pyodbc-azure-1.2.3.zip"
}
],
"1.2.4": [
{
"comment_text": "",
"digests": {
"md5": "df258e1f00f3a019245f506fbb1c16a4",
"sha256": "cda81791ef87181fd2d1bcd5eb235a6474c84e2d4f12f556ee257562b52be791"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.2.4.zip",
"has_sig": false,
"md5_digest": "df258e1f00f3a019245f506fbb1c16a4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40160,
"upload_time": "2015-01-31T09:52:28",
"url": "https://files.pythonhosted.org/packages/78/c0/da4b329b686a375f9618fa0215915d759a7cf5499ecd81c8221f08060a18/django-pyodbc-azure-1.2.4.zip"
}
],
"1.2.5": [
{
"comment_text": "",
"digests": {
"md5": "81247f1160cb35e57f086e1797b6ad73",
"sha256": "8eae49280a3077678ac01045906c2c9066c40fda96360670f788228051a05869"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.2.5.zip",
"has_sig": false,
"md5_digest": "81247f1160cb35e57f086e1797b6ad73",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40094,
"upload_time": "2015-02-10T07:07:16",
"url": "https://files.pythonhosted.org/packages/07/aa/d45f2d8bec03bd08347ef72a281e6590dda2320d508c678b26174db98216/django-pyodbc-azure-1.2.5.zip"
}
],
"1.2.6": [
{
"comment_text": "",
"digests": {
"md5": "50a084ef0931bc00498c4c0c16e6d0b1",
"sha256": "a7ba099c699a99e0b8d5db1e308956fc72e0ef2e9dd6417c43a57b24b2257a96"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.2.6.zip",
"has_sig": false,
"md5_digest": "50a084ef0931bc00498c4c0c16e6d0b1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40128,
"upload_time": "2015-03-04T07:15:47",
"url": "https://files.pythonhosted.org/packages/d9/8d/b26a548958041a5b0a4b910549f80ebf3ee33dea9167ca5a3fa4b7338b4a/django-pyodbc-azure-1.2.6.zip"
}
],
"1.2.7": [
{
"comment_text": "",
"digests": {
"md5": "4dcac39dc7cbab4a682cd175f64ebbb6",
"sha256": "ad87a7cc0f652fe79ec83db83e60715781242020a20ab765ec0e611981e3e352"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.2.7.zip",
"has_sig": false,
"md5_digest": "4dcac39dc7cbab4a682cd175f64ebbb6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40136,
"upload_time": "2015-03-12T02:03:21",
"url": "https://files.pythonhosted.org/packages/5b/d8/ba4aadeaf270e7498402a34494e2dd627dde6fe38d207914c71054334e33/django-pyodbc-azure-1.2.7.zip"
}
],
"1.2.8": [
{
"comment_text": "",
"digests": {
"md5": "38c0c6a8ac3d2626ca1da1ea11cfec0d",
"sha256": "4615efa4daf43a4b5264275103e5a178cb481aedcfc905a7863f46ce01936ddf"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.2.8.zip",
"has_sig": false,
"md5_digest": "38c0c6a8ac3d2626ca1da1ea11cfec0d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40281,
"upload_time": "2015-04-10T17:34:13",
"url": "https://files.pythonhosted.org/packages/20/96/ea99e91422fee4b0294995c4a0fa2b632e708d032dcadb8dc7d70353ce35/django-pyodbc-azure-1.2.8.zip"
}
],
"1.2.9": [
{
"comment_text": "",
"digests": {
"md5": "bae5cee44a47d70ae49d04e13c812d3d",
"sha256": "46835a77a93c5c93b5a47d8e78ba749af2f430bb1c2c18ddb7eaa82dd16a594f"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.2.9.zip",
"has_sig": false,
"md5_digest": "bae5cee44a47d70ae49d04e13c812d3d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40389,
"upload_time": "2015-05-05T14:20:11",
"url": "https://files.pythonhosted.org/packages/47/e0/82932321a3c8b722eab1ada06b48d96b5643e3a71dae94a6f9d0751e3619/django-pyodbc-azure-1.2.9.zip"
}
],
"1.8.0.0": [
{
"comment_text": "",
"digests": {
"md5": "6f9d3a3cbd1063fcfdf653e239a76f48",
"sha256": "ad0122ad32fb8010dced5804db1b9b268d0dcd793d177782d13947dc27ab8eac"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.8.0.0.zip",
"has_sig": false,
"md5_digest": "6f9d3a3cbd1063fcfdf653e239a76f48",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39544,
"upload_time": "2015-04-10T17:34:43",
"url": "https://files.pythonhosted.org/packages/0e/d3/fdee73979dd9637b0475ad06cbf935e81f3c6de7bdfeb2d4b93dabd1ca31/django-pyodbc-azure-1.8.0.0.zip"
}
],
"1.8.1.0": [
{
"comment_text": "",
"digests": {
"md5": "32287c48ff6706dc63d1b87479fe7cc6",
"sha256": "8e629d5cad3591100615e68f667eef841d417083fa3e2b5d56aa276b725f556a"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.8.1.0.zip",
"has_sig": false,
"md5_digest": "32287c48ff6706dc63d1b87479fe7cc6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39683,
"upload_time": "2015-05-05T14:20:30",
"url": "https://files.pythonhosted.org/packages/ae/6f/9492449b552d01d98f6cb57fb10eff099b0f1bba62767de97ccbcd32dee1/django-pyodbc-azure-1.8.1.0.zip"
}
],
"1.8.10.0": [
{
"comment_text": "",
"digests": {
"md5": "e984a9e2952bd6794a9f521269eeb00e",
"sha256": "20c512e54a642b10fa4bab4d42e7a394ee111f936ac47101fad5a35611e055bc"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.8.10.0.zip",
"has_sig": false,
"md5_digest": "e984a9e2952bd6794a9f521269eeb00e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41705,
"upload_time": "2016-03-06T04:32:18",
"url": "https://files.pythonhosted.org/packages/21/64/22be0482d32d30e652a1e932495240303bb48b7823018562060b5f7f61fd/django-pyodbc-azure-1.8.10.0.zip"
}
],
"1.8.13.0": [
{
"comment_text": "",
"digests": {
"md5": "09c6c58b91fff4d94a15fa287d9a3202",
"sha256": "be931e03971cbc20ecaee4c91b8ba679afd73b819f0a97243bead1d132f0bde2"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.8.13.0.zip",
"has_sig": false,
"md5_digest": "09c6c58b91fff4d94a15fa287d9a3202",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41810,
"upload_time": "2016-06-02T15:39:08",
"url": "https://files.pythonhosted.org/packages/7a/26/02f04274ea37935067f0395c5e0691b62a2c7d0cb3c29e52997c647a6195/django-pyodbc-azure-1.8.13.0.zip"
}
],
"1.8.14.0": [
{
"comment_text": "",
"digests": {
"md5": "5ac8a2f0023668c6628daac908c7c8fc",
"sha256": "4ab6ce5ef2cae282ba847ea5b44d787587d6164820e09985b8d43f34c92147a0"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.8.14.0.zip",
"has_sig": false,
"md5_digest": "5ac8a2f0023668c6628daac908c7c8fc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 42209,
"upload_time": "2016-08-05T16:22:22",
"url": "https://files.pythonhosted.org/packages/1f/b6/2903686b877d1a0644b804a2366dab1c16638fe7189fdcc112a285d3f472/django-pyodbc-azure-1.8.14.0.zip"
}
],
"1.8.14.1": [
{
"comment_text": "",
"digests": {
"md5": "cf83609ec945e6565e0f069823ea1d72",
"sha256": "688463de21783e860261c3f5b6d2b961f990c00c427c148ff655089b5a27e1b0"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.8.14.1.zip",
"has_sig": false,
"md5_digest": "cf83609ec945e6565e0f069823ea1d72",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 42776,
"upload_time": "2016-08-14T16:26:43",
"url": "https://files.pythonhosted.org/packages/77/68/451afbd45ab458b9ef1b6b2f8a0a46db3912a69777b09d8dc19a02ba14a9/django-pyodbc-azure-1.8.14.1.zip"
}
],
"1.8.17.0": [
{
"comment_text": "",
"digests": {
"md5": "2c00197f9c981b0bd7820ac2ff4aaf40",
"sha256": "00327a8be8e5e9cb52cdac2be4646a30ee1b059b8c10a236ece1af0434c7491d"
},
"downloads": -1,
"filename": "django_pyodbc_azure-1.8.17.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2c00197f9c981b0bd7820ac2ff4aaf40",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 37541,
"upload_time": "2016-12-18T12:23:10",
"url": "https://files.pythonhosted.org/packages/93/b4/b292f3dc140376c49aecd0881a3e614623e139130cbce987f045653e15a0/django_pyodbc_azure-1.8.17.0-py2.py3-none-any.whl"
}
],
"1.8.3.0": [
{
"comment_text": "",
"digests": {
"md5": "d8138132a1239d51fcf35b59a9e4d651",
"sha256": "7aadd57fc8d5e44dcb34d984e375599243870dcd98c88f654b52d326938e32e5"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.8.3.0.zip",
"has_sig": false,
"md5_digest": "d8138132a1239d51fcf35b59a9e4d651",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39919,
"upload_time": "2015-07-11T02:21:27",
"url": "https://files.pythonhosted.org/packages/6a/1c/20310dc6b4380b39336288993a9a4aeb898e6aaa68173838743f8385f0ea/django-pyodbc-azure-1.8.3.0.zip"
}
],
"1.8.6.0": [
{
"comment_text": "",
"digests": {
"md5": "6fe1a55175d664572f3f5a0b1e19fcae",
"sha256": "ace4f81785a50d32d537a4107c0c4ec0ba013130803dfff679976c0448e66df9"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.8.6.0.zip",
"has_sig": false,
"md5_digest": "6fe1a55175d664572f3f5a0b1e19fcae",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40804,
"upload_time": "2015-11-20T00:46:31",
"url": "https://files.pythonhosted.org/packages/fe/c2/6e44d928003849fa18fca274a5f7dc310a0f07d9cddd87713b0143f7b643/django-pyodbc-azure-1.8.6.0.zip"
}
],
"1.8.7.0": [
{
"comment_text": "",
"digests": {
"md5": "21cb0c829c6af4f9044d53da48b3da73",
"sha256": "87461eeeeb03040fc9de5ff3a553b6c184939d4a2cc8c7f41f32a8c778409a50"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.8.7.0.zip",
"has_sig": false,
"md5_digest": "21cb0c829c6af4f9044d53da48b3da73",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40930,
"upload_time": "2015-11-26T12:37:12",
"url": "https://files.pythonhosted.org/packages/cc/f7/999065cf1126c93ba17e7cde13bc40ea05ec8b0e17b2327fd2a2b1379e00/django-pyodbc-azure-1.8.7.0.zip"
}
],
"1.8.7.1": [
{
"comment_text": "",
"digests": {
"md5": "888beff60e0396d23824e16ab9c46822",
"sha256": "3b9ddbf3f9708cc173844dc288f9d3798a5fc041be111fc333440cd5c05232c5"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.8.7.1.zip",
"has_sig": false,
"md5_digest": "888beff60e0396d23824e16ab9c46822",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41415,
"upload_time": "2015-12-04T14:55:47",
"url": "https://files.pythonhosted.org/packages/0e/c1/5685e941358d793e6bd57c1762e1d5ddd8601ead54c445be7e391c0b400d/django-pyodbc-azure-1.8.7.1.zip"
}
],
"1.8.7.2": [
{
"comment_text": "",
"digests": {
"md5": "512475b918c1a59dd8c770b353da2cac",
"sha256": "75576dd56fcfdc5d81243b16005f423bb9dbae682331dcef7d1c7e6a783bb48d"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.8.7.2.zip",
"has_sig": false,
"md5_digest": "512475b918c1a59dd8c770b353da2cac",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41471,
"upload_time": "2015-12-07T13:13:27",
"url": "https://files.pythonhosted.org/packages/ef/f1/f304254594ea3c5415e7eec723c97f08baf11964ae2787882a19d7d09cdd/django-pyodbc-azure-1.8.7.2.zip"
}
],
"1.8.9.0": [
{
"comment_text": "",
"digests": {
"md5": "2e97a185d0d00e160f1c689fde4537d6",
"sha256": "f19472b3d8769ab9aad554b59e5b6f48cf161a3733d0af23a7714eaf7be5e39b"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.8.9.0.zip",
"has_sig": false,
"md5_digest": "2e97a185d0d00e160f1c689fde4537d6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41623,
"upload_time": "2016-02-15T01:24:36",
"url": "https://files.pythonhosted.org/packages/b1/bb/3f6ac577f730cb173dfed23f5fec83449c6405633f308f523ff0b1c7218d/django-pyodbc-azure-1.8.9.0.zip"
}
],
"1.9.0.0": [
{
"comment_text": "",
"digests": {
"md5": "66cd9d35faec5c50c9e13bbd7093f2a6",
"sha256": "00a5191971bc2ee40384aca7084d9b213f137373abfa42683977d2f7dc220a1a"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.9.0.0.zip",
"has_sig": false,
"md5_digest": "66cd9d35faec5c50c9e13bbd7093f2a6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41646,
"upload_time": "2015-12-04T14:56:07",
"url": "https://files.pythonhosted.org/packages/99/ed/4a5c2d0c677fc908d96355071e63b6894426b02b005010274c8fd5300218/django-pyodbc-azure-1.9.0.0.zip"
}
],
"1.9.0.1": [
{
"comment_text": "",
"digests": {
"md5": "610aa6c50ad98183942150557939bf19",
"sha256": "49e4487b92409338c30ab574e23252afe4b507639c646d84c6b4aae8978b0386"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.9.0.1.zip",
"has_sig": false,
"md5_digest": "610aa6c50ad98183942150557939bf19",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41624,
"upload_time": "2015-12-07T13:13:45",
"url": "https://files.pythonhosted.org/packages/db/ec/24c109ff17da53cd75c6a291d69f6b576fe6e7ef695d7a4675c01f33a9ec/django-pyodbc-azure-1.9.0.1.zip"
}
],
"1.9.1.0": [
{
"comment_text": "",
"digests": {
"md5": "845f399cd4767e4172bbd37450b70373",
"sha256": "2c27c39da929a86b09beb142827e3205fea0eb93521b779e4848f568eef47a31"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.9.1.0.zip",
"has_sig": false,
"md5_digest": "845f399cd4767e4172bbd37450b70373",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41597,
"upload_time": "2016-01-08T14:06:31",
"url": "https://files.pythonhosted.org/packages/1b/71/a1bde38386fa2ae2392359ebbabd7a2706c4aabd5f6483745014eb2264f0/django-pyodbc-azure-1.9.1.0.zip"
}
],
"1.9.12.0": [
{
"comment_text": "",
"digests": {
"md5": "0eade31e3ed2f2efee029cc00dda0366",
"sha256": "1ca9e60bc15e2e5d0b4371b3d88e3e7eac8fbc99dea7fa68bae426da727f40d3"
},
"downloads": -1,
"filename": "django_pyodbc_azure-1.9.12.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "0eade31e3ed2f2efee029cc00dda0366",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 37678,
"upload_time": "2016-12-18T12:23:39",
"url": "https://files.pythonhosted.org/packages/91/72/4d84783aec26afec0bc66e2a452a45d340278bf1179b4f496f07dd6bd3bf/django_pyodbc_azure-1.9.12.0-py2.py3-none-any.whl"
}
],
"1.9.2.0": [
{
"comment_text": "",
"digests": {
"md5": "43ee579636c37ad118cd00c544e74c86",
"sha256": "23abc39bdc608b8ecd0dbeb4f6323836f274b45db88aa5133ff3db8aee26090a"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.9.2.0.zip",
"has_sig": false,
"md5_digest": "43ee579636c37ad118cd00c544e74c86",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41751,
"upload_time": "2016-02-15T01:24:53",
"url": "https://files.pythonhosted.org/packages/18/12/f6fa590073f715fd51a97524e54c9684359b3b6e676df00375dacba0263e/django-pyodbc-azure-1.9.2.0.zip"
}
],
"1.9.3.0": [
{
"comment_text": "",
"digests": {
"md5": "7bce7099d9ff27bd0439a2b08f87b343",
"sha256": "89462006d46247cdf8e799a5928c7f6c011a6146fd479a6d9914fdfb4e1ef949"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.9.3.0.zip",
"has_sig": false,
"md5_digest": "7bce7099d9ff27bd0439a2b08f87b343",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41783,
"upload_time": "2016-03-06T04:34:11",
"url": "https://files.pythonhosted.org/packages/c0/b7/54c81943c287afdbbf2f74e1e372c4ba42e17e226b45b6063c2bc7b94b99/django-pyodbc-azure-1.9.3.0.zip"
}
],
"1.9.6.0": [
{
"comment_text": "",
"digests": {
"md5": "34f01936564354928833903ef862d5dc",
"sha256": "e5aa5e2a7746ff5d498fa5ecd226bccf1b2b3036a703003cf54723fcf0d940f5"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.9.6.0.zip",
"has_sig": false,
"md5_digest": "34f01936564354928833903ef862d5dc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41891,
"upload_time": "2016-06-02T15:40:46",
"url": "https://files.pythonhosted.org/packages/24/f2/bfd7cb873b0a59dfaf255bdf4332a921c8b1d879cb7f3cde96e56035a515/django-pyodbc-azure-1.9.6.0.zip"
}
],
"1.9.9.0": [
{
"comment_text": "",
"digests": {
"md5": "6d1edf5e9ee7f1948600ca56b453f69d",
"sha256": "f9dba573d05086957031612666481dae024063a601866ede0704fa906f17dd1b"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.9.9.0.zip",
"has_sig": false,
"md5_digest": "6d1edf5e9ee7f1948600ca56b453f69d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 42328,
"upload_time": "2016-08-05T16:22:49",
"url": "https://files.pythonhosted.org/packages/9d/56/36b78331b943e6aa44edade768e3f1520577ab92b4edd62bb0b8d19be9a3/django-pyodbc-azure-1.9.9.0.zip"
}
],
"1.9.9.1": [
{
"comment_text": "",
"digests": {
"md5": "34274aaa7e7d6858c625f85779ecc81b",
"sha256": "fd649f942133291b60bc1b10e026046a26323dc087cef5c9bde210079a23dca7"
},
"downloads": -1,
"filename": "django-pyodbc-azure-1.9.9.1.zip",
"has_sig": false,
"md5_digest": "34274aaa7e7d6858c625f85779ecc81b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 42856,
"upload_time": "2016-08-14T16:26:56",
"url": "https://files.pythonhosted.org/packages/fd/c6/12399b3486e8753c1774bcb25621798d40ba7e100062573c455792b51bf3/django-pyodbc-azure-1.9.9.1.zip"
}
],
"2.0.1.0": [
{
"comment_text": "",
"digests": {
"md5": "118592d935b9342c77f136f0fa06ee0d",
"sha256": "b736b7dd37eb96d5bdcbd470431857c6c70d3fc506d201712028c0b62cc8fd42"
},
"downloads": -1,
"filename": "django_pyodbc_azure-2.0.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "118592d935b9342c77f136f0fa06ee0d",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 38789,
"upload_time": "2018-01-28T15:28:18",
"url": "https://files.pythonhosted.org/packages/d1/db/e2ce1b0ae4da70d8dd81e2f7636b8c61beb597c79bb8cd11b85d233a6e7d/django_pyodbc_azure-2.0.1.0-py3-none-any.whl"
}
],
"2.0.3.0": [
{
"comment_text": "",
"digests": {
"md5": "1f2a8871fc9767436c5596a8d2700b5d",
"sha256": "1c9ae509fa5a9f933b4a29faced54def37d1cfd188f044861fb915014bc2bf3a"
},
"downloads": -1,
"filename": "django_pyodbc_azure-2.0.3.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1f2a8871fc9767436c5596a8d2700b5d",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 39267,
"upload_time": "2018-03-10T00:40:04",
"url": "https://files.pythonhosted.org/packages/b6/f4/c58bfcfec21cc5bd0c964189439ba70c710836a86c07a8f1d876d9dc9427/django_pyodbc_azure-2.0.3.0-py3-none-any.whl"
}
],
"2.0.4.0": [
{
"comment_text": "",
"digests": {
"md5": "275e9ebf67469c33cc95b34707bca75c",
"sha256": "a1e8283cd7230898d36802bc8b07fde2e250c6d938b66e6c7082d47f197ddfed"
},
"downloads": -1,
"filename": "django_pyodbc_azure-2.0.4.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "275e9ebf67469c33cc95b34707bca75c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 39736,
"upload_time": "2018-04-04T00:27:00",
"url": "https://files.pythonhosted.org/packages/f3/c8/f619cedce53d76d71083fe5e6a15aa0822a734f64046ed04ca583a81fc78/django_pyodbc_azure-2.0.4.0-py3-none-any.whl"
}
],
"2.0.4.1": [
{
"comment_text": "",
"digests": {
"md5": "536c5b706eb2a5f9c1bd054f16f8adc6",
"sha256": "ef63fb9824d0dbe9a34cc669861af2ca3e401f2453d1645f4a03c5ebea0d169a"
},
"downloads": -1,
"filename": "django_pyodbc_azure-2.0.4.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "536c5b706eb2a5f9c1bd054f16f8adc6",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 39753,
"upload_time": "2018-04-13T15:20:21",
"url": "https://files.pythonhosted.org/packages/23/2c/b4f0254c1c746e7a44f185e5d2ea4b5f6fc17ce5909b56af4101cc37f2e9/django_pyodbc_azure-2.0.4.1-py3-none-any.whl"
}
],
"2.0.6.0": [
{
"comment_text": "",
"digests": {
"md5": "1a80147fc6debcb5f7be8379c706709e",
"sha256": "8b921ee50e533ae9e678ba1a5d36d23f6169430e95292d8fc415c84368592fd0"
},
"downloads": -1,
"filename": "django_pyodbc_azure-2.0.6.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1a80147fc6debcb5f7be8379c706709e",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 39764,
"upload_time": "2018-06-11T00:48:19",
"url": "https://files.pythonhosted.org/packages/7e/83/1a57ab2b98502c25fcd20ff06e30c78372d6466f10b781b01b86dbcfbe5b/django_pyodbc_azure-2.0.6.0-py3-none-any.whl"
}
],
"2.0.6.1": [
{
"comment_text": "",
"digests": {
"md5": "dc13bf433c1f59d1af0572d0a5d46c8a",
"sha256": "f60852c2deb52fabd0f2b6ca3a40878dc83aafbe731520de7cf28a203706a34a"
},
"downloads": -1,
"filename": "django_pyodbc_azure-2.0.6.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "dc13bf433c1f59d1af0572d0a5d46c8a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 39769,
"upload_time": "2018-06-12T01:58:44",
"url": "https://files.pythonhosted.org/packages/3d/07/b048a90452d6a7d468a74433afeae163cede0388436815526a92425407d6/django_pyodbc_azure-2.0.6.1-py3-none-any.whl"
}
],
"2.0.8.0": [
{
"comment_text": "",
"digests": {
"md5": "d2af492feeccfd373d9feddffb495c41",
"sha256": "f5a9ed1a67a8e87b3bb585752559da9fc76d9bd5ddf226e1a5d83772beb94ba4"
},
"downloads": -1,
"filename": "django_pyodbc_azure-2.0.8.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "d2af492feeccfd373d9feddffb495c41",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 39798,
"upload_time": "2018-08-21T00:38:59",
"url": "https://files.pythonhosted.org/packages/23/cf/6076f04ab9b464d59f64121824f23e03e956ec36caf20cf608043d7d6c5e/django_pyodbc_azure-2.0.8.0-py3-none-any.whl"
}
],
"2.1.0.0": [
{
"comment_text": "",
"digests": {
"md5": "4bfdee7ad4a8fd99377a235867d563f9",
"sha256": "1fa3b31f4432ef2c90c434b284ad093478f8221121dafef05fafbe2c4d872211"
},
"downloads": -1,
"filename": "django_pyodbc_azure-2.1.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "4bfdee7ad4a8fd99377a235867d563f9",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 39653,
"upload_time": "2018-08-21T00:40:17",
"url": "https://files.pythonhosted.org/packages/18/ab/133c68bbea94839d8f3b8b4aea4f70e1c6b8ac929aba4adbadc458566a76/django_pyodbc_azure-2.1.0.0-py3-none-any.whl"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "4bfdee7ad4a8fd99377a235867d563f9",
"sha256": "1fa3b31f4432ef2c90c434b284ad093478f8221121dafef05fafbe2c4d872211"
},
"downloads": -1,
"filename": "django_pyodbc_azure-2.1.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "4bfdee7ad4a8fd99377a235867d563f9",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 39653,
"upload_time": "2018-08-21T00:40:17",
"url": "https://files.pythonhosted.org/packages/18/ab/133c68bbea94839d8f3b8b4aea4f70e1c6b8ac929aba4adbadc458566a76/django_pyodbc_azure-2.1.0.0-py3-none-any.whl"
}
]
}