Skip to main content

Back-port compiler for Python 3.6 f-string literals.

Project description

f2format

Write f-string in Python 3.6 flavour, and let f2format worry about back-port issues :beer:

  Since PEP 498, Python introduced f-string literal in version 3.6. Though released ever since December 23, 2016, Python 3.6 is still not widely used as expected. For those who are now used to f-string, f2format provides an intelligent, yet imperfect, solution of a backport compiler by converting f-strings to str.format literals, which guarantees you to always write f-string in Python 3.6 flavour then compile for compatibility later.

f2format is inspired and assisted by my mate @gousaiyang. It functions by tokenising and parsing Python code into multiple abstract syntax trees (AST), through which it shall synthesise and extract expressions from f-string literals, and then reassemble the original string using str.format method. Besides conversion and format specification, f2format also considered and resolved string concatenation. Also, it always tries to maintain the original layout of source code, and accuracy of syntax.

Installation

Note that f2format only supports Python versions since 3.3

  For macOS users, f2format is now available through Homebrew:

brew tap jarryshaw/tap
brew install f2format
# or simply, a one-liner
brew install jarryshaw/tap/f2format

  Simply run the following to install the current version from PyPI:

pip install f2format

  Or install the latest version from the git repository:

git clone https://github.com/JarryShaw/f2format.git
cd f2format
pip install -e .
# and to update at any time
git pull

Usage

CLI

  It is fairly straightforward to use f2format:

context in ${...} changes dynamically according to runtime environment

usage: f2format [options] <python source files and folders...>

Convert f-string to str.format for Python 3 compatibility.

positional arguments:
  SOURCE                python source files and folders to be converted
                        (default is '${CWD}')

optional arguments:
  -h, --help            show this help message and exit
  -V, --version         show program's version number and exit

archive options:
  duplicate original files in case there's any issue

  -n, --no-archive      do not archive original files
  -p PATH, --archive-path PATH
                        path to archive original files (default is '${CWD}/archive')

convert options:
  compatibility configuration for none-unicode files

  -c CODING, --encoding CODING
                        encoding to open source files (default is '${ENCODING}')

f2format will read then convert all f-string literals in every Python file under this path. In case there might be some problems with the conversion, f2format will duplicate all original files it is to modify into archive directory ahead of the process, if -n not set.

  For instance, the code will be converted as follows.

# the original code
var = f'foo{(1+2)*3:>5}bar{"a", "b"!r}boo'
# after `f2format`
var = 'foo{:>5}bar{!r}boo'.format((1+2)*3, ("a", "b"))

Automator

make-demo.sh provides a demo script, which may help integrate f2format in your development and distribution circle.

NB: make-demo.sh is not an integrated automation script. It should be revised by design.

  It assumes

  • all source files in /src directory
  • using GitHub for repository management
  • having release branch under /release directory
  • already installed f2format and twine
  • permission to these files and folders granted

  And it will

  • copy setup.py and src to release directory
  • run f2format for Python files under release
  • distribute to PyPI and TestPyPI using twine
  • upload to release branch on GitHub
  • upload original files to GitHub

APIs

f2format.f2format(filename)

Wrapper works for conversion.

Args:

  • filename -- str, file to be converted
f2format.convert(string, lineno)

The main conversion process.

Args:

  • string -- str, context to be converted
  • lineno -- dict<int: int>, line number to actual offset mapping

Returns:

  • str -- converted string

Codec

f2format-codec registers a codec in Python interpreter, which grants you the compatibility to write directly in Python 3.6 f-string syntax even through running with a previous version of Python.

Test

  The current test samples are under /test folder. test_driver.py is the main entry point for tests.

Contribution

  Contributions are very welcome, especially fixing bugs and providing test cases, which @gousaiyang is to help with, so to speak. Note that code must remain valid and reasonable.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

f2format-0.5.0.tar.gz (24.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

f2format-0.5.0-py3.7.egg (36.5 kB view details)

Uploaded Egg

f2format-0.5.0-py3.7-macosx-10.14-x86_64.egg (260.9 kB view details)

Uploaded Egg

f2format-0.5.0-py3.6.egg (36.5 kB view details)

Uploaded Egg

f2format-0.5.0-py3.6-macosx-10.9-x86_64.egg (260.9 kB view details)

Uploaded Egg

f2format-0.5.0-py3.5.egg (37.2 kB view details)

Uploaded Egg

f2format-0.5.0-py3.4.egg (37.3 kB view details)

Uploaded Egg

f2format-0.5.0-pp35-none-manylinux1_x86_64.whl (27.0 kB view details)

Uploaded PyPy

f2format-0.5.0-pp35-none-macosx_10_14_x86_64.whl (23.5 kB view details)

Uploaded PyPymacOS 10.14+ x86-64

f2format-0.5.0-cp37-none-manylinux1_x86_64.whl (27.0 kB view details)

Uploaded CPython 3.7

f2format-0.5.0-cp37-none-macosx_10_14_x86_64.whl (23.5 kB view details)

Uploaded CPython 3.7macOS 10.14+ x86-64

f2format-0.5.0-cp37-cp37m-macosx_10_14_x86_64.whl (233.0 kB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

f2format-0.5.0-cp36-none-manylinux1_x86_64.whl (27.0 kB view details)

Uploaded CPython 3.6

f2format-0.5.0-cp36-none-macosx_10_14_x86_64.whl (23.5 kB view details)

Uploaded CPython 3.6macOS 10.14+ x86-64

f2format-0.5.0-cp36-cp36m-macosx_10_14_x86_64.whl (233.1 kB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

f2format-0.5.0-cp35-none-manylinux1_x86_64.whl (27.0 kB view details)

Uploaded CPython 3.5

f2format-0.5.0-cp35-none-macosx_10_14_x86_64.whl (23.5 kB view details)

Uploaded CPython 3.5macOS 10.14+ x86-64

f2format-0.5.0-cp34-none-manylinux1_x86_64.whl (27.0 kB view details)

Uploaded CPython 3.4

f2format-0.5.0-cp34-none-macosx_10_14_x86_64.whl (23.5 kB view details)

Uploaded CPython 3.4macOS 10.14+ x86-64

File details

Details for the file f2format-0.5.0.tar.gz.

File metadata

  • Download URL: f2format-0.5.0.tar.gz
  • Upload date:
  • Size: 24.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0.tar.gz
Algorithm Hash digest
SHA256 6365a297d37a1f038e181ee8bceb3a28ddb55974b8bcf5ea955af368eeb4aa95
MD5 f89f2127dc29e3939d69502376f0d37f
BLAKE2b-256 04be11b4d122638900491e2d15463c4e264f81a1719acf1f475b23a0ced13710

See more details on using hashes here.

File details

Details for the file f2format-0.5.0-py3.7.egg.

File metadata

  • Download URL: f2format-0.5.0-py3.7.egg
  • Upload date:
  • Size: 36.5 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0-py3.7.egg
Algorithm Hash digest
SHA256 a085bee801989d1b8be18f29ffc0220ffc3bc861af3c03060c1bf88cfaa71952
MD5 c30ce24c2b97df3c01d0055380303ab9
BLAKE2b-256 fcad74785224564cdff60fd8a16f0cb3a9d22ef0bb61662985eb565667acb54c

See more details on using hashes here.

File details

Details for the file f2format-0.5.0-py3.7-macosx-10.14-x86_64.egg.

File metadata

  • Download URL: f2format-0.5.0-py3.7-macosx-10.14-x86_64.egg
  • Upload date:
  • Size: 260.9 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0-py3.7-macosx-10.14-x86_64.egg
Algorithm Hash digest
SHA256 50cc7b2d31684025798fedbe160a170550b645e8512818e28eff5b9c519e5724
MD5 7b7821a16f8040ff12a1f5b7f5817561
BLAKE2b-256 68abae9974cce909beb057b883956cc5ea5c6faa2132b5c52c611b10855700c6

See more details on using hashes here.

File details

Details for the file f2format-0.5.0-py3.6.egg.

File metadata

  • Download URL: f2format-0.5.0-py3.6.egg
  • Upload date:
  • Size: 36.5 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0-py3.6.egg
Algorithm Hash digest
SHA256 28c6c79193a225e158e4962fe419772cba66c437414001822be9eee0db545431
MD5 bfa40a6933c1b1fb35da71a1787fd1b4
BLAKE2b-256 071f9d8533d0ad98bcfe9dacd5cd11cde8fcdc5420faa2b5c6749886f672a86f

See more details on using hashes here.

File details

Details for the file f2format-0.5.0-py3.6-macosx-10.9-x86_64.egg.

File metadata

  • Download URL: f2format-0.5.0-py3.6-macosx-10.9-x86_64.egg
  • Upload date:
  • Size: 260.9 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0-py3.6-macosx-10.9-x86_64.egg
Algorithm Hash digest
SHA256 be320b22b3fcb7d29080286175f8af46841f3ed84f4a21e5976ec75327e75af6
MD5 bd289f4eeac88b428aa950f8a6481040
BLAKE2b-256 77a3413a911f53367d9d77b939a44dfff3a5282be9809c5cffe157eb68b3834b

See more details on using hashes here.

File details

Details for the file f2format-0.5.0-py3.5.egg.

File metadata

  • Download URL: f2format-0.5.0-py3.5.egg
  • Upload date:
  • Size: 37.2 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0-py3.5.egg
Algorithm Hash digest
SHA256 e6e335164fb535d173c86f21fb724dd1c55b763a44a59a492e237189aa8cb3de
MD5 9a5aaaa93cf885d5852266a1e5b5e467
BLAKE2b-256 093ab6b3220fffa7617abe659bde24e50120312116366abffa5cc8d7a424d07b

See more details on using hashes here.

File details

Details for the file f2format-0.5.0-py3.4.egg.

File metadata

  • Download URL: f2format-0.5.0-py3.4.egg
  • Upload date:
  • Size: 37.3 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0-py3.4.egg
Algorithm Hash digest
SHA256 dc6618c785a93d864144610106a0eeb3302c68e917286a381243493eb48be7bb
MD5 28ce846467ea1a0af840b2394fdb5cb0
BLAKE2b-256 f9101a8e468d00de577b4b7a24b8d50ece17a4a603d06f7b3a10e0d95b407dc7

See more details on using hashes here.

File details

Details for the file f2format-0.5.0-pp35-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: f2format-0.5.0-pp35-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 27.0 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0-pp35-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 faf995921b4671868cf4c792be73c124f685f633faa55fbac02d411be652ee9c
MD5 36ffde82a36895421f7fc1f86111e7f5
BLAKE2b-256 2b5735c30421b52abc4342afff02e7617b2f40228cc65d901f50d445c942bea8

See more details on using hashes here.

File details

Details for the file f2format-0.5.0-pp35-none-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: f2format-0.5.0-pp35-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 23.5 kB
  • Tags: PyPy, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0-pp35-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 3142e5a7baa8fc03586be5a3057dd9d390c1a347cedaf8249e452b37a44f6bf9
MD5 e07f083b25fde4fd058e85ea96a7f380
BLAKE2b-256 a9491a14d62b2b9ee484cad0ed7540f045f065579ec92e66a79ec517a9268d48

See more details on using hashes here.

File details

Details for the file f2format-0.5.0-cp37-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: f2format-0.5.0-cp37-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 27.0 kB
  • Tags: CPython 3.7
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0-cp37-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 91a4b048d35ed045e0adb83fef3177a8534bc70ab3612670210402833708a373
MD5 577c66d3c70b7b58987adc098b588873
BLAKE2b-256 082d21e1136a4541725290d13541394cfc8f86f9f7e6f730ac157aff14daa8c7

See more details on using hashes here.

File details

Details for the file f2format-0.5.0-cp37-none-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: f2format-0.5.0-cp37-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 23.5 kB
  • Tags: CPython 3.7, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0-cp37-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 85db01ffa280b270ffb1159dfbce87a2fc8f5f76151a7b74a8f38690ec238999
MD5 2a5512ecd0de69a17e6a39456f0d1145
BLAKE2b-256 0888b174dffd0f673906beee1b02f8ab1d06e00b199691152e17ead71cb4d409

See more details on using hashes here.

File details

Details for the file f2format-0.5.0-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: f2format-0.5.0-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 233.0 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 275135798e56107a083cb57e0c6a67ec90eeaa835c33d8ec97361c93b00856f0
MD5 83d5bc5856c3a9093801ce696f7bbce3
BLAKE2b-256 f63575d2b48c433aa3edad39d1d294b1161410358cfa77dec0232dadf57f69ec

See more details on using hashes here.

File details

Details for the file f2format-0.5.0-cp36-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: f2format-0.5.0-cp36-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 27.0 kB
  • Tags: CPython 3.6
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0-cp36-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 623074af93624c9508d854b5ec9d08174c5c24fb2e9e1c2ef253d76bba7691bc
MD5 5fd857890d7f185b8a659f3d775a9277
BLAKE2b-256 476494a371f7120ddeb69ae4baa1c41d537768463e82f3bf8d6078a513298ed1

See more details on using hashes here.

File details

Details for the file f2format-0.5.0-cp36-none-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: f2format-0.5.0-cp36-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 23.5 kB
  • Tags: CPython 3.6, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0-cp36-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c45a9ba81068d95dcfcbe0fefb57b86347ce07f1d2de845fb877cfd5c0b2f304
MD5 4be8b3b68933ab8161797f1afd353873
BLAKE2b-256 951878e14997eea2882b3cb5ff7c3122965bd9a1a8eeac7911a97d07ecc1cada

See more details on using hashes here.

File details

Details for the file f2format-0.5.0-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: f2format-0.5.0-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 233.1 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 bcc3dd92fa8727a49768be2b26bf96fc840557d90a6887fda369847a0977b4d3
MD5 56065bc063b3b909da2b7291c87b3547
BLAKE2b-256 589c9a577326586afba16263f0f2b4416b0c727d1431931dcde02b5e3a0d0df4

See more details on using hashes here.

File details

Details for the file f2format-0.5.0-cp35-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: f2format-0.5.0-cp35-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 27.0 kB
  • Tags: CPython 3.5
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0-cp35-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 09b6235fe732591779a68fea3b22638f7190b7c9eebcef2c68c5886c9135493f
MD5 4b1e251f946343bbfec6fb86f59cc4e3
BLAKE2b-256 6e19d7746949d03d6c73fe294ccb8b7e3a0e01a660cc9be2cd48ff36e61b01e0

See more details on using hashes here.

File details

Details for the file f2format-0.5.0-cp35-none-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: f2format-0.5.0-cp35-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 23.5 kB
  • Tags: CPython 3.5, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0-cp35-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 2fe9998ff5babc15c7a201872da4cba244cfccfc57fd1004fa5ab9e9218928aa
MD5 560bd8e0ede6c9a380afc598485f9384
BLAKE2b-256 84d6389899900ba885b46f48e1d729312a63b54146735baaf4978a68b39dd647

See more details on using hashes here.

File details

Details for the file f2format-0.5.0-cp34-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: f2format-0.5.0-cp34-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 27.0 kB
  • Tags: CPython 3.4
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0-cp34-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b0aa850484514dfdc6f9a5e4b2baac7fd654c0c34dc2377d7f8da98e93c6c6a7
MD5 c4967ba7943727239dfab70248e167dc
BLAKE2b-256 80f01bb550c0f0cc6ba0d8c0f7b29c43927f06e324fa09b1767a8152d962c1e1

See more details on using hashes here.

File details

Details for the file f2format-0.5.0-cp34-none-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: f2format-0.5.0-cp34-none-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 23.5 kB
  • Tags: CPython 3.4, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.3

File hashes

Hashes for f2format-0.5.0-cp34-none-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c550ed6d383c14d482011c868689690b6233ebeef4c485555bb2746678a818f4
MD5 0513bd86bc813d592b50017015316675
BLAKE2b-256 46e2ff129ac60023b1e45f3480b0a914cb5ae8c660694bf14a1c6db96d4ce693

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page