error-simplesqlite


Nameerror-simplesqlite JSON
Version 0.0.1 PyPI version JSON
download
home_pagehttps://github.com/carterror/simplesqlite
SummarySimplesqlite is a sqlite3 based python library that provides a simple interface to communicate with a sqlite database
upload_time2023-08-17 17:45:19
maintainer
docs_urlNone
authorCarlos Brayan
requires_python
licenseCreative Commons
keywords db sqlite
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ## SimpleSQLite Library

### Simplesqlite is a sqlite3 based python library that provides a simple interface to communicate with a sqlite database

```python
from simplesqlite import SSQLite, Field

def example():
    db = SSQLite()

    db.create('user', Field('name').primary().text(), Field('age').integer().null())

    db.insert('user', {
        "name": "Carlos1",
        "age": 24
    })
```


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/carterror/simplesqlite",
    "name": "error-simplesqlite",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "db,sqlite",
    "author": "Carlos Brayan",
    "author_email": "carlos.bramila98@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/4c/a2/aa1007a1e8770904aa3e59ed3fe8e6a2eed181ff35ba22bf9b5ce1fe1ec6/error-simplesqlite-0.0.1.tar.gz",
    "platform": null,
    "description": "## SimpleSQLite Library\n\n### Simplesqlite is a sqlite3 based python library that provides a simple interface to communicate with a sqlite database\n\n```python\nfrom simplesqlite import SSQLite, Field\n\ndef example():\n    db = SSQLite()\n\n    db.create('user', Field('name').primary().text(), Field('age').integer().null())\n\n    db.insert('user', {\n        \"name\": \"Carlos1\",\n        \"age\": 24\n    })\n```\n\n",
    "bugtrack_url": null,
    "license": "Creative Commons",
    "summary": "Simplesqlite is a sqlite3 based python library that provides a simple interface to communicate with a sqlite database",
    "version": "0.0.1",
    "project_urls": {
        "Download": "https://github.com/carterror/simplesqlite/tarbal/0.0.1",
        "Homepage": "https://github.com/carterror/simplesqlite"
    },
    "split_keywords": [
        "db",
        "sqlite"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ca2aa1007a1e8770904aa3e59ed3fe8e6a2eed181ff35ba22bf9b5ce1fe1ec6",
                "md5": "83d842728b2eb0bc14cd0146fbceddeb",
                "sha256": "0c74f1b9d90864095f3673603c46d48ece848c398c89b23ca3f8e81a29455f0d"
            },
            "downloads": -1,
            "filename": "error-simplesqlite-0.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "83d842728b2eb0bc14cd0146fbceddeb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2159,
            "upload_time": "2023-08-17T17:45:19",
            "upload_time_iso_8601": "2023-08-17T17:45:19.405228Z",
            "url": "https://files.pythonhosted.org/packages/4c/a2/aa1007a1e8770904aa3e59ed3fe8e6a2eed181ff35ba22bf9b5ce1fe1ec6/error-simplesqlite-0.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-17 17:45:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "carterror",
    "github_project": "simplesqlite",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "error-simplesqlite"
}
        
Elapsed time: 0.10570s