Metadata-Version: 2.1
Name: orbitkit
Version: 0.8.16
Summary: This project is only for Orbit Tech internal use.
Home-page: https://github.com/clown-0726/orbitkit
Author: Lilu Cao
Author-email: lilu.cao@qq.com
Maintainer: Lilu Cao
Maintainer-email: lilu.cao@qq.com
License: MIT License
Platform: all
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: Implementation
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: boto3>=1.16.0
Requires-Dist: requests>=2.12.1
Requires-Dist: prettytable>=3.0.0
Requires-Dist: pytz>=2022.1
Requires-Dist: Deprecated
Requires-Dist: func_timeout

# orbitkit

[![pypi-version]][pypi]

**This project is only for Orbit Technology [https://www.orbitfin.ai/] internal use.**

Full documentation for the project is available at [https://github.com/clown-0726/orbitkit/tree/main/docs][docs].

---

# Overview

`orbitkit` is a powerful and flexible toolkit for enhancing your application.

Some reasons you might want to use `orbitkit`:

* The out-of-box utils' api to use for your application.
* Customizable all the way down - just use few of code to implement file extraction.

----

# Requirements

* Python (3.5, 3.6, 3.7, 3.8, 3.9)
* Django (2.2, 3.0, 3.1, 3.2)

We **highly recommend** and only officially support the latest patch release of
each Python and Django series.

# Installation

Install using `pip`...
```
pip install orbitkit
```

# Example

Let's take a look at a quick example of using `orbitkit` to build your application.

Startup up a new file extraction like so...
```
pip install orbitkit
```

Now edit any python file in your project:

```python
from pdf_extractor.pdf_block_extractor_v2 import PdfBlockExtractV2

pdf_block_extract = PdfBlockExtractV2(local_path='example.pdf', extend_meta={})
text_block_arr = pdf_block_extract.extract()

for item in text_block_arr:
    print(item)
```

We'd also like to configure `extract_url` as your pleased.

That's it, we're done!

# Documentation & Support

Full documentation for the project is available at [https://github.com/clown-0726/orbitkit/tree/main/docs][docs].

For questions and support, use the [https://github.com/clown-0726/orbitkit/issues] to track.

[pypi-version]: https://img.shields.io/pypi/v/orbitkit.svg
[pypi]: https://pypi.org/project/orbitkit/
