RWWW-S


NameRWWW-S JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://github.com/IEYT/RW-s
SummaryA removal tool for removing www and https://www. from dictionary's
upload_time2024-08-21 22:06:58
maintainerNone
docs_urlNone
authorManveer Singh
requires_pythonNone
licenseMIT
keywords removewww
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Change Log
==========

1.0.0 (8/12/2024): First Release, check out README.


This is a tool for removing www. and https://www. in dictionary's. It was created partially by the tabnine ai and Me. Note that it creates a new dictionary and the original one is unchanged.

<h4>Example of how it works</h4>

```python
from RWs import remove_www_fKey, remove_www_fVal, remove_www

example_dict = {
    "www.example": "https://www.example.com"
}

example_dict_2 = remove_www_fKey(example_dict)
print(example_dict_2)

example_dict_cop = remove_www_fVal(example_dict)
print(example_dict_cop)

example_dict_co = remove_www(example_dict)
print(example_dict_co)
```

<h4>Result</h4>

```py
{'example': 'https://www.example.com'}
{'www.example': 'example.com'}
{'example': 'example.com'}
```

<h4>How to download</h4>

```py
pip install RWW_S
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/IEYT/RW-s",
    "name": "RWWW-S",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "RemoveWWW",
    "author": "Manveer Singh",
    "author_email": "manveer1113@outlook.com",
    "download_url": "https://files.pythonhosted.org/packages/fb/35/6253dba9889acf3833b702815f66659761ffe7f8156d401a495fcf5dc8d5/rwww_s-1.0.0.tar.gz",
    "platform": null,
    "description": "Change Log\r\n==========\r\n\r\n1.0.0 (8/12/2024): First Release, check out README.\r\n\r\n\r\nThis is a tool for removing www. and https://www. in dictionary's. It was created partially by the tabnine ai and Me. Note that it creates a new dictionary and the original one is unchanged.\r\n\r\n<h4>Example of how it works</h4>\r\n\r\n```python\r\nfrom RWs import remove_www_fKey, remove_www_fVal, remove_www\r\n\r\nexample_dict = {\r\n    \"www.example\": \"https://www.example.com\"\r\n}\r\n\r\nexample_dict_2 = remove_www_fKey(example_dict)\r\nprint(example_dict_2)\r\n\r\nexample_dict_cop = remove_www_fVal(example_dict)\r\nprint(example_dict_cop)\r\n\r\nexample_dict_co = remove_www(example_dict)\r\nprint(example_dict_co)\r\n```\r\n\r\n<h4>Result</h4>\r\n\r\n```py\r\n{'example': 'https://www.example.com'}\r\n{'www.example': 'example.com'}\r\n{'example': 'example.com'}\r\n```\r\n\r\n<h4>How to download</h4>\r\n\r\n```py\r\npip install RWW_S\r\n```\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A removal tool for removing www and https://www. from dictionary's",
    "version": "1.0.0",
    "project_urls": {
        "Homepage": "https://github.com/IEYT/RW-s"
    },
    "split_keywords": [
        "removewww"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb356253dba9889acf3833b702815f66659761ffe7f8156d401a495fcf5dc8d5",
                "md5": "d48291da80106693837c9674c7ef9f23",
                "sha256": "c7c1de2f478f26be501549e6248ea1774989b9cf2b3b40fb4a2a7da805f867f5"
            },
            "downloads": -1,
            "filename": "rwww_s-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d48291da80106693837c9674c7ef9f23",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2848,
            "upload_time": "2024-08-21T22:06:58",
            "upload_time_iso_8601": "2024-08-21T22:06:58.628991Z",
            "url": "https://files.pythonhosted.org/packages/fb/35/6253dba9889acf3833b702815f66659761ffe7f8156d401a495fcf5dc8d5/rwww_s-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-21 22:06:58",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "IEYT",
    "github_project": "RW-s",
    "github_not_found": true,
    "lcname": "rwww-s"
}
        
Elapsed time: 0.33338s