Metadata-Version: 2.4
Name: parkerpy
Version: 0.1.0
Summary: With advancements in Pi accuracy it's hard to keep up to date with the latest versions of Pi. Additionally it can be useful to pin specific versions of Pi for consistency in projects. parkerpy solves this issue by providing versioned reference values for pi without requiring modifying existing code by patching math.pi.
License-Expression: MIT
Author: xssfox
Author-email: xss@sprocketfox.io
Requires-Python: >=3.14
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.14
Project-URL: Homepage, https://github.com/xssfox/parkerpy
Project-URL: Repository, https://github.com/xssfox/parkerpy
Description-Content-Type: text/markdown

## ParkerPy

With advancements in Pi accuracy it's hard to keep up to date with the latest versions of Pi. Additionally it can be useful to pin specific versions of Pi for consistency in projects. `parkerpy` solves this issue by providing versioned reference values for pi without requiring modifying existing code by patching `math.pi`.

## Usage

### Pi Day 2013
```python
from parkerpy import piday_2013
import math
math.pi
> 3.13834
```
[Source](https://www.youtube.com/watch?v=ZNiRzZ66YN0&list=PLhtC92GarkjyYbxI3-4qzIWIRbZaw4wuP&index=14)
### Pre Pi Day 2015 
```python
from parkerpy import pre_piday_2015
import math
math.pi
> 3.1512 
```
[Source](https://www.youtube.com/watch?v=Ngj0a57Rlb0&list=PLhtC92GarkjyYbxI3-4qzIWIRbZaw4wuP&index=13)
### Pi Day 2015
```python
from parkerpy import piday_2015
import math
math.pi
>  3.128 
```
[Source](https://www.youtube.com/watch?v=qYAdXm69l8g&list=PLhtC92GarkjyYbxI3-4qzIWIRbZaw4wuP&index=12)
### Pi Day 2016
```python
from parkerpy import piday_2016
import math
math.pi
>  3.04
```
[Source](https://www.youtube.com/watch?v=HrRMnzANHHs&list=PLhtC92GarkjyYbxI3-4qzIWIRbZaw4wuP&index=11)
### Pi Day 2017
```python
from parkerpy import piday_2017
import math
math.pi
>  3.05238478336799
```
[Source](https://www.youtube.com/watch?v=RZBhSi_PwHU&list=PLhtC92GarkjyYbxI3-4qzIWIRbZaw4wuP&index=10)
### Pi Day 2018 (First Term)
```python
from parkerpy import piday_2018_first_term
import math
math.pi
>  3.1415927
```
[Source](https://www.youtube.com/watch?v=LhlqCJjbEa0&list=PLhtC92GarkjyYbxI3-4qzIWIRbZaw4wuP&index=9)
### Pi Day 2018
```python
from parkerpy import piday_2018
import math
math.pi
>  3.141592
```
[Source](https://www.youtube.com/watch?v=LhlqCJjbEa0&list=PLhtC92GarkjyYbxI3-4qzIWIRbZaw4wuP&index=9)
### Pi Day 2019
```python
from parkerpy import piday_2019
import math
math.pi
>  3.11791
```
[Source](https://www.youtube.com/watch?v=S26_O2B8h8k&list=PLhtC92GarkjyYbxI3-4qzIWIRbZaw4wuP&index=7)
### Pi Day 2020
```python
from parkerpy import piday_2020
import math
math.pi
> 3.141592653589793238462
```
[Source](https://www.youtube.com/watch?v=CKl1B8y4qXw&list=PLhtC92GarkjyYbxI3-4qzIWIRbZaw4wuP&index=6)
### Pi Day 2021
```python
from parkerpy import piday_2021
import math
math.pi
> 3.875
```
[Source](https://www.youtube.com/watch?v=lmgCgzjlWO4&list=PLhtC92GarkjyYbxI3-4qzIWIRbZaw4wuP&index=5)
### Pi Day 2022
```python
from parkerpy import piday_2022
import math
math.pi
> 3.14159265358979523
```
[Source](https://www.youtube.com/watch?v=dtiLxLrzjOQ&list=PLhtC92GarkjyYbxI3-4qzIWIRbZaw4wuP&index=4)
### Pi Day 2023
```python
from parkerpy import piday_2023
import math
math.pi
> 3.117
```
[Source](https://www.youtube.com/watch?v=_ZbUyS2IRMo&list=PLhtC92GarkjyYbxI3-4qzIWIRbZaw4wuP&index=3)
### Pi Day 2024
```python
from parkerpy import piday_2024
import math
math.pi
> 3.14159265358979323846264338327950288419716939937510582097494459230781640628620899862803482534211706798214808651328230664709384460955058223176
```
[Source](https://www.youtube.com/watch?v=LIg-6glbLkU&)
### Pi Day 2025
```python
from parkerpy import piday_list
import math
math.pi
> 3.125
```
[Source](https://www.youtube.com/watch?v=vlUTlbZT4ig&list=PLhtC92GarkjyYbxI3-4qzIWIRbZaw4wuP&index=1)

### Pi Day 2026
```python
from parkerpy import piday_2026
import math
math.pi
> 3.2265927137573907
```
[Source](https://www.youtube.com/watch?v=kahGSss6SsU)

