Texo


NameTexo JSON
Version 0.0.4 PyPI version JSON
download
home_pagehttps://github.com/Sourabh20022002/Texo
SummarySentiment Analysis Multiple language and for all products
upload_time2023-07-09 15:34:19
maintainer
docs_urlNone
authorSourabh singh
requires_python
license
keywords python sentiment nlp tokenizer text-analyzer sockets torch pil torchvision
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Texo

Under construction! Not ready for use yet! Currently experimenting and planning!

Developed by Sourabh Singh from Neuroins(c) 2023

## Examples of How To Use (Buggy Alpha Version)

Predicating Sentimental Analysis in English

```python
from Texo.Sentimental.Analysis import Sentitweeten

Analysis = Sentitweeten()
Out = Analysis.Tweet_analy('Analysis this Tweet')
print(out)
```

Predicating Sentimental Analysis in Hindi

```python
from Texo.Sentimental.Analysis import Sentitweeten

Analysis = Sentitweethn()
Out = Analysis.Tweet_anal('Analysis this Tweet')
print(out)
```

Find all stop_words from Text

```python
from Texo.Word.texo import tex
x = tex()
er = x.stop_words('This is a sample text with some stop words in it.')
print(er)
```


Find Summary from Text and number of Points of user Choice

```python
from Texo.Word.texo import tex
x = tex()

text = "In literary theory, a text is any object that can be  whether this object is a work of  an arrangement of buildings on a city block, or styles of clothing. " \
       "It is a coherent set of signs that transmits some kind of informative message." \
       "This set of signs is considered in terms of the informative message's content, rather than in terms of its physical form or the medium in which it is represented.  " \
       "Within the field of literary criticism, also refers to the original information content of a particular piece of writing; that is, the "text" of a work is that primal symbolic arrangement of letters as originally composed, apart from later alterations, deterioration, commentary, translations, paratext, etc." \
       "et eleifend tortor mauris in dui. Vivamus ut pulvinar mauris, eget fermentum metus. " \
       "Cras nec varius ipsum. Sed sed neque vel ante vulputate gravida id a nisl. " \
       "Praesent facilisis imperdiet elit at rhoncus. Morbi ac scelerisque risus."

summary = x.summary(text, num_bullet_points=10)
print(summary)
```


Unet for Image

```python
from Texo.Unet import UnetM
im = UnetM()
im.Imageprepocess('image_path')

#Display image
im.show()
```

Tokenize of Text and pos
```python
from Texo.Word.texo import tex

#tokenize text without stop-words
tokenize = tex()
words = tokenize.tokenize('This is going Awesome')
print(words)

#tokenize text with stop-words
tokenize = tex()
words = tokenize.tokenize_stopwords('This is going Awesome')
print(words)

#find POS from tokens and return pos in form of array
tokenize = tex()
tokens = ['Running', 'dogs', 'are', 'happier', 'than', 'walked', 'dogs', 'in', 'parks.']
words = tokenize.pos_tag(tokens)
print(words)

#return output in form of token of array
#Display image
im.show()
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Sourabh20022002/Texo",
    "name": "Texo",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "python,Sentiment,NLP,Tokenizer,Text-Analyzer,sockets,torch,PIL,torchvision",
    "author": "Sourabh singh",
    "author_email": "Sourabh52.singh@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/15/63/530a49d47193fa4256820a32704605bce3b7620ac87e830b3444d5010f5d/Texo-0.0.4.tar.gz",
    "platform": null,
    "description": "# Texo\r\n\r\nUnder construction! Not ready for use yet! Currently experimenting and planning!\r\n\r\nDeveloped by Sourabh Singh from Neuroins(c) 2023\r\n\r\n## Examples of How To Use (Buggy Alpha Version)\r\n\r\nPredicating Sentimental Analysis in English\r\n\r\n```python\r\nfrom Texo.Sentimental.Analysis import Sentitweeten\r\n\r\nAnalysis = Sentitweeten()\r\nOut = Analysis.Tweet_analy('Analysis this Tweet')\r\nprint(out)\r\n```\r\n\r\nPredicating Sentimental Analysis in Hindi\r\n\r\n```python\r\nfrom Texo.Sentimental.Analysis import Sentitweeten\r\n\r\nAnalysis = Sentitweethn()\r\nOut = Analysis.Tweet_anal('Analysis this Tweet')\r\nprint(out)\r\n```\r\n\r\nFind all stop_words from Text\r\n\r\n```python\r\nfrom Texo.Word.texo import tex\r\nx = tex()\r\ner = x.stop_words('This is a sample text with some stop words in it.')\r\nprint(er)\r\n```\r\n\r\n\r\nFind Summary from Text and number of Points of user Choice\r\n\r\n```python\r\nfrom Texo.Word.texo import tex\r\nx = tex()\r\n\r\ntext = \"In literary theory, a text is any object that can be  whether this object is a work of  an arrangement of buildings on a city block, or styles of clothing. \" \\\r\n       \"It is a coherent set of signs that transmits some kind of informative message.\" \\\r\n       \"This set of signs is considered in terms of the informative message's content, rather than in terms of its physical form or the medium in which it is represented.  \" \\\r\n       \"Within the field of literary criticism, also refers to the original information content of a particular piece of writing; that is, the \"text\" of a work is that primal symbolic arrangement of letters as originally composed, apart from later alterations, deterioration, commentary, translations, paratext, etc.\" \\\r\n       \"et eleifend tortor mauris in dui. Vivamus ut pulvinar mauris, eget fermentum metus. \" \\\r\n       \"Cras nec varius ipsum. Sed sed neque vel ante vulputate gravida id a nisl. \" \\\r\n       \"Praesent facilisis imperdiet elit at rhoncus. Morbi ac scelerisque risus.\"\r\n\r\nsummary = x.summary(text, num_bullet_points=10)\r\nprint(summary)\r\n```\r\n\r\n\r\nUnet for Image\r\n\r\n```python\r\nfrom Texo.Unet import UnetM\r\nim = UnetM()\r\nim.Imageprepocess('image_path')\r\n\r\n#Display image\r\nim.show()\r\n```\r\n\r\nTokenize of Text and pos\r\n```python\r\nfrom Texo.Word.texo import tex\r\n\r\n#tokenize text without stop-words\r\ntokenize = tex()\r\nwords = tokenize.tokenize('This is going Awesome')\r\nprint(words)\r\n\r\n#tokenize text with stop-words\r\ntokenize = tex()\r\nwords = tokenize.tokenize_stopwords('This is going Awesome')\r\nprint(words)\r\n\r\n#find POS from tokens and return pos in form of array\r\ntokenize = tex()\r\ntokens = ['Running', 'dogs', 'are', 'happier', 'than', 'walked', 'dogs', 'in', 'parks.']\r\nwords = tokenize.pos_tag(tokens)\r\nprint(words)\r\n\r\n#return output in form of token of array\r\n#Display image\r\nim.show()\r\n```\r\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Sentiment Analysis Multiple language and for all products",
    "version": "0.0.4",
    "project_urls": {
        "Download": "https://github.com/Sourabh20022002/Texo/archive/refs/tags/python.tar.gz",
        "Homepage": "https://github.com/Sourabh20022002/Texo"
    },
    "split_keywords": [
        "python",
        "sentiment",
        "nlp",
        "tokenizer",
        "text-analyzer",
        "sockets",
        "torch",
        "pil",
        "torchvision"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1563530a49d47193fa4256820a32704605bce3b7620ac87e830b3444d5010f5d",
                "md5": "9096616ac5394c4268b9c886b3bbc178",
                "sha256": "f29e332ca4c9d5363bf3e463c0b8f5d209ca7d14e2c66b8890b6779a36dd61a1"
            },
            "downloads": -1,
            "filename": "Texo-0.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "9096616ac5394c4268b9c886b3bbc178",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3760,
            "upload_time": "2023-07-09T15:34:19",
            "upload_time_iso_8601": "2023-07-09T15:34:19.540045Z",
            "url": "https://files.pythonhosted.org/packages/15/63/530a49d47193fa4256820a32704605bce3b7620ac87e830b3444d5010f5d/Texo-0.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-09 15:34:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Sourabh20022002",
    "github_project": "Texo",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "texo"
}
        
Elapsed time: 0.08784s