A Simple Way to Get a Stock’s Fundamental Data
How I used Python and API calls to retrieve a company’s financial statements and earnings ...
https://towardsdatascience.com/a-simple-way-to-get-a-stocks-fundamental-data-26506adf1214
How I used Python and API calls to retrieve a company’s financial statements and earnings ...
https://towardsdatascience.com/a-simple-way-to-get-a-stocks-fundamental-data-26506adf1214
Medium
A Simple Way to Get a Stock’s Fundamental Data
How I used Python and API calls to retrieve a company’s financial statements and earnings reports
How I Built Burplist For Free
This post talks about engineering decisions and thought processes of creating Burplist, a fast and simple search engine for craft beers in Singapore.
https://jerrynsh.com/how-i-built-burplist-for-free/
This post talks about engineering decisions and thought processes of creating Burplist, a fast and simple search engine for craft beers in Singapore.
https://jerrynsh.com/how-i-built-burplist-for-free/
Jerry Ng
How I Built A Craft Beer Search Engine For Free
Talks about engineering decisions and thought processes of creating Burplist, a fast and simple search engine for craft beers in Singapore.
Building a board game app with TensorFlow
In this end-to-end tutorial, we are going to show you how to use TensorFlow core, TensorFlow Agents and TensorFlow Lite to build a game agent to play against a human user in a small board game app.
https://blog.tensorflow.org/2021/10/building-board-game-app-with-tensorflow.html
In this end-to-end tutorial, we are going to show you how to use TensorFlow core, TensorFlow Agents and TensorFlow Lite to build a game agent to play against a human user in a small board game app.
https://blog.tensorflow.org/2021/10/building-board-game-app-with-tensorflow.html
blog.tensorflow.org
Building a board game app with TensorFlow: a new TensorFlow Lite reference app
In this blog post, we will show you how to train a game agent using reinforcement learning using TensorFlow and TensorFlow Agents, and deploy it.
What you need to know about containers for Python
https://opensource.com/article/21/11/containers-python
https://opensource.com/article/21/11/containers-python
Opensource
What you need to know about containers for Python
Explore how the principles behind open source--collaboration, transparency, and rapid prototyping--are proven catalysts for innovation.
Introduction to Asynchronous Programming in Python
A guide to writing more responsive and performant programsContinue reading on Towards Data Science ...
https://towardsdatascience.com/introduction-to-asynchronous-programming-in-python-3cd190748cd5
A guide to writing more responsive and performant programsContinue reading on Towards Data Science ...
https://towardsdatascience.com/introduction-to-asynchronous-programming-in-python-3cd190748cd5
Medium
Introduction to Asynchronous Programming in Python
A guide to writing more responsive and performant programs
torch-quiver
PyTorch Library for Fast and Easy Distributed Graph Learning.
https://github.com/quiver-team/torch-quiver
PyTorch Library for Fast and Easy Distributed Graph Learning.
https://github.com/quiver-team/torch-quiver
GitHub
GitHub - quiver-team/torch-quiver: PyTorch Library for Low-Latency, High-Throughput Graph Learning on GPUs.
PyTorch Library for Low-Latency, High-Throughput Graph Learning on GPUs. - GitHub - quiver-team/torch-quiver: PyTorch Library for Low-Latency, High-Throughput Graph Learning on GPUs.
Fake (almost) everything with Faker
Photo by dasha shchukova on UnsplashI was recently tasked with creating some random customer data, ...
https://towardsdatascience.com/fake-almost-everything-with-faker-a88429c500f1
Photo by dasha shchukova on UnsplashI was recently tasked with creating some random customer data, ...
https://towardsdatascience.com/fake-almost-everything-with-faker-a88429c500f1
Medium
Fake (almost) everything with Faker
Generating customer and address data for testing has never been easier. We’ll see how to do that using the Faker Python library.
An Intel 8080 Assembly Suite in Python
A pretty cool post where the author describes how he created Suite8080, a suite of Intel 8080 Assembly cross-development tools written in Python.
https://blog.paoloamoroso.com/2021/11/an-intel-8080-assembly-suite-in-python.html
A pretty cool post where the author describes how he created Suite8080, a suite of Intel 8080 Assembly cross-development tools written in Python.
https://blog.paoloamoroso.com/2021/11/an-intel-8080-assembly-suite-in-python.html
Paoloamoroso
An Intel 8080 Assembly Suite in Python
Suite8080 is a suite of Intel 8080 Assembly cross-development tools in Python comprising an assembler and a disassembler.
Automatically OCR’ing Receipts and Scans
In this tutorial, you will learn how to use Tesseract and OpenCV to build an automatic receipt ...
https://www.pyimagesearch.com/2021/10/27/automatically-ocring-receipts-and-scans/
In this tutorial, you will learn how to use Tesseract and OpenCV to build an automatic receipt ...
https://www.pyimagesearch.com/2021/10/27/automatically-ocring-receipts-and-scans/
PyImageSearch
Automatically OCR’ing Receipts and Scans - PyImageSearch
Have you ever wanted to OCR receipts and scanned documents using Python? Good news, in this complete tutorial, you’ll see all of the code, and we’ll walk you through all of it line-by-line.
s3-credentials
A tool for creating credentials for accessing S3 buckets.
https://github.com/simonw/s3-credentials
A tool for creating credentials for accessing S3 buckets.
https://github.com/simonw/s3-credentials
GitHub
GitHub - simonw/s3-credentials: A tool for creating credentials for accessing S3 buckets
A tool for creating credentials for accessing S3 buckets - simonw/s3-credentials
pyhpc-benchmarks
A suite of benchmarks for CPU and GPU performance of the most popular high-performance libraries for Python.
https://github.com/dionhaefner/pyhpc-benchmarks
A suite of benchmarks for CPU and GPU performance of the most popular high-performance libraries for Python.
https://github.com/dionhaefner/pyhpc-benchmarks
GitHub
GitHub - dionhaefner/pyhpc-benchmarks: A suite of benchmarks for CPU and GPU performance of the most popular high-performance libraries…
A suite of benchmarks for CPU and GPU performance of the most popular high-performance libraries for Python :rocket: - dionhaefner/pyhpc-benchmarks
How to build, test and publish an open source Python library
Learn how to to use cookiecutter, pytest and GitHub Actions to develop a new Python library, add tests, run continuous integration and automatically publish new releases of your package to PyPI.
https://simonwillison.net/2021/Nov/4/publish-open-source-python-library/
Learn how to to use cookiecutter, pytest and GitHub Actions to develop a new Python library, add tests, run continuous integration and automatically publish new releases of your package to PyPI.
https://simonwillison.net/2021/Nov/4/publish-open-source-python-library/
simonwillison.net
How to build, test and publish an open source Python library
At PyGotham this year I presented a ten minute workshop on how to package up a new open source Python library and publish it to the Python Package Index. Here …
Pass-by-value, reference, and assignment
This article explains why Python doesn't use a pass-by-value system, nor a pass-by-reference.
https://mathspp.com/blog/pydonts/pass-by-value-reference-and-assignment
This article explains why Python doesn't use a pass-by-value system, nor a pass-by-reference.
https://mathspp.com/blog/pydonts/pass-by-value-reference-and-assignment
Mathspp
Pass-by-value, reference, and assignment | Pydon't 🐍
When you call a function in Python and give it some arguments...
Are they passed by value? No!
By reference? No!
They're passed by assignment.
Are they passed by value? No!
By reference? No!
They're passed by assignment.
I just want to run this one Python script
https://www.die-welt.net/2021/11/i-just-want-to-run-this-one-python-script/
https://www.die-welt.net/2021/11/i-just-want-to-run-this-one-python-script/
die-welt.net
I just want to run this one Python script
So I couldn't sleep the other night, and my brain wanted to think about odd problems…
Ever had a script that's compatible with both, Python 2 and 3, but you didn't want to bother the user to know whic
Ever had a script that's compatible with both, Python 2 and 3, but you didn't want to bother the user to know whic
Open access book on scientific visualization using Python and matplotlib
https://github.com/rougier/scientific-visualization-book
https://github.com/rougier/scientific-visualization-book
GitHub
GitHub - rougier/scientific-visualization-book: An open access book on scientific visualization using python and matplotlib
An open access book on scientific visualization using python and matplotlib - rougier/scientific-visualization-book
ifzhang / ByteTrack
ByteTrack: Multi-Object Tracking by Associating Every Detection Box
https://github.com/ifzhang/ByteTrack
ByteTrack: Multi-Object Tracking by Associating Every Detection Box
https://github.com/ifzhang/ByteTrack
GitHub
GitHub - FoundationVision/ByteTrack: [ECCV 2022] ByteTrack: Multi-Object Tracking by Associating Every Detection Box
[ECCV 2022] ByteTrack: Multi-Object Tracking by Associating Every Detection Box - FoundationVision/ByteTrack