Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lamps-dev/utl
https://github.com/lamps-dev/utl
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/lamps-dev/utl
- Owner: lamps-dev
- License: mit
- Created: 2024-11-21T15:55:14.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-21T18:38:06.000Z (about 2 months ago)
- Last Synced: 2024-12-17T03:54:49.412Z (20 days ago)
- Language: Python
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# UTL (Utilities)
## A python library for utilities including math, system management and more.
```
```
# Installation
To use it, install it using:
```
pip install pyutl
```
For development version, install it using:
```
pip install pyutl-dev
```
___
# Development
**To start contibuting, theres multiple tutorials for your os so scroll down until you choose the proper tutorial.**
---
## **Windows**
1. Firstly, [click here to download git](https://git-scm.com/download/win) and then run the setup file.
2. After completing the setup process, we will open cmd by pressing ```Win + R``` on your keyboard and then type ```cmd``` and click the ```run``` button.
3. You will see the cmd window appearing. In your cmd, type ```cd C:\Users\{replace-this-part-with-your-windows-username}```, then type ```mkdir pyutl```, ```cd pyutl``` and finally ```git clone https://github.com/lamps-dev/utl.git```.
4. You're done! :D. Happy contributing on windows!
---
## **Linux**
1. Firstly, depending on your linux distro, it may be either already installed or not installed. If its not installed, [go here to have the guide for your distro.](https://git-scm.com/downloads/linux)
2. After installing git, on your terminal, type ```cd ~```, then type ```mkdir pyutl```, ```cd pyutl``` and finally ```git clone https://github.com/lamps-dev/utl.git```.
4. You're done! :D. Happy contributing on linux!
---
## **MacOS**
1. First, you'll need to install Git. MacOS might prompt you to install developer tools (which includes Git) when you first try to use it. Alternatively, you can download Git from [the official website](https://git-scm.com/download/mac) or install it via Homebrew using:
```bash
brew install git
```2. After installing Git, open Terminal (you can find it in Applications > Utilities > Terminal, or use Spotlight Search with Command + Space and type "Terminal")
3. In your terminal, run these commands:
```bash
cd ~
mkdir pyutl
cd pyutl
git clone https://github.com/lamps-dev/utl.git
```4. You're done! :D. Happy contributing on MacOS!