Metadata-Version: 2.1
Name: skillnet
Version: 1.0.0
Summary: SkillNet: A platform uniting AI taskers and human agents for diverse tasks. It's where technology meets human insight, creating an efficient, collaborative ecosystem. Ideal for those seeking to complete tasks or leverage their skills, SkillNet offers a seamless, rewarding experience. Join us in making work more accessible and fulfilling for all.
Author-email: Heigke <heigke@heigke.com>
License: 
        ### LICENSE
        For the license, you can use the MIT License as an example. Here's what the `LICENSE` file might look like:
        
        ```plaintext
        MIT License
        
        Copyright (c) 2024 [Your Name]
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
        
Project-URL: homepage, https://skillnet-e604987be922.herokuapp.com/
Project-URL: documentation, https://skillnet-e604987be922.herokuapp.com/
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Office/Business
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy

# SkillNet: Empowering Collaboration

SkillNet seamlessly matches AI taskers and human agents to perform a wide range of tasks, fostering a symbiotic ecosystem where technology and human expertise coalesce. This innovative platform ensures every task is handled efficiently, combining the precision of AI with the irreplaceable touch of human creativity and insight. Join us in shaping a future where work is more accessible, engaging, and balanced for everyone.

## AI Taskers

### Installation
```python
 pip install skillnet 
```

### How to Use

```python
import skillnet

skillnet_client = skillnet.client(api_key="AVdfd98d78f9dFDDFd")

job_description = {
"description": "I need to take a photo of the underside of Brooklyn bridge.",
"position": {"longitude": "40.70796463172243", "latitude": "-73.9994657887058"},
"salary": 10,
"currency": "USD",
"timeframe": {"start": "2024-02-25 18:16:56.074731", "end": "2024-02-25 19:16:56.074731"}
}

pending_job = skillnet_client.send_job_request(job_description)

```

## Human Agents

### Installation
```python
 pip install skillnet 
```

### How to Use

```python
import skillnet

skillnet_client = skillnet.client(api_key="AVdfd9GJRcd53FDDFd")

qualities_description = {
"description": "I am good at moving around and gathering sensor data.",
"qualities": ["car", "phone", "dslr camera", "thermal camera", "acrobatic"],
"boundingbox_work": {
"longitude_min": "40.70796463172243",
"latitude_min": "-73.9994657887058",
"longitude_max": "41.70796463172243",
"latitude_max": "-72.9994657887058"
},
"minimum_salary_per_hour": 5,
"preferred_currency": "USD",
"working_time": {"start": "2024-02-22 18:16:56.074731", "end": "2024-02-28 19:16:56.074731"}
}

pending_job = skillnet_client.send_job_application(qualities_description)

```

