a useful alternative Path object
Project description
About The Project
This project is motivated to provide a useful alternative Path object.
Built With
Getting Started
$ pip install paaaaath
$ python -c "from paaaaath import Path; print(Path('https://raw.githubusercontent.com/ar90n/paaaaath/main/assets/python_logo.txt').read_text())"
_.gj8888888lkoz.,_
d888888888888888888888b,
j88P""V8888888888888888888
888 8888888888888888888
888baed8888888888888888888
88888888888888888888888888
8888888888888
,ad8888888888888888888888888888888888 888888be,
d8888888888888888888888888888888888888 888888888b,
d88888888888888888888888888888888888888 8888888888b,
j888888888888888888888888888888888888888 88888888888p,
j888888888888888888888888888888888888888' 8888888888888
8888888888888888888888888888888888888^" ,8888888888888
88888888888888^' .d88888888888888
8888888888888" .a8888888888888888888888888888888888888
8888888888888 ,888888888888888888888888888888888888888^
^888888888888 888888888888888888888888888888888888888^
V88888888888 88888888888888888888888888888888888888Y
V8888888888 8888888888888888888888888888888888888Y
`"^8888888 8888888888888888888888888888888888^"'
8888888888888
88888888888888888888888888
8888888888888888888P""V888
8888888888888888888 888
8888888888888888888baed88V
`^888888888888888888888^
`'"^^V888888888V^^'
Prerequisites
If you rune some codes in this repository, you have to install poetry as following.
pip install poetry
Installation
pip install paaaaath
Usage
from paaaaath import Path
OUTPUT_BUCKET = "" # fill output bucket name
def main():
png_images = []
for p in Path("s3://elevation-tiles-prod/normal/10/963").iterdir():
if p.suffix != ".png":
continue
png_images.append(p)
if 3 < len(png_images):
break
for input_path in png_images:
if OUTPUT_BUCKET != "":
output_path = Path(f"s3://{OUTPUT_BUCKET}/{input_path.name}")
print(f"upload {output_path.name} to {output_path}")
output_path.write_bytes(p.read_bytes())
else:
print(f"skip upload {input_path.name}")
if __name__ == "__main__":
main()
Featuers
HttpPath | S3Path | GCSPath | |
---|---|---|---|
open | ✅ | ✅ | ✅ |
read_text | ✅ | ✅ | ✅ |
read_byte | ✅ | ✅ | ✅ |
write_text | ❌ | ✅ | ✅ |
write_byte | ❌ | ✅ | ✅ |
iterdir | ❌ | ✅ | ✅ |
touch | ❌ | ✅ | ✅ |
mkdir | ❌ | ✅ | ✅ |
exists | ❌ | ✅ | ✅ |
Roadmap
See the open issues for a list of proposed features (and known issues).
Contributing
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
License
Distributed under the MIT License. See LICENSE
for more information.
Contact
Masahiro Wada - @ar90n - argon.argon.argon@gmail.com
Project Link: https://github.com/ar90n/paaaaath
Acknowledgements
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 paaaaath-0.2.7.tar.gz
.
File metadata
- Download URL: paaaaath-0.2.7.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.8.16 Linux/5.15.0-1035-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04c2c213bcab1d549063a44258fb6625584ca34f432511eaea2ee2515a080959 |
|
MD5 | 69bb26d8256d7edf55a97571632ff3c2 |
|
BLAKE2b-256 | 3b9c7a6154219b67e8231370caa4da3fe1e80a2caa8c645f2c9ae3b3cea4cdc7 |
File details
Details for the file paaaaath-0.2.7-py3-none-any.whl
.
File metadata
- Download URL: paaaaath-0.2.7-py3-none-any.whl
- Upload date:
- Size: 10.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.8.16 Linux/5.15.0-1035-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c95ddf3f4800818161e1a0488acdf34584f368f8b6d6b72edb75ced6d4e0f5cc |
|
MD5 | 0b9de72292e40e7e58e8dab5aa8f7ec9 |
|
BLAKE2b-256 | aeed4d9b83372d8be804de13ad5ae1d970645febec112fc268a8cc26cf6abd12 |