medicafe 0.240415.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of medicafe might be problematic. Click here for more details.

@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Soumit Salman Rahman
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.1
2
+ Name: medicafe
3
+ Version: 0.240415.1
4
+ Summary: MediCafe
5
+ Home-page: https://github.com/katanada2
6
+ Author: Daniel Vidaud
7
+ Author-email: daniel@personalizedtransformation.com
8
+ License: MIT
9
+ Keywords: medicafe python34 medibot medilink
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: requests
13
+ Requires-Dist: argparse
14
+ Requires-Dist: logging
15
+ Requires-Dist: pandas
16
+
17
+ This module ensures that MediCafe remains up-to-date by performing version checks for its dependencies on startup. It utilizes PyPI, the official repository for Python packages, to retrieve information about the latest available versions of the required packages. When an internet connection is available, MediUpdate automatically installs any available updates using pip, the package installer for Python.
@@ -0,0 +1,28 @@
1
+ ## MediLink and MediBot Utilities
2
+
3
+ This repository contains utility functions and wrappers for MediLink and MediBot systems as part of MediCafe.
4
+
5
+ ### Developer Info:
6
+ - Name: Daniel Vidaud
7
+ - GitHub: [\[Your GitHub Profile\]](https://github.com/katanada2)
8
+ - Email: daniel@personalizedtransformations.com
9
+ - LinkedIn: [\[Your LinkedIn Profile\]](https://www.linkedin.com/in/dvidaud/)
10
+
11
+ ### Features:
12
+ - **medi_link.py**: Contains functions for interacting with the MediLink system.
13
+ - **medi_bot.py**: Provides utilities for managing interactions with the MediBot system.
14
+
15
+ ### Missing Features:
16
+ - [ ] Comprehensive test automation and GitHub workflow setup.
17
+
18
+ ### Known Bugs:
19
+ - The MediBot system may have limitations.
20
+
21
+ ### Usage Documentation:
22
+ No usage documentation.
23
+
24
+ ### Contribution Guideline:
25
+ Contributions to the codebase are not welcome for now except by one other person.
26
+
27
+ ### Disclaimer:
28
+ This repository is maintained independently and is not affiliated with anyone.
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.1
2
+ Name: medicafe
3
+ Version: 0.240415.1
4
+ Summary: MediCafe
5
+ Home-page: https://github.com/katanada2
6
+ Author: Daniel Vidaud
7
+ Author-email: daniel@personalizedtransformation.com
8
+ License: MIT
9
+ Keywords: medicafe python34 medibot medilink
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: requests
13
+ Requires-Dist: argparse
14
+ Requires-Dist: logging
15
+ Requires-Dist: pandas
16
+
17
+ This module ensures that MediCafe remains up-to-date by performing version checks for its dependencies on startup. It utilizes PyPI, the official repository for Python packages, to retrieve information about the latest available versions of the required packages. When an internet connection is available, MediUpdate automatically installs any available updates using pip, the package installer for Python.
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ setup.py
4
+ medicafe.egg-info/PKG-INFO
5
+ medicafe.egg-info/SOURCES.txt
6
+ medicafe.egg-info/dependency_links.txt
7
+ medicafe.egg-info/not-zip-safe
8
+ medicafe.egg-info/requires.txt
9
+ medicafe.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ requests
2
+ argparse
3
+ logging
4
+ pandas
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,22 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='medicafe',
5
+ version='0.240415.1',
6
+ description='MediCafe',
7
+ long_description='This module ensures that MediCafe remains up-to-date by performing version checks for its dependencies on startup. It utilizes PyPI, the official repository for Python packages, to retrieve information about the latest available versions of the required packages. When an internet connection is available, MediUpdate automatically installs any available updates using pip, the package installer for Python.',
8
+ long_description_content_type='text/markdown',
9
+ keywords = 'medicafe python34 medibot medilink',
10
+ url='https://github.com/katanada2',
11
+ author='Daniel Vidaud',
12
+ author_email='daniel@personalizedtransformation.com',
13
+ license='MIT',
14
+ packages=find_packages(),
15
+ install_requires=[
16
+ 'requests',
17
+ 'argparse',
18
+ 'logging',
19
+ 'pandas'
20
+ ],
21
+ zip_safe=False
22
+ )