A telegram bot for Keel

keel-telegram-bot keel-telegram-bot is a telegram bot for Keel. Features Receive notifications (via Webhook) List approvals Approve pending approvals Reject pending approvals Delete archived approvals Manual installation Install Install keel-telegram-bot using pip: pip3 install keel-telegram-bot Configuration keel-telegram-bot uses container-app-conf to provide configuration via a YAML file as well as ENV variables. Have a look at the documentation about it. See keel-telegram-bot_example.yaml for an example in this repo. Run Start the bot by using: keel-telegram-bot Docker To run keel-telegram-bot using docker you […]

Read more

Python and data science snippets on the command line

A tool to get Python and data science snippets at Data Science Simplified on the command line. You can read my article to learn how I created this tool. Installation python3 -m pip install –user python-snippet Note: The –user is important. It ensures you install it in your directory and not in the global system. python3 -m ensures that you install python_snippet using Python 3. Make sure your Python version is >= 3.6.2. python3 –version Usage Search for posts based […]

Read more

Dynamically typed Object Oriented Programming Language

PySkiylia A Dynamically typed, Object Oriented Program Language, written in Python. Skiylia ![](https://raw.githubusercontent.com/Skiylia-Lang/skiylia-lang.github.com/7a2533a517895c08b8aa52c32396c292a0563d49/Skiylia_Logo_text.svg =60%/x) Skiylia is dynamically typed, object oriented, and most importantly interpreted. While it may share many similarities with C derivatives, its heritage is definitely Pythonic. The main directory housing the PySkiylia interpreter is here. Within that directory is a separate document listing the most important syntax for Skiylia. Sample code ///This section contains a small snippet of Skiylia code that calculates the factorial of a number/// def […]

Read more

An open-source toolkit for entropic time series analysis

EntropyHub Information and uncertainty can be regarded as two sides of the same coin: the more uncertainty there is, the more information we gain by removing that uncertainty. In the context of information and probability theory, Entropy quantifies that uncertainty. The concept of entropy has its origins in classical physics under the second law of thermodynamics, a law considered to underpin our fundamental understanding of time in physics. Attempting to analyse the analog world around us requires that we measure […]

Read more

An option valuation webapp in Python

Option Valuation with Python An option valuation webapp in Python. Models Installation Clone this repository : git clone https://github.com/romaincaraes/option-valuation-python cd option-valuation-python You may want to use a virtual environment to keep a clean Python installation : python3 -m venv venv/ source venv/bin/activate Install the required dependencies : pip3 install -r requirements.txt Usage To use the Option Valuation web app, run the option.py script in option-valuation/ folder : cd option-valuation streamlit run option.py A new tab should open in your browser […]

Read more

A lib version of the sports master planning code

sports_maps A lib version of the sports master planning code. Aimed a producing sport overviews for certain cities. Demoes of reports for Sedan and the Kremlin Bicetre. Repository Ownership Practice: Sport Sector: Asset management Original Author(s): Luc Jonveaux Contact Details for Current Repository Owner(s): [email protected] Data Running the Code Relatively straightforward import gpdSport data = gpdSport.dataSets() DATA = data.CreateDF(“data/) data.CreateVille(8409); #produces the an analysis for SEDAN fig = data.CreateMap(ZOOM=12) # creates a map, with a basemap zoom at 12 data.createReport(); […]

Read more

human-friendly CLI HTTP client for the API era

HTTPie HTTPie (pronounced aitch-tee-tee-pie) is a command-line HTTP client. Its goal is to make CLI interaction with web services as human-friendly as possible. HTTPie is designed for testing, debugging, and generally interacting with APIs & HTTP servers. The http & https commands allow for creating and sending arbitrary HTTP requests. They use simple and natural syntax and provide formatted and colorized output. GitHub https://github.com/httpie/httpie    

Read more
1 580 581 582 583 584 925