structifyai


Namestructifyai JSON
Version 0.34.0 PyPI version JSON
download
home_pageNone
SummaryMicrosoft Structify Client Library for Python
upload_time2024-04-27 19:18:20
maintainerNone
docs_urlNone
authorMicrosoft Corporation
requires_python>=3.8
licenseMIT License
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Structify
[Screenshot](assets/logo.png)

## Getting started

### Installating the package

```bash
pip install structify.ai
```

```python
# First, define the schema of your dataset as a pydantic model
class Person(BaseModel):
    name: str
    job_title: str
    company: str

# Next, create a dataset with that schema
structify.dataset.create(name = "my_network", tables = [Person.schema()])

# Then, create an agent to index information from defined sources for your dataset
structify.agents.create(name = "my_network", source = [Source.Internet(websites = ["linkedin.com"]), Source.Document(path = "contact_cards/*")])

# Finally, let our agents structify those sources into a dataset for you
structify.it("my_network")
```


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "structifyai",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Microsoft Corporation",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/65/d3/4164e96a1054c7ee97a37522ec5633b70b81f135f9bbb404ddfee3c7a456/structifyai-0.34.0.tar.gz",
    "platform": null,
    "description": "# Structify\n[Screenshot](assets/logo.png)\n\n## Getting started\n\n### Installating the package\n\n```bash\npip install structify.ai\n```\n\n```python\n# First, define the schema of your dataset as a pydantic model\nclass Person(BaseModel):\n    name: str\n    job_title: str\n    company: str\n\n# Next, create a dataset with that schema\nstructify.dataset.create(name = \"my_network\", tables = [Person.schema()])\n\n# Then, create an agent to index information from defined sources for your dataset\nstructify.agents.create(name = \"my_network\", source = [Source.Internet(websites = [\"linkedin.com\"]), Source.Document(path = \"contact_cards/*\")])\n\n# Finally, let our agents structify those sources into a dataset for you\nstructify.it(\"my_network\")\n```\n\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Microsoft Structify Client Library for Python",
    "version": "0.34.0",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0495202872b395fb9cd5e0ec2d599c11a33a55dbaeaae930f9538ef6100f5275",
                "md5": "570794df05b566c34146332925555fa6",
                "sha256": "dd515ca93579bd0738c457451fe836b0daa527132432ea1975ca8b87f53874b7"
            },
            "downloads": -1,
            "filename": "structifyai-0.34.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "570794df05b566c34146332925555fa6",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 39703,
            "upload_time": "2024-04-27T19:18:19",
            "upload_time_iso_8601": "2024-04-27T19:18:19.323452Z",
            "url": "https://files.pythonhosted.org/packages/04/95/202872b395fb9cd5e0ec2d599c11a33a55dbaeaae930f9538ef6100f5275/structifyai-0.34.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65d34164e96a1054c7ee97a37522ec5633b70b81f135f9bbb404ddfee3c7a456",
                "md5": "dd292bce9b22bd5ebafcd40aae9f96fe",
                "sha256": "f6337e7248f3d091e4c8be95e2bc8e6fa82677f143c54c0259d41186d10221da"
            },
            "downloads": -1,
            "filename": "structifyai-0.34.0.tar.gz",
            "has_sig": false,
            "md5_digest": "dd292bce9b22bd5ebafcd40aae9f96fe",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 34671,
            "upload_time": "2024-04-27T19:18:20",
            "upload_time_iso_8601": "2024-04-27T19:18:20.532373Z",
            "url": "https://files.pythonhosted.org/packages/65/d3/4164e96a1054c7ee97a37522ec5633b70b81f135f9bbb404ddfee3c7a456/structifyai-0.34.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-27 19:18:20",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "structifyai"
}
        
Elapsed time: 0.34761s