The easiest way to run python code on one or more remote machines
Project description
Meadowrun is a library for data scientists and data engineers who run python code on AWS, Azure, or Kubernetes. Meadowrun:
- scales from a single function to thousands of distributed tasks.
- syncs your local code and libraries for a faster, easier iteration loop. Edit your code and rerun your analysis without worrying about building packages or Docker images.
- optimizes for cost, choosing the cheapest instance types and turning them off when they're no longer needed.
For more context, see our case studies of how Meadowrun is used in real life, or see the project homepage
To get started, go to our documentation, or join the chat on Gitter
Quickstart
First, install Meadowrun using pip:
pip install meadowrun
Next, assuming you've configured the AWS CLI and are a root/administrator user, you can run:
import meadowrun
import asyncio
print(
asyncio.run(
meadowrun.run_function(
lambda: sum(range(1000)) / 1000,
meadowrun.AllocEC2Instance(),
meadowrun.Resources(logical_cpu=1, memory_gb=8, max_eviction_rate=80),
meadowrun.Deployment.mirror_local()
)
)
)
The documentation has examples of how to use other package managers (conda, poetry), and other platforms (Azure, GKE, Kubernetes).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file meadowrun-0.2.16.tar.gz
.
File metadata
- Download URL: meadowrun-0.2.16.tar.gz
- Upload date:
- Size: 279.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.1 CPython/3.9.10 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84867ad358a2101a97096a8f19a0d490562b6bf40dde7b9766a923d2511a1963 |
|
MD5 | 78ed568299423d22e491924baf7e9878 |
|
BLAKE2b-256 | 4e10437ebd3e0778d92576125d6634966d1039b9309ffafdb870dc0bcc95484a |
File details
Details for the file meadowrun-0.2.16-py3-none-any.whl
.
File metadata
- Download URL: meadowrun-0.2.16-py3-none-any.whl
- Upload date:
- Size: 345.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.1 CPython/3.9.10 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb91095825709027b658f9edbfc4d7dccc1e7cd929f1baaa2e5827b3c2823add |
|
MD5 | 30da602e99988c331f39af884046a767 |
|
BLAKE2b-256 | 231e2bc4ec1fe1dd8973e69e87a8dea9748fe034e3190faef258d9fdb2a887b8 |