Python

161 Articles 5 Followers


Virtualenv — Isolated Environments for Python Programming

4 Mar 2019 3 minute read 0 comments dev-things

As a developer that deals with Python a lot, packages end up becoming a big issue. After installing packages for one project, those dependencies might end up conflicting with your new project. In order to alleviate this problem, Virtualenv was create...

Getting started with Data Science - My Story

27 Jan 2019 3 minute read 9 comments everestbits

In my last article https://www.publish0x.com/datascience/data-the-new-oil-xmdwz (data - “the new oil”), I explained how data has become a valuable resource in the modern day and how the trillion dollar companies have been able to capitalize on this r...

DATA- “The new oil”

26 Jan 2019 3 minute read 4 comments everestbits

Over the past century, so many companies thrived on oil, gas and steel to make a great fortune and stood out as the most valuable companies on the planet. Prior to 1900s and early after then, John Rockefeller’s Standard Oil Company and J.P Morgan’s s...

Python 3.12 text to speech and make a sound

23 Sep 2024 1 minute read 0 comments Slash13

    Text_to_Speech_File   Text_to_speech_file  alternativ download Don't forget download and install of the librarys.

Python 3.12 Sound Synthesizer

22 Sep 2024 1 minute read 0 comments Slash13

  Bittorrent Soundsynthesizer   Dropbox Alternativer Downloadlink Python 3.12  You have to install:  pip install soundfile                                  pip install numpy   I hope you like making sounds with the programm.    

Python count seconds

5 Apr 2023 1 minute read 0 comments SlashReal

import time counter = 0 while 0 < 1:     seconds = time.time()     local_time = time.ctime(seconds)     counter = counter +1     print('Seconds: ' , counter)     time.sleep(1)

Python show messagebox

4 Apr 2023 1 minute read 0 comments SlashReal

from tkinter.messagebox import showinfo  message = 'my message' showinfo(                title='my title'                 message = message               )

Free Crypto Portfolio Tracker Update

17 Oct 2021 2 minute read 2 comments Michael_Brown

If you read my previous article then you will know I've decided to create a crypto portfolio tracker that I'm going to make freely available to all you nice people. This post is an update on my current progress and it will give you a better idea of h...

Free Crypto Portfolio Tracker

20 Sep 2021 2 minute read 6 comments Michael_Brown

Yes, I know, there are plenty of free, online crypto portfolio services you can access. So why am I bothering to make one? It's a fair question, so allow me to outline my reasoning below and hopefully, by the end of this short article, you'll see the...

Binance RSI Trading Bot

26 Jun 2021 1 minute read 0 comments Canadian Crypto Ltd

This is a simple yet effective approach to Day Trade any Cryptocurrency.   Using the RSI indicator (Relative strength index) we can determine whether we should buy or sell. ultimately our goal is to buy low sell high. depending on the day period we...