Hivecode is a versatile and comprehensive Python library, with a focus on efficiency and reusability, Hivecode empowers developers and data enthusiasts alike to streamline their projects.


License
MIT
Install
pip install hivecode==0.0.0.8.36

Documentation

Hivecode

PyPI version Hivecode Documentation Status MIT license

Hivecode is a versatile and comprehensive Python library, with a focus on efficiency and reusability, Hivecode empowers developers and data enthusiasts alike to streamline their projects. This library boasts a wide array of practical and innovative functions, ranging from seamless integration with Azure Databricks to implementing essential design patterns, data preprocessing, visualization, exploration, and more. Whether you're looking to supercharge your data analysis or accelerate your Python projects, Hivecode is the go-to toolkit for unlocking the full potential of your endeavors.

Packages

  • Hivecore: A set of many vanilla python tools.
  • Hiveadb: A set of tools to work in Azure Databricks.
  • Hivesignal: A set of tools for signal analysis.

Installation

To install the library, you will need pip.


pip install hivecode

Note

Hivecode is constantly changing as new versions try to make it a more stable library. It is highly recommended to specify the version you want to import.


Requirements

Hivecode requires Python 3.8.0+ to run.

Development

Requirements

Build is used to build the packages that will be deployed into pypi.


pip install build

Twine is used to deploy packages to pypi.


pip install twine

Sphinx is used to build the documentation.


pip install Sphinx

Develop

You can build the project by running the following console command.


python -m build

You can then use twine to upload the newest version to Pypi.


py -m twine upload --skip-existing --repository pypi dist/* -u {User} -p {password}

I personally recommend to cascade both commands using a pipe, like this.


python -m build | py -m twine upload --skip-existing --repository pypi dist/* -u {User} -p {password}

When working with documentations, you will need to run it like this.


.\doc\make.bat html