nichirin


Namenichirin JSON
Version 0.0.1 PyPI version JSON
download
home_pageNone
SummaryTODO
upload_time2024-04-13 21:04:57
maintainerNone
docs_urlNone
authorNone
requires_python>=3.6
licenseMIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files, to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords retrieval augmentation vector database natural language processing machine learning deep learning artificial intelligence
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Nichirin: A custom search framework featuring augmented generation with retrieval capabilities.

## Overview
**Nichirin** serves as an advanced layer atop Apache Solr, facilitating seamless data indexing operations.

1. **What is Nichirin?**
   - **Nichirin** acts as a surface or layer on top of **Apache Solr**, making data indexing a breeze.
   - It abstracts away the complexities of Solr indexing, allowing users to focus on providing their data without worrying about the nitty-gritty details.

2. **Key Features:**
   - **Multi-level Crawling**: Performs multi-level web crawling utilizing a depth-first search methodology, with text indexing and retrieval facilitated through Apache Solr.
   - **Efficient Indexing**: Integrated Apache Spark for parallel processing of URLs, improving the scalability and efficiency of both web crawling and text indexing.
   - **Python package**: Available as a Python package on PyPI for easy installation and integration

<!-- '''3. **Getting Started:**
   - **Installation**: Clone this repository and follow the installation instructions in the Installation Guide.
   - **Usage**:
     - Execute `nichirin.py`.
     - Input your data or specify the data source.
     - Follow the provided commands to initiate indexing.
     - Sit back and let Nichirin handle the rest!

4. **Example Usage:**
   ```bash
   $ python nichirin.py
   Welcome to Nichirin!
   Please provide your data source (CSV, JSON, or database connection string):
   > data.csv
   Data source accepted. Initializing indexing...
   Indexing complete! Your data is now searchable via Solr.  -->
   
## Commands
* `install-solr` to install solr
* `create-core --core <core name>` to create solr core, 
* `partition-data --path <path to the dataset>` to partition the data
* `pipeline --path <path to the dataset>` generate embeddings of the partition data
* `index-solr --data-path <path to dataset> --core <core to which the data needs to be sent>` index the data  
* `query-solr --input_sen <input sen> --core_name <core name to query from>` query the data from solr
* `seed-urls --core <core name> --urls <urls separted with commas>` to add the seed urls
* `start-crawler` to start the web crawler
* `start-serve` to start the web server

## Quickstart
1. Begin by executing the `install-solr` command to install the Solr application.
2. Next, create the cores using the `create-core` command.
3. After setting up Solr and creating the cores, add seed URLs by running the `seed-urls` command.
4. Once the seed URLs are added, initiate the crawling process with the `start-crawler` command. Be patient, as this step may take some time.
5. Finally, to view the results, launch the Flask web app using the `start-serve` command.

<!-- * Run `install-solr` to install the solr application.
* To create the cores, run `create-core` command.
* Once after setting up the solr, creating cores run `seed-urls` command to add seed urls.
* Now that you have added seed urls, run `start-crawler` commad, this might take a while.
* Once the crawling is completed, to view the results run  the command `start-serve` this will start the flask web app. -->

Contributing and Feedback:
We welcome contributions! If you’d like to enhance Nichirin or report issues, feel free to submit a pull request.
For feedback or questions, open an issue on our GitHub repository.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "nichirin",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "Shivani Gowda KS <shivanigowdaks@gmail.com>",
    "keywords": "retrieval augmentation, vector database, natural language processing, machine learning, deep learning, artificial intelligence",
    "author": null,
    "author_email": "Shivani Gowda KS <shivanigowdaks@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/7b/ba/9e0884ed1446ce8762863ca18c9ed4f4055bfa404162b58d45054a0264bd/nichirin-0.0.1.tar.gz",
    "platform": null,
    "description": "# Nichirin: A custom search framework featuring augmented generation with retrieval capabilities.\n\n## Overview\n**Nichirin** serves as an advanced layer atop Apache Solr, facilitating seamless data indexing operations.\n\n1. **What is Nichirin?**\n   - **Nichirin** acts as a surface or layer on top of **Apache Solr**, making data indexing a breeze.\n   - It abstracts away the complexities of Solr indexing, allowing users to focus on providing their data without worrying about the nitty-gritty details.\n\n2. **Key Features:**\n   - **Multi-level Crawling**: Performs multi-level web crawling utilizing a depth-first search methodology, with text indexing and retrieval facilitated through Apache Solr.\n   - **Efficient Indexing**: Integrated Apache Spark for parallel processing of URLs, improving the scalability and efficiency of both web crawling and text indexing.\n   - **Python package**: Available as a Python package on PyPI for easy installation and integration\n\n<!-- '''3. **Getting Started:**\n   - **Installation**: Clone this repository and follow the installation instructions in the Installation Guide.\n   - **Usage**:\n     - Execute `nichirin.py`.\n     - Input your data or specify the data source.\n     - Follow the provided commands to initiate indexing.\n     - Sit back and let Nichirin handle the rest!\n\n4. **Example Usage:**\n   ```bash\n   $ python nichirin.py\n   Welcome to Nichirin!\n   Please provide your data source (CSV, JSON, or database connection string):\n   > data.csv\n   Data source accepted. Initializing indexing...\n   Indexing complete! Your data is now searchable via Solr.  -->\n   \n## Commands\n* `install-solr` to install solr\n* `create-core --core <core name>` to create solr core, \n* `partition-data --path <path to the dataset>` to partition the data\n* `pipeline --path <path to the dataset>` generate embeddings of the partition data\n* `index-solr --data-path <path to dataset> --core <core to which the data needs to be sent>` index the data  \n* `query-solr --input_sen <input sen> --core_name <core name to query from>` query the data from solr\n* `seed-urls --core <core name> --urls <urls separted with commas>` to add the seed urls\n* `start-crawler` to start the web crawler\n* `start-serve` to start the web server\n\n## Quickstart\n1. Begin by executing the `install-solr` command to install the Solr application.\n2. Next, create the cores using the `create-core` command.\n3. After setting up Solr and creating the cores, add seed URLs by running the `seed-urls` command.\n4. Once the seed URLs are added, initiate the crawling process with the `start-crawler` command. Be patient, as this step may take some time.\n5. Finally, to view the results, launch the Flask web app using the `start-serve` command.\n\n<!-- * Run `install-solr` to install the solr application.\n* To create the cores, run `create-core` command.\n* Once after setting up the solr, creating cores run `seed-urls` command to add seed urls.\n* Now that you have added seed urls, run `start-crawler` commad, this might take a while.\n* Once the crawling is completed, to view the results run  the command `start-serve` this will start the flask web app. -->\n\nContributing and Feedback:\nWe welcome contributions! If you\u2019d like to enhance Nichirin or report issues, feel free to submit a pull request.\nFor feedback or questions, open an issue on our GitHub repository.\n",
    "bugtrack_url": null,
    "license": "MIT License  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files, to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "TODO",
    "version": "0.0.1",
    "project_urls": null,
    "split_keywords": [
        "retrieval augmentation",
        " vector database",
        " natural language processing",
        " machine learning",
        " deep learning",
        " artificial intelligence"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e3f3caebdcb48b57b3f293b0b23c31564011e1c2fdbf1abc18105f713b69a8e",
                "md5": "f5d694f996c57aaaf174d7f200221dc4",
                "sha256": "608e901ec1dc90237ea616f513c1c7f6d077beacd275a5727aa641fde1f07634"
            },
            "downloads": -1,
            "filename": "nichirin-0.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f5d694f996c57aaaf174d7f200221dc4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 18038,
            "upload_time": "2024-04-13T21:04:56",
            "upload_time_iso_8601": "2024-04-13T21:04:56.074311Z",
            "url": "https://files.pythonhosted.org/packages/3e/3f/3caebdcb48b57b3f293b0b23c31564011e1c2fdbf1abc18105f713b69a8e/nichirin-0.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bba9e0884ed1446ce8762863ca18c9ed4f4055bfa404162b58d45054a0264bd",
                "md5": "416f9e4dd529709070e16705faca0ae2",
                "sha256": "dad328896bb7ed37bf076c90e2485defe615d522d817032d0ac134a4bd867923"
            },
            "downloads": -1,
            "filename": "nichirin-0.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "416f9e4dd529709070e16705faca0ae2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 15534,
            "upload_time": "2024-04-13T21:04:57",
            "upload_time_iso_8601": "2024-04-13T21:04:57.899255Z",
            "url": "https://files.pythonhosted.org/packages/7b/ba/9e0884ed1446ce8762863ca18c9ed4f4055bfa404162b58d45054a0264bd/nichirin-0.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-13 21:04:57",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "nichirin"
}
        
Elapsed time: 0.23169s