<p dir="ltr">Project description:</p><p dir="ltr">ProKit (Protein Analysis Library) ProKit is a Python library to fetch and analyze protein sequences from UniProt. It calculates molecular weight, hydrophobic ratio, and displays results in a neat, organized table.</p><p dir="ltr">Installation:</p><p dir="ltr">Install from PyPI</p><p dir="ltr">pip install prokit</p><p dir="ltr">from prokit import Protein</p><p dir="ltr">Create a Protein object by specifying the protein name:</p><p dir="ltr">p = Protein.from_name("Hemoglobin subunit beta")</p><p dir="ltr">Show summary table: p.show_summary() # Displays Name, Organism, Length, Molecular Weight, Hydrophobic Ratio.</p><p dir="ltr">Available Properties and Methods:<br><br>## Available Properties and Methods<br><br>| Property / Method | Description |<br>|-------------------------|-------------------------------------------------|<br>| `p.sequence` | Full protein sequence as a string |<br>| `p.name` | Protein name |<br>| `p.organism` | Source organism of the protein |<br>| `p.molecular_weight()` | Calculates and returns the molecular weight |<br>| `p.hydrophobic_ratio()` | Calculates and returns the fraction of hydrophobic residues |<br><br></p><p dir="ltr">License: MIT License – Free to use, modify, and distribute with attribution to the original author.</p><p dir="ltr"><br></p><p dir="ltr">GitHub: <a href="https://github.com/sarahbiotech/prokit" rel="nofollow" target="_blank">https://github.com/sarahbiotech/prokit</a></p><p dir="ltr"><br></p>