pymongo_inmemory


Namepymongo_inmemory JSON
Version 0.4.1 PyPI version JSON
download
home_pagehttps://github.com/kaizendorks/pymongo_inmemory
SummaryA mongo mocking library with an ephemeral MongoDB running in memory.
upload_time2024-03-17 20:51:13
maintainerErtugrul Karademir
docs_urlNone
authorKaizen Dorks
requires_python>=3.9,<4.0
licenseMIT
keywords mongodb testing pymongo
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [ [PyPI](https://pypi.org/project/pymongo-inmemory/) ][ [GitHub](https://github.com/kaizendorks/pymongo_inmemory) ][ [BETA Docs](https://kaizendorks.github.io/pymongo_inmemory/)]

# pymongo_inmemory

A mongo mocking library with an ephemeral MongoDB running in memory.

## What's new?

### v0.4.0

- Tooling enhancements. [[PR #90](https://github.com/kaizendorks/pymongo_inmemory/pull/90)]
- Configuration for data directory. [[PR #90](https://github.com/kaizendorks/pymongo_inmemory/pull/91)]
- Configuration for data directory. [[PR #90](https://github.com/kaizendorks/pymongo_inmemory/pull/94)]

### v0.3.1

- Development version upped to Python 3.9
- Update to build system. Contribution by [@pbsds](https://github.com/pbsds)
- Coercing boolean configs correctly. Issue [#82](https://github.com/kaizendorks/pymongo_inmemory/issues/82)

## Installation

```bash
pip install pymongo-inmemory
```

## Usage

### Configure

There are several ways you can configure `pymongo_inmemory`.

1. Insert a new section titled `pymongo_inmemory` to your project's `setup.cfg`
   version you want to spin up:
   ```ini
   [pymongo_inmemory]
   operating_system = ubuntu
   os_version = 18
   mongod_port = 27019
   ```
2. Define an `ALL_CAPS` environment variables with prefix `PYMONGOIM__` (attention to trailing double
   underscores.) For instance, to override the port, set up an environment variable
   `PYMONGOIM__MONGOD_PORT`.

### Import and use

`pymongo_inmemory` wraps the client class `MongoClient` that comes from `pymongo` and configures with an ephemeral MongoDB server.
You can import this `MongoClient` from `pymongo_inmemory` instead of `pymongo` and use it to perform tests:

```python
from pymongo_inmemory import MongoClient

client = MongoClient()  # No need to provide host
db = client['testdb']
collection = db['test-collection']
# etc., etc.
client.close()

# Also usable with context manager
with MongoClient() as client:
    # do stuff
```

## Configuration

|         | Config parameter     | Description                                                                                                | Default                                                                                                                    |
| ------- | -------------------- | ---------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
|         | `mongo_version`      | Which MongoD version to download and use.                                                                  | Latest for the OS                                                                                                          |
|         | `mongod_port`        | Override port preference.                                                                                  | Automatically picked between `27017` and `28000` after testing availability                                                |
|         | `operating_system`   | This makes sense for Linux setting, where there are several flavours                                       | Automatically determined (Generic for Linux)\*                                                                             |
|         | `os_version`         | If an operating system has several versions use this parameter to select one                               | Latest version of the OS will be selected from the list                                                                    |
|         | `download_url`       | If set, it won't attempt to determine which MongoDB to download. However there won't be a fallback either. | Automatically determined from given parameters and using [internal URL bank](pymongo_inmemory/downloader/_patterns.py)\*\* |
|         | `ignore_cache`       | Even if there is a downloaded version in the cache, download it again.                                     | False                                                                                                                      |
|         | `use_local_mongod`   | If set, it will try to use a local mongod instance instead of downloading one.                             | False                                                                                                                      |
|         | `download_folder`    | Override the default download location.                                                                    | pymongo_inmemory/.cache/download                                                                                           |
|         | `extract_folder`     | Override the default extraction location.                                                                  | pymongo_inmemory/.cache/extract                                                                                            |
| **NEW** | `mongod_data_folder` | Provide a data folder to be used by MongoD.                                                                | A `TemporaryDirectory` will be used                                                                                        |
| **NEW** | `mongo_client_host`  | Hostname or connection string                                                                              |                                                                                                                            |
| **NEW** | `dbname`             | Provide a database name to connect                                                                         | 'pimtest'                                                                                                                  |
|         |                      |                                                                                                            |

- \***_Note 1:_** Generic Linux version offering for MongoDB ends with version **4.0.23**. If the operating system is just `linux` and if selected MongoDB version is higher, it will default to `4.0.23`.
- **\***Note 2:\*\*\* URL bank is filled with URLs collected from [release list](https://www.mongodb.com/download-center/community/releases) and [archived released list](https://www.mongodb.com/download-center/community/releases/archive), so if a version is not in the bank you can use the same list to provide an official download link.

## Available MongoDB versions

There is an internal [URL bank](pymongo_inmemory/downloader/_patterns.py) that is filled with URLs collected from

- [release list](https://www.mongodb.com/download-center/community/releases) and
- [archived released list](https://www.mongodb.com/download-center/community/releases/archive)

Below table is a summary of possible setting for `operating_system`, `os_version` and available MongoDB versions for
them to set as `mongo_version` at `major.minor` level.

Note that, not all `major.minor.patch` level is available for all OS versions. For exact patch level range, either see
release pages of MongoDB or have a look at the internal [URL bank](pymongo_inmemory/downloader/_patterns.py).

|         | `operating_system` | `os_version` | MongoDB versions (`major.minor`)                      |
| ------- | ------------------ | ------------ | ----------------------------------------------------- |
|         | amazon             | 1            | 3.6, 3.2, 3.4, 4.2, 5.0, 4.0, 3.0, 4.4                |
|         | amazon             | 2            | 7.0, 6.0, 3.6, 5.0, 4.2, 4.0, 4.4                     |
| **NEW** | amazon             | 2023         | 7.0                                                   |
| **NEW** | amazon             | 2023-arm     | 7.0                                                   |
|         | debian             | 7            | 3.6, 3.0, 3.2, 3.4                                    |
|         | debian             | 8            | 3.6, 4.0, 3.2, 3.4                                    |
|         | debian             | 9            | 3.6, 5.0, 4.2, 4.0, 4.4                               |
|         | debian             | 10           | 4.2, 5.0, 6.0, 4.4                                    |
|         | debian             | 11           | 7.0, 6.0, 5.0                                         |
|         | rhel               | 5            | 3.0, 3.2                                              |
|         | rhel               | 6            | 3.6, 3.2, 3.4, 4.2, 4.0, 3.0, 4.4                     |
|         | rhel               | 7            | 7.0, 6.0, 3.6, 3.2, 3.4, 4.2, 5.0, 4.0, 3.0, 4.4      |
|         | rhel               | 8            | 7.0, 6.0, 3.6, 5.0, 4.2, 4.0, 4.4                     |
|         | rhel               | 9            | 7.0, 6.0                                              |
| **NEW** | rhel-arm           | 8            | 5.0, 7.0, 6.0, 4.4                                    |
| **NEW** | rhel-arm           | 9            | 7.0, 6.0                                              |
|         | suse               | 11           | 3.6, 3.0, 3.2, 3.4                                    |
|         | suse               | 12           | 7.0, 6.0, 3.6, 3.2, 3.4, 4.2, 5.0, 4.0, 4.4           |
|         | suse               | 15           | 7.0, 6.0, 5.0, 4.2, 4.4                               |
|         | ubuntu             | 12           | 3.6, 3.0, 3.2, 3.4                                    |
|         | ubuntu             | 14           | 3.6, 3.2, 3.4, 4.0, 3.0                               |
|         | ubuntu             | 16           | 3.6, 3.2, 3.4, 4.2, 4.0, 4.4                          |
|         | ubuntu             | 18           | 6.0, 3.6, 5.0, 4.2, 4.0, 4.4                          |
|         | ubuntu             | 20           | 5.0, 7.0, 6.0, 4.4                                    |
|         | ubuntu             | 22           | 7.0, 6.0                                              |
| **NEW** | ubuntu-arm         | 20           | 5.0, 7.0, 6.0, 4.4                                    |
| **NEW** | ubuntu-arm         | 22           | 7.0, 6.0                                              |
|         | linux              | generic      | 3.6, 3.2, 3.4, 2.6, 4.0, 3.0                          |
|         | osx                | generic      | 7.0, 6.0, 3.6, 3.2, 3.4, 4.2, 5.0, 2.6, 4.0, 3.0, 4.4 |
| **NEW** | macos              | arm          | 7.0, 6.0                                              |
|         | sunos              | 5            | 3.0, 2.6, 3.2, 3.4                                    |
|         | windows            | generic      | 7.0, 6.0, 3.6, 3.2, 3.4, 4.2, 5.0, 2.6, 4.0, 3.0, 4.4 |

\***_Note:_** No need to specify `generic`, as it will be chosen automatically since it's the only version for that OS.

### How do we determine which MongoDB to download?

There are two (three if it's a Linux flavour) bits of information we need to determine a MongoDB:
operating system and MongoDB version.

**Note:** You can always set `download_url` to provide an exact URL to download from.

#### Operating System detection

Python has limited tools in its standard library to determine the exact version of the operating
system and operating system version. `pymongo_inmemory` basically reads output of [`platform.system()`](<platform.system()>)
to determine if underlying OS is Linux, MacOS or Windows.

For Windows and MacOS, it will download only one flavour of OS for a particular MongoDB version (64bit and, for Windows, Windows Server version if there is one.)
However, Linux has many flavours. Up to MongoDB `4.0.23`, a MongoDB for a generic Linux OS can still be downloaded, but for later
versions of MongoDB, there are no such builds, hence you will need to explicitly set `operating_system`
parameter if you want to use MongoDB versions higher than that.

Operating system detection behaviour of `pymongo_inmemory` might change in the future, if there is a demand for more **magic**,
but for now we are keeping things simple.

#### Deciding MongoDB version

- If no version is provided, highest version of MongoDB for the operating system is selected.
- If only a **major** version is given, like `4`, then highest `minor.patch` version is selected, like 4.4.4.
- If only **major.minor** version is given, like `4.0`, then highest `patch` version is selected, like 4.0.23.
- If exact **major.minor.patch** version is given, like `4.0.22`, then that version is selected.
- If patch version is not found. like `4.0.50`, highest `patch` version is selected, like `4.0.23`.
- If minor version is not found. like `3.90.50`, highest `minor.patch` version is selected, like `3.6.22`.
- If major version is not found. like `1.0.0`, highest `major.minor.patch` version is selected, like `4.4.4`.

## Supported Python versions

Since few development tools only support Python version 3.9 and above, all testing and tooling done
from that version up.

This also limits the minimum Python version of tested features. However there shouldn't
be a hard limitation to use Python 3.5. We recommend upgrading older Python versions than that.

## Development

Project is set up to develop with [poetry](https://python-poetry.org/). We rely on
[pyenv](https://github.com/pyenv/pyenv#installation) to maintain the minimum supported
Python version.

After installing `pyenv`, `poetry`, and cloning the repo, create the shell and install
all package requirements:

```bash
pyenv install --skip-existing
poetry install --no-root
poetry shell
```

Run the tests:

```bash
pytest
```

If on NIX systems you can run further tests:

```bash
bash tests/integrity/test_integrity.sh
```

### Adding a new MongoDB version

Follow the guide [here](pymongo_inmemory/downloader/README.md).

### See how you can wet your feet

Check out [good first issues](https://github.com/kaizendorks/pymongo_inmemory/contribute).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/kaizendorks/pymongo_inmemory",
    "name": "pymongo_inmemory",
    "maintainer": "Ertugrul Karademir",
    "docs_url": null,
    "requires_python": ">=3.9,<4.0",
    "maintainer_email": "ekarademir@gmail.com",
    "keywords": "mongodb,testing,pymongo",
    "author": "Kaizen Dorks",
    "author_email": "kaizendorks@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/b6/dc/b75d76feb600bba5dd89831df0289bf14236316f3b6b1dc50a9821d6e7a6/pymongo_inmemory-0.4.1.tar.gz",
    "platform": null,
    "description": "[ [PyPI](https://pypi.org/project/pymongo-inmemory/) ][ [GitHub](https://github.com/kaizendorks/pymongo_inmemory) ][ [BETA Docs](https://kaizendorks.github.io/pymongo_inmemory/)]\n\n# pymongo_inmemory\n\nA mongo mocking library with an ephemeral MongoDB running in memory.\n\n## What's new?\n\n### v0.4.0\n\n- Tooling enhancements. [[PR #90](https://github.com/kaizendorks/pymongo_inmemory/pull/90)]\n- Configuration for data directory. [[PR #90](https://github.com/kaizendorks/pymongo_inmemory/pull/91)]\n- Configuration for data directory. [[PR #90](https://github.com/kaizendorks/pymongo_inmemory/pull/94)]\n\n### v0.3.1\n\n- Development version upped to Python 3.9\n- Update to build system. Contribution by [@pbsds](https://github.com/pbsds)\n- Coercing boolean configs correctly. Issue [#82](https://github.com/kaizendorks/pymongo_inmemory/issues/82)\n\n## Installation\n\n```bash\npip install pymongo-inmemory\n```\n\n## Usage\n\n### Configure\n\nThere are several ways you can configure `pymongo_inmemory`.\n\n1. Insert a new section titled `pymongo_inmemory` to your project's `setup.cfg`\n   version you want to spin up:\n   ```ini\n   [pymongo_inmemory]\n   operating_system = ubuntu\n   os_version = 18\n   mongod_port = 27019\n   ```\n2. Define an `ALL_CAPS` environment variables with prefix `PYMONGOIM__` (attention to trailing double\n   underscores.) For instance, to override the port, set up an environment variable\n   `PYMONGOIM__MONGOD_PORT`.\n\n### Import and use\n\n`pymongo_inmemory` wraps the client class `MongoClient` that comes from `pymongo` and configures with an ephemeral MongoDB server.\nYou can import this `MongoClient` from `pymongo_inmemory` instead of `pymongo` and use it to perform tests:\n\n```python\nfrom pymongo_inmemory import MongoClient\n\nclient = MongoClient()  # No need to provide host\ndb = client['testdb']\ncollection = db['test-collection']\n# etc., etc.\nclient.close()\n\n# Also usable with context manager\nwith MongoClient() as client:\n    # do stuff\n```\n\n## Configuration\n\n|         | Config parameter     | Description                                                                                                | Default                                                                                                                    |\n| ------- | -------------------- | ---------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |\n|         | `mongo_version`      | Which MongoD version to download and use.                                                                  | Latest for the OS                                                                                                          |\n|         | `mongod_port`        | Override port preference.                                                                                  | Automatically picked between `27017` and `28000` after testing availability                                                |\n|         | `operating_system`   | This makes sense for Linux setting, where there are several flavours                                       | Automatically determined (Generic for Linux)\\*                                                                             |\n|         | `os_version`         | If an operating system has several versions use this parameter to select one                               | Latest version of the OS will be selected from the list                                                                    |\n|         | `download_url`       | If set, it won't attempt to determine which MongoDB to download. However there won't be a fallback either. | Automatically determined from given parameters and using [internal URL bank](pymongo_inmemory/downloader/_patterns.py)\\*\\* |\n|         | `ignore_cache`       | Even if there is a downloaded version in the cache, download it again.                                     | False                                                                                                                      |\n|         | `use_local_mongod`   | If set, it will try to use a local mongod instance instead of downloading one.                             | False                                                                                                                      |\n|         | `download_folder`    | Override the default download location.                                                                    | pymongo_inmemory/.cache/download                                                                                           |\n|         | `extract_folder`     | Override the default extraction location.                                                                  | pymongo_inmemory/.cache/extract                                                                                            |\n| **NEW** | `mongod_data_folder` | Provide a data folder to be used by MongoD.                                                                | A `TemporaryDirectory` will be used                                                                                        |\n| **NEW** | `mongo_client_host`  | Hostname or connection string                                                                              |                                                                                                                            |\n| **NEW** | `dbname`             | Provide a database name to connect                                                                         | 'pimtest'                                                                                                                  |\n|         |                      |                                                                                                            |\n\n- \\***_Note 1:_** Generic Linux version offering for MongoDB ends with version **4.0.23**. If the operating system is just `linux` and if selected MongoDB version is higher, it will default to `4.0.23`.\n- **\\***Note 2:\\*\\*\\* URL bank is filled with URLs collected from [release list](https://www.mongodb.com/download-center/community/releases) and [archived released list](https://www.mongodb.com/download-center/community/releases/archive), so if a version is not in the bank you can use the same list to provide an official download link.\n\n## Available MongoDB versions\n\nThere is an internal [URL bank](pymongo_inmemory/downloader/_patterns.py) that is filled with URLs collected from\n\n- [release list](https://www.mongodb.com/download-center/community/releases) and\n- [archived released list](https://www.mongodb.com/download-center/community/releases/archive)\n\nBelow table is a summary of possible setting for `operating_system`, `os_version` and available MongoDB versions for\nthem to set as `mongo_version` at `major.minor` level.\n\nNote that, not all `major.minor.patch` level is available for all OS versions. For exact patch level range, either see\nrelease pages of MongoDB or have a look at the internal [URL bank](pymongo_inmemory/downloader/_patterns.py).\n\n|         | `operating_system` | `os_version` | MongoDB versions (`major.minor`)                      |\n| ------- | ------------------ | ------------ | ----------------------------------------------------- |\n|         | amazon             | 1            | 3.6, 3.2, 3.4, 4.2, 5.0, 4.0, 3.0, 4.4                |\n|         | amazon             | 2            | 7.0, 6.0, 3.6, 5.0, 4.2, 4.0, 4.4                     |\n| **NEW** | amazon             | 2023         | 7.0                                                   |\n| **NEW** | amazon             | 2023-arm     | 7.0                                                   |\n|         | debian             | 7            | 3.6, 3.0, 3.2, 3.4                                    |\n|         | debian             | 8            | 3.6, 4.0, 3.2, 3.4                                    |\n|         | debian             | 9            | 3.6, 5.0, 4.2, 4.0, 4.4                               |\n|         | debian             | 10           | 4.2, 5.0, 6.0, 4.4                                    |\n|         | debian             | 11           | 7.0, 6.0, 5.0                                         |\n|         | rhel               | 5            | 3.0, 3.2                                              |\n|         | rhel               | 6            | 3.6, 3.2, 3.4, 4.2, 4.0, 3.0, 4.4                     |\n|         | rhel               | 7            | 7.0, 6.0, 3.6, 3.2, 3.4, 4.2, 5.0, 4.0, 3.0, 4.4      |\n|         | rhel               | 8            | 7.0, 6.0, 3.6, 5.0, 4.2, 4.0, 4.4                     |\n|         | rhel               | 9            | 7.0, 6.0                                              |\n| **NEW** | rhel-arm           | 8            | 5.0, 7.0, 6.0, 4.4                                    |\n| **NEW** | rhel-arm           | 9            | 7.0, 6.0                                              |\n|         | suse               | 11           | 3.6, 3.0, 3.2, 3.4                                    |\n|         | suse               | 12           | 7.0, 6.0, 3.6, 3.2, 3.4, 4.2, 5.0, 4.0, 4.4           |\n|         | suse               | 15           | 7.0, 6.0, 5.0, 4.2, 4.4                               |\n|         | ubuntu             | 12           | 3.6, 3.0, 3.2, 3.4                                    |\n|         | ubuntu             | 14           | 3.6, 3.2, 3.4, 4.0, 3.0                               |\n|         | ubuntu             | 16           | 3.6, 3.2, 3.4, 4.2, 4.0, 4.4                          |\n|         | ubuntu             | 18           | 6.0, 3.6, 5.0, 4.2, 4.0, 4.4                          |\n|         | ubuntu             | 20           | 5.0, 7.0, 6.0, 4.4                                    |\n|         | ubuntu             | 22           | 7.0, 6.0                                              |\n| **NEW** | ubuntu-arm         | 20           | 5.0, 7.0, 6.0, 4.4                                    |\n| **NEW** | ubuntu-arm         | 22           | 7.0, 6.0                                              |\n|         | linux              | generic      | 3.6, 3.2, 3.4, 2.6, 4.0, 3.0                          |\n|         | osx                | generic      | 7.0, 6.0, 3.6, 3.2, 3.4, 4.2, 5.0, 2.6, 4.0, 3.0, 4.4 |\n| **NEW** | macos              | arm          | 7.0, 6.0                                              |\n|         | sunos              | 5            | 3.0, 2.6, 3.2, 3.4                                    |\n|         | windows            | generic      | 7.0, 6.0, 3.6, 3.2, 3.4, 4.2, 5.0, 2.6, 4.0, 3.0, 4.4 |\n\n\\***_Note:_** No need to specify `generic`, as it will be chosen automatically since it's the only version for that OS.\n\n### How do we determine which MongoDB to download?\n\nThere are two (three if it's a Linux flavour) bits of information we need to determine a MongoDB:\noperating system and MongoDB version.\n\n**Note:** You can always set `download_url` to provide an exact URL to download from.\n\n#### Operating System detection\n\nPython has limited tools in its standard library to determine the exact version of the operating\nsystem and operating system version. `pymongo_inmemory` basically reads output of [`platform.system()`](<platform.system()>)\nto determine if underlying OS is Linux, MacOS or Windows.\n\nFor Windows and MacOS, it will download only one flavour of OS for a particular MongoDB version (64bit and, for Windows, Windows Server version if there is one.)\nHowever, Linux has many flavours. Up to MongoDB `4.0.23`, a MongoDB for a generic Linux OS can still be downloaded, but for later\nversions of MongoDB, there are no such builds, hence you will need to explicitly set `operating_system`\nparameter if you want to use MongoDB versions higher than that.\n\nOperating system detection behaviour of `pymongo_inmemory` might change in the future, if there is a demand for more **magic**,\nbut for now we are keeping things simple.\n\n#### Deciding MongoDB version\n\n- If no version is provided, highest version of MongoDB for the operating system is selected.\n- If only a **major** version is given, like `4`, then highest `minor.patch` version is selected, like 4.4.4.\n- If only **major.minor** version is given, like `4.0`, then highest `patch` version is selected, like 4.0.23.\n- If exact **major.minor.patch** version is given, like `4.0.22`, then that version is selected.\n- If patch version is not found. like `4.0.50`, highest `patch` version is selected, like `4.0.23`.\n- If minor version is not found. like `3.90.50`, highest `minor.patch` version is selected, like `3.6.22`.\n- If major version is not found. like `1.0.0`, highest `major.minor.patch` version is selected, like `4.4.4`.\n\n## Supported Python versions\n\nSince few development tools only support Python version 3.9 and above, all testing and tooling done\nfrom that version up.\n\nThis also limits the minimum Python version of tested features. However there shouldn't\nbe a hard limitation to use Python 3.5. We recommend upgrading older Python versions than that.\n\n## Development\n\nProject is set up to develop with [poetry](https://python-poetry.org/). We rely on\n[pyenv](https://github.com/pyenv/pyenv#installation) to maintain the minimum supported\nPython version.\n\nAfter installing `pyenv`, `poetry`, and cloning the repo, create the shell and install\nall package requirements:\n\n```bash\npyenv install --skip-existing\npoetry install --no-root\npoetry shell\n```\n\nRun the tests:\n\n```bash\npytest\n```\n\nIf on NIX systems you can run further tests:\n\n```bash\nbash tests/integrity/test_integrity.sh\n```\n\n### Adding a new MongoDB version\n\nFollow the guide [here](pymongo_inmemory/downloader/README.md).\n\n### See how you can wet your feet\n\nCheck out [good first issues](https://github.com/kaizendorks/pymongo_inmemory/contribute).\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A mongo mocking library with an ephemeral MongoDB running in memory.",
    "version": "0.4.1",
    "project_urls": {
        "Bug Reports": "https://github.com/kaizendorks/pymongo_inmemory/issues",
        "Homepage": "https://github.com/kaizendorks/pymongo_inmemory",
        "Repository": "https://github.com/kaizendorks/pymongo_inmemory"
    },
    "split_keywords": [
        "mongodb",
        "testing",
        "pymongo"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea2c8e840b14d86bec3a7790bb6a21974c6255aac9f4c17627d6c4a423edd3af",
                "md5": "f487c6859b71aa4a81f2dc74b79deb0e",
                "sha256": "c352c1ae1e1d7afbf966e8b4f92649dd0e084267997347bb8716ddb4734bdbc0"
            },
            "downloads": -1,
            "filename": "pymongo_inmemory-0.4.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f487c6859b71aa4a81f2dc74b79deb0e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9,<4.0",
            "size": 17205,
            "upload_time": "2024-03-17T20:51:11",
            "upload_time_iso_8601": "2024-03-17T20:51:11.051700Z",
            "url": "https://files.pythonhosted.org/packages/ea/2c/8e840b14d86bec3a7790bb6a21974c6255aac9f4c17627d6c4a423edd3af/pymongo_inmemory-0.4.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6dcb75d76feb600bba5dd89831df0289bf14236316f3b6b1dc50a9821d6e7a6",
                "md5": "6b6172c622faeff1fac2709ee9eee23e",
                "sha256": "09c67901b91b43e86b2af6979a25c167171ce0c64e7473c5d96734828f470086"
            },
            "downloads": -1,
            "filename": "pymongo_inmemory-0.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "6b6172c622faeff1fac2709ee9eee23e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9,<4.0",
            "size": 17413,
            "upload_time": "2024-03-17T20:51:13",
            "upload_time_iso_8601": "2024-03-17T20:51:13.059279Z",
            "url": "https://files.pythonhosted.org/packages/b6/dc/b75d76feb600bba5dd89831df0289bf14236316f3b6b1dc50a9821d6e7a6/pymongo_inmemory-0.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-17 20:51:13",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "kaizendorks",
    "github_project": "pymongo_inmemory",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pymongo_inmemory"
}
        
Elapsed time: 0.21647s