pyslope


Namepyslope JSON
Version 1.2.0 PyPI version JSON
download
home_pagehttps://github.com/JesseBonanno/pyslope
SummaryA 2D Slope Stability Software using bishops method
upload_time2023-05-23 12:52:59
maintainer
docs_urlNone
authorJesse Bonanno
requires_python
licenseMIT
keywords geotechnical slope stability civil engineering bishops
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # pySlope


[![PyPi](https://img.shields.io/pypi/v/pyslope.svg)](https://pypi.org/project/pyslope/)
[![License](https://img.shields.io/badge/license-MIT-lightgreen.svg)](https://github.com/JesseBonanno/pyslope/blob/main/LICENSE.txt)
[![CodeFactor](https://www.codefactor.io/repository/github/jessebonanno/pyslope/badge?s=43db3d31fb1ca55747ede7e5205c7d9e0cf37ced)](https://www.codefactor.io/repository/github/jessebonanno/pyslope)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/JesseBonanno/pyslope/main?filepath=pyslope%2Fexamples%2Freadme_example.ipynb)
[![Documentation Status](https://readthedocs.org/projects/pyslope/badge/?version=latest)](https://pyslope.readthedocs.io/en/latest)
[![Code Style](https://img.shields.io/badge/code%20style-black-black)](https://github.com/psf/black)
[![Downloads](https://pepy.tech/badge/pyslope)](https://pepy.tech/project/pyslope)
[![codecov](https://codecov.io/gh/JesseBonanno/PySlope/branch/main/graph/badge.svg?token=ASUIW54CXV)](https://codecov.io/gh/JesseBonanno/PySlope)
[![CI](https://github.com/JesseBonanno/PySlope/actions/workflows/ci.yaml/badge.svg)](https://github.com/JesseBonanno/PySlope/actions/workflows/ci.yaml)
[![pre-commit](https://github.com/JesseBonanno/PySlope/actions/workflows/pre-commit.yaml/badge.svg)](https://github.com/JesseBonanno/PySlope/actions/workflows/pre-commit.yaml)
[![Website](https://img.shields.io/badge/website-up-brightgreen)](https://pyslope.herokuapp.com/)


pySlope is a 2D slope stability module based on bishops method of slices. This module allows for the following parameters:
   - unlimited horizontal geological units
   - water table
   - uniform loads
   - line loads
   - slope search limits

This module can return plots for the critical failure slope or plots for all failure slopes below a certain factor of safety.

## Project Purpose

The purpose of this project is two fold:

   1. Create a free online slope stability software [![Website](https://img.shields.io/badge/website-up-brightgreen)](https://pyslope.herokuapp.com/)
   2. Provide a pythonic solution to implementing Bishop's method based on object oriented coding principles

Performing a slope stability calculation by hand is extremely uneconimical and time consuming. The problem involves a lot of geometrical mathematics which can make the calculation hard to achieve with only excel. Python packages exist for geometrical mathematics which makes Python well suited for implementing a slope stability analysis package. There is however, no well-documented open-source slope stability software that can currently be found online. This package aims to fill that gap.

## Functionality and usage

A typical use case of the `pySlope` package involves the following steps:

1. Create a `Slope` object
2. Create `Material` objects and assign to `Slope`
3. Create `Udl` or `LineLoad` objects and assign to `Slope`
4. Set water table
5. Set analysis limits
6. Analyse slope for critical factor of safety
7. Create plots

You can follow along with this example below in this web-based binder jupyter notebook. [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/JesseBonanno/pyslope/main?filepath=pyslope%2Fexamples%2Freadme_example.ipynb)

### Creating a Slope

The creation of a `Slope` instance involves the input of the:

   - slope height (m) and
   - angle (deg) or
   - length (m)

Only one of the values is used out of the length and angle, the other value should be set to None.

```python
s = Slope(height=3, angle=30, length=None)
```

### Defining Materials

The creation of a `Material` object involves the input of:

   - unit weight (kN/m3)
   - friction angle
   - cohesion (kPa)
   - depth from top of slope to bottom of material layer (m)

Once a material is defined it can then be assigned to the `Slope` instance.

```python
m1 = Material(
    unit_weight=20,
    friction_angle=45,
    cohesion=2,
    depth_to_bottom=2
)
m2 = Material(20, 30, 2, 5)    # Material defined with positional arguments
s.set_materials(m1, m2)        # An unlimited number of materials can be assigned at one time
```

The slope will know to order the materials based on the depth to the bottom of the strata so the order that the materials are provided isn't important. It is important that the same depth isnt provided twice for two different materials, and attempting this will raise an error.

### Defining Uniform Loads

The creation of a `Udl` (uniform distributed load) object involves the input of:

   - magnitude of load (kPa)
   - offset of load from crest of slope (m) (default 0 m)
   - length of load (m) (default infinite)

```python
u1 = Udl(magnitude = 100, offset = 2, length = 1)

# by default offset = 0 (m) and length = None.
u2 = Udl(magnitude = 20)    

# assign uniform loads to model 
s.set_udls(u1, u2)
```

### Defining Line Loads

The creation of a `LineLoad` object involves the input of:
   - magnitude of load (kN / m)
   - offset of load from crest of slope (m) (default 0 m)

```python

# define line load, similiar to Udl except there is no length parameter and magnitude is in units (kN/m)
p1 = LineLoad(magnitude = 10, offset = 3)

# assign line loads to slope
s.set_lls(p1)
```

### Defining Water Table

By default there is no water table. The water table is defined by its depth from the top of the slope (m).

```python
s.set_water_table(4)
```

### Defining Analysis Limits

Analysis limits can be specified as a general left and right limit, OR as a set of limits which control the range from which the top of failures can occur and the bottom of failures can occur.

Currently the model coordinates are dynamic in that the overall model dimensions are based on the size of the slope.

The `get_top_coordinates` and `get_bottom_coordinates` methods can be useful to help define limits in reference to the top and bottom of the slope. 

```python
s.set_analysis_limits(s.get_top_coordinates()[0] - 5, s.get_bottom_coordinates()[0] + 5)
```

### Analysing Slope

To analyse the `Slope` the analyse_slope() method is called. By default 2000 iterations are run with 50 slices per failure plane.

```python
# The user can change the number of slices and iterations with the method below.
# The line below is implicitly called and only required by the user if they want to change iterations
s.update_analysis_options(slices=50, iterations=2500)

# run analysis
s.analyse_slope()
```

### Interpretting results

After analysing the slope the critical factor of safety can be taken as below.

```python
print(s.get_min_FOS())
```

A more useful output might be a plot. Currently there are 3 main plots that can be called.

```python
s.plot_boundary()  # plots only the boundary
s.plot_critical()  # plots the boundary with the critical failure of the slope
s.plot_all_planes(max_fos=i) # plots boundary with all slope failures below fos i (where i is number)
```

Examples of the plots are shown below. 

![example_1 plot critical](https://github.com/JesseBonanno/pyslope/blob/main/pyslope/examples/readme_example_plot_critical.png)
![example_1 plot all slopes fos less than 2](https://github.com/JesseBonanno/pyslope/blob/main/pyslope/examples/readme_example_plot_all_maxfos2.png)

### Dynamic Analysis

Instead of standard static analysis the user also has the option to make load objects *dynamic*. The user can then perform a dynamic analysis rather than static, which moves the load in order to determine the required offset for a minimum factor of safety.

Considering the example above, we can continue and make u1 dynamic.

```python
# remove udl object load from slope
s.remove_udls(u1)

# now lets add the udl again but this time set the load as 'dynamic'
# for all loads and materials we also have the option to set the color ourselves
# lets try set the color as 'purple'
s.set_udls(
    Udl(magnitude=100, length=1, offset=2, dynamic_offset=True, color='purple')
)

# run dynamic analysis aiming for a FOS of 1.4
s.analyse_dynamic(critical_fos=1.4)

# get dictionary of all determined minimum FOS with key value pairing of offset : value
s.get_dynamic_results()

# or can print the values out
s.print_dynamic_results()
```

From this we get the following output results:

- Offset: 0.000 m, FOS: 1.288
- Offset: 0.735 m, FOS: 1.402
- Offset: 1.463 m, FOS: 1.510
- Offset: 5.186 m, FOS: 1.684

We can also get a plot as after running dynamic analysis all plots are based on the final iteration of the dynamic analysis.

![example_1 plot all slopes fos less than 2](https://github.com/JesseBonanno/pyslope/blob/main/pyslope/examples/readme_example_plot_dynamic.png)


## Installing the package

If you want to install the `pyslope` package, you run this one-liner:

```shell
pip install pyslope
```

> **NOTE**: You need Python 3 to install this package (you may need to write `pip3` instead of `pip`).

The library dependencies are listed in the file `requirements.txt`, but you only need to look at them if you clone the repository.
If you install the package via `pip`, the listed dependencies should be installed automatically.

## Testing

This project uses ``pytest`` to run tests and also to test docstring examples.

Install the test dependencies.

```shell
pip install -r requirements.txt
```

Run the tests from the top level directory.

```shell
$ pytest
=== 3 passed in 0.13 seconds ===
```

## Validation

The results of this project have been validated against Slidev6.0 and Hyrcanv1.75. See the [documentation](https://pyslope.readthedocs.io/en/latest/examples.html#validation-of-results) for more detail 

## Future Work

There is a lot of room for expansion of the project, and the direction of the project will strongly be affected by open-source contribution from the community. Some things in the short to medium term scope of work are:

- better documentation
- unit testing
- horizontal loads

## Contributing

The guidelines for contributing are specified [here](https://github.com/JesseBonanno/pyslope/blob/main/CONTRIBUTING.md).

## Support

The guidelines for support are specified [here](https://github.com/JesseBonanno/pyslope/blob/main/SUPPORT.md).


## Developing

This project uses ``black`` to format code and ``flake8`` for linting. We also support ``pre-commit`` to ensure
these have been run. To configure your local environment please install these development dependencies and set up
the commit hooks.

```shell
$ pip install black flake8 pre-commit
$ pre-commit install
```

Releasing
---------

Releases are published automatically when a tag is pushed to GitHub.

```shell
# Set next version number
export RELEASE=vX.X.X

# Create tags
git commit --allow-empty -m "Release $RELEASE"
git tag -a $RELEASE -m "Version $RELEASE"

# Push (for working from a fork)
git push upstream --tags

# if not working from fork would instead be
# git push origin --tags
```

Or set a tag with Github Desktop.

## License

[![License](https://img.shields.io/badge/license-MIT-lightgreen.svg)](https://github.com/JesseBonanno/pyslope/blob/main/LICENSE.txt)



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/JesseBonanno/pyslope",
    "name": "pyslope",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "geotechnical,slope,stability,civil,engineering,bishops",
    "author": "Jesse Bonanno",
    "author_email": "jessebonanno@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/86/0f/10450d129f2716232e416fc717ddaa3b5ddab2d3c527a18b691c49faa6e4/pyslope-1.2.0.tar.gz",
    "platform": null,
    "description": "# pySlope\n\n\n[![PyPi](https://img.shields.io/pypi/v/pyslope.svg)](https://pypi.org/project/pyslope/)\n[![License](https://img.shields.io/badge/license-MIT-lightgreen.svg)](https://github.com/JesseBonanno/pyslope/blob/main/LICENSE.txt)\n[![CodeFactor](https://www.codefactor.io/repository/github/jessebonanno/pyslope/badge?s=43db3d31fb1ca55747ede7e5205c7d9e0cf37ced)](https://www.codefactor.io/repository/github/jessebonanno/pyslope)\n[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/JesseBonanno/pyslope/main?filepath=pyslope%2Fexamples%2Freadme_example.ipynb)\n[![Documentation Status](https://readthedocs.org/projects/pyslope/badge/?version=latest)](https://pyslope.readthedocs.io/en/latest)\n[![Code Style](https://img.shields.io/badge/code%20style-black-black)](https://github.com/psf/black)\n[![Downloads](https://pepy.tech/badge/pyslope)](https://pepy.tech/project/pyslope)\n[![codecov](https://codecov.io/gh/JesseBonanno/PySlope/branch/main/graph/badge.svg?token=ASUIW54CXV)](https://codecov.io/gh/JesseBonanno/PySlope)\n[![CI](https://github.com/JesseBonanno/PySlope/actions/workflows/ci.yaml/badge.svg)](https://github.com/JesseBonanno/PySlope/actions/workflows/ci.yaml)\n[![pre-commit](https://github.com/JesseBonanno/PySlope/actions/workflows/pre-commit.yaml/badge.svg)](https://github.com/JesseBonanno/PySlope/actions/workflows/pre-commit.yaml)\n[![Website](https://img.shields.io/badge/website-up-brightgreen)](https://pyslope.herokuapp.com/)\n\n\npySlope is a 2D slope stability module based on bishops method of slices. This module allows for the following parameters:\n   - unlimited horizontal geological units\n   - water table\n   - uniform loads\n   - line loads\n   - slope search limits\n\nThis module can return plots for the critical failure slope or plots for all failure slopes below a certain factor of safety.\n\n## Project Purpose\n\nThe purpose of this project is two fold:\n\n   1. Create a free online slope stability software [![Website](https://img.shields.io/badge/website-up-brightgreen)](https://pyslope.herokuapp.com/)\n   2. Provide a pythonic solution to implementing Bishop's method based on object oriented coding principles\n\nPerforming a slope stability calculation by hand is extremely uneconimical and time consuming. The problem involves a lot of geometrical mathematics which can make the calculation hard to achieve with only excel. Python packages exist for geometrical mathematics which makes Python well suited for implementing a slope stability analysis package. There is however, no well-documented open-source slope stability software that can currently be found online. This package aims to fill that gap.\n\n## Functionality and usage\n\nA typical use case of the `pySlope` package involves the following steps:\n\n1. Create a `Slope` object\n2. Create `Material` objects and assign to `Slope`\n3. Create `Udl` or `LineLoad` objects and assign to `Slope`\n4. Set water table\n5. Set analysis limits\n6. Analyse slope for critical factor of safety\n7. Create plots\n\nYou can follow along with this example below in this web-based binder jupyter notebook. [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/JesseBonanno/pyslope/main?filepath=pyslope%2Fexamples%2Freadme_example.ipynb)\n\n### Creating a Slope\n\nThe creation of a `Slope` instance involves the input of the:\n\n   - slope height (m) and\n   - angle (deg) or\n   - length (m)\n\nOnly one of the values is used out of the length and angle, the other value should be set to None.\n\n```python\ns = Slope(height=3, angle=30, length=None)\n```\n\n### Defining Materials\n\nThe creation of a `Material` object involves the input of:\n\n   - unit weight (kN/m3)\n   - friction angle\n   - cohesion (kPa)\n   - depth from top of slope to bottom of material layer (m)\n\nOnce a material is defined it can then be assigned to the `Slope` instance.\n\n```python\nm1 = Material(\n    unit_weight=20,\n    friction_angle=45,\n    cohesion=2,\n    depth_to_bottom=2\n)\nm2 = Material(20, 30, 2, 5)    # Material defined with positional arguments\ns.set_materials(m1, m2)        # An unlimited number of materials can be assigned at one time\n```\n\nThe slope will know to order the materials based on the depth to the bottom of the strata so the order that the materials are provided isn't important. It is important that the same depth isnt provided twice for two different materials, and attempting this will raise an error.\n\n### Defining Uniform Loads\n\nThe creation of a `Udl` (uniform distributed load) object involves the input of:\n\n   - magnitude of load (kPa)\n   - offset of load from crest of slope (m) (default 0 m)\n   - length of load (m) (default infinite)\n\n```python\nu1 = Udl(magnitude = 100, offset = 2, length = 1)\n\n# by default offset = 0 (m) and length = None.\nu2 = Udl(magnitude = 20)    \n\n# assign uniform loads to model \ns.set_udls(u1, u2)\n```\n\n### Defining Line Loads\n\nThe creation of a `LineLoad` object involves the input of:\n   - magnitude of load (kN / m)\n   - offset of load from crest of slope (m) (default 0 m)\n\n```python\n\n# define line load, similiar to Udl except there is no length parameter and magnitude is in units (kN/m)\np1 = LineLoad(magnitude = 10, offset = 3)\n\n# assign line loads to slope\ns.set_lls(p1)\n```\n\n### Defining Water Table\n\nBy default there is no water table. The water table is defined by its depth from the top of the slope (m).\n\n```python\ns.set_water_table(4)\n```\n\n### Defining Analysis Limits\n\nAnalysis limits can be specified as a general left and right limit, OR as a set of limits which control the range from which the top of failures can occur and the bottom of failures can occur.\n\nCurrently the model coordinates are dynamic in that the overall model dimensions are based on the size of the slope.\n\nThe `get_top_coordinates` and `get_bottom_coordinates` methods can be useful to help define limits in reference to the top and bottom of the slope. \n\n```python\ns.set_analysis_limits(s.get_top_coordinates()[0] - 5, s.get_bottom_coordinates()[0] + 5)\n```\n\n### Analysing Slope\n\nTo analyse the `Slope` the analyse_slope() method is called. By default 2000 iterations are run with 50 slices per failure plane.\n\n```python\n# The user can change the number of slices and iterations with the method below.\n# The line below is implicitly called and only required by the user if they want to change iterations\ns.update_analysis_options(slices=50, iterations=2500)\n\n# run analysis\ns.analyse_slope()\n```\n\n### Interpretting results\n\nAfter analysing the slope the critical factor of safety can be taken as below.\n\n```python\nprint(s.get_min_FOS())\n```\n\nA more useful output might be a plot. Currently there are 3 main plots that can be called.\n\n```python\ns.plot_boundary()  # plots only the boundary\ns.plot_critical()  # plots the boundary with the critical failure of the slope\ns.plot_all_planes(max_fos=i) # plots boundary with all slope failures below fos i (where i is number)\n```\n\nExamples of the plots are shown below. \n\n![example_1 plot critical](https://github.com/JesseBonanno/pyslope/blob/main/pyslope/examples/readme_example_plot_critical.png)\n![example_1 plot all slopes fos less than 2](https://github.com/JesseBonanno/pyslope/blob/main/pyslope/examples/readme_example_plot_all_maxfos2.png)\n\n### Dynamic Analysis\n\nInstead of standard static analysis the user also has the option to make load objects *dynamic*. The user can then perform a dynamic analysis rather than static, which moves the load in order to determine the required offset for a minimum factor of safety.\n\nConsidering the example above, we can continue and make u1 dynamic.\n\n```python\n# remove udl object load from slope\ns.remove_udls(u1)\n\n# now lets add the udl again but this time set the load as 'dynamic'\n# for all loads and materials we also have the option to set the color ourselves\n# lets try set the color as 'purple'\ns.set_udls(\n    Udl(magnitude=100, length=1, offset=2, dynamic_offset=True, color='purple')\n)\n\n# run dynamic analysis aiming for a FOS of 1.4\ns.analyse_dynamic(critical_fos=1.4)\n\n# get dictionary of all determined minimum FOS with key value pairing of offset : value\ns.get_dynamic_results()\n\n# or can print the values out\ns.print_dynamic_results()\n```\n\nFrom this we get the following output results:\n\n- Offset: 0.000 m, FOS: 1.288\n- Offset: 0.735 m, FOS: 1.402\n- Offset: 1.463 m, FOS: 1.510\n- Offset: 5.186 m, FOS: 1.684\n\nWe can also get a plot as after running dynamic analysis all plots are based on the final iteration of the dynamic analysis.\n\n![example_1 plot all slopes fos less than 2](https://github.com/JesseBonanno/pyslope/blob/main/pyslope/examples/readme_example_plot_dynamic.png)\n\n\n## Installing the package\n\nIf you want to install the `pyslope` package, you run this one-liner:\n\n```shell\npip install pyslope\n```\n\n> **NOTE**: You need Python 3 to install this package (you may need to write `pip3` instead of `pip`).\n\nThe library dependencies are listed in the file `requirements.txt`, but you only need to look at them if you clone the repository.\nIf you install the package via `pip`, the listed dependencies should be installed automatically.\n\n## Testing\n\nThis project uses ``pytest`` to run tests and also to test docstring examples.\n\nInstall the test dependencies.\n\n```shell\npip install -r requirements.txt\n```\n\nRun the tests from the top level directory.\n\n```shell\n$ pytest\n=== 3 passed in 0.13 seconds ===\n```\n\n## Validation\n\nThe results of this project have been validated against Slidev6.0 and Hyrcanv1.75. See the [documentation](https://pyslope.readthedocs.io/en/latest/examples.html#validation-of-results) for more detail \n\n## Future Work\n\nThere is a lot of room for expansion of the project, and the direction of the project will strongly be affected by open-source contribution from the community. Some things in the short to medium term scope of work are:\n\n- better documentation\n- unit testing\n- horizontal loads\n\n## Contributing\n\nThe guidelines for contributing are specified [here](https://github.com/JesseBonanno/pyslope/blob/main/CONTRIBUTING.md).\n\n## Support\n\nThe guidelines for support are specified [here](https://github.com/JesseBonanno/pyslope/blob/main/SUPPORT.md).\n\n\n## Developing\n\nThis project uses ``black`` to format code and ``flake8`` for linting. We also support ``pre-commit`` to ensure\nthese have been run. To configure your local environment please install these development dependencies and set up\nthe commit hooks.\n\n```shell\n$ pip install black flake8 pre-commit\n$ pre-commit install\n```\n\nReleasing\n---------\n\nReleases are published automatically when a tag is pushed to GitHub.\n\n```shell\n# Set next version number\nexport RELEASE=vX.X.X\n\n# Create tags\ngit commit --allow-empty -m \"Release $RELEASE\"\ngit tag -a $RELEASE -m \"Version $RELEASE\"\n\n# Push (for working from a fork)\ngit push upstream --tags\n\n# if not working from fork would instead be\n# git push origin --tags\n```\n\nOr set a tag with Github Desktop.\n\n## License\n\n[![License](https://img.shields.io/badge/license-MIT-lightgreen.svg)](https://github.com/JesseBonanno/pyslope/blob/main/LICENSE.txt)\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A 2D Slope Stability Software using bishops method",
    "version": "1.2.0",
    "project_urls": {
        "Download": "https://github.com/JesseBonanno/pyslope/archive/v1.2.0.tar.gz",
        "Homepage": "https://github.com/JesseBonanno/pyslope"
    },
    "split_keywords": [
        "geotechnical",
        "slope",
        "stability",
        "civil",
        "engineering",
        "bishops"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c955b11a7ce4a0ee94639d0906aa3821920df4bd69c390befcc6a5a399e6e8fe",
                "md5": "738a2b7641f3f64609f53bb2d2cb83ff",
                "sha256": "f8e1fe69383f3df8a3f5938798334cc4276eb52cf7422ae524fa17ed9ad2a869"
            },
            "downloads": -1,
            "filename": "pyslope-1.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "738a2b7641f3f64609f53bb2d2cb83ff",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 29658,
            "upload_time": "2023-05-23T12:52:56",
            "upload_time_iso_8601": "2023-05-23T12:52:56.982089Z",
            "url": "https://files.pythonhosted.org/packages/c9/55/b11a7ce4a0ee94639d0906aa3821920df4bd69c390befcc6a5a399e6e8fe/pyslope-1.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "860f10450d129f2716232e416fc717ddaa3b5ddab2d3c527a18b691c49faa6e4",
                "md5": "1fe802131cbc91b3c52b5f38f8d46dd8",
                "sha256": "1e90f453566a98fb6b21fba948f1ef47620ca612bd971e9a6e416916be4a8ba2"
            },
            "downloads": -1,
            "filename": "pyslope-1.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "1fe802131cbc91b3c52b5f38f8d46dd8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 5388870,
            "upload_time": "2023-05-23T12:52:59",
            "upload_time_iso_8601": "2023-05-23T12:52:59.578621Z",
            "url": "https://files.pythonhosted.org/packages/86/0f/10450d129f2716232e416fc717ddaa3b5ddab2d3c527a18b691c49faa6e4/pyslope-1.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-23 12:52:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "JesseBonanno",
    "github_project": "pyslope",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [],
    "lcname": "pyslope"
}
        
Elapsed time: 0.07188s