X Tutup
Skip to content
This repository was archived by the owner on Oct 30, 2018. It is now read-only.

Commit 3affdea

Browse files
AndresOsinskisjhewitt
authored andcommitted
Added distutils files
1 parent c97a335 commit 3affdea

File tree

3 files changed

+48
-0
lines changed

3 files changed

+48
-0
lines changed

MANIFEST

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# file GENERATED by distutils, do NOT edit
2+
README
3+
alchemyapi.py
4+
setup.py

README

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# alchemyapi_python #
2+
3+
A sdk for AlchemyAPI using Python
4+
5+
6+
## AlchemyAPI ##
7+
8+
AlchemyAPI offers artificial intelligence as a service. We teach computers to learn how to read and see, and apply our technology to text analysis and image recognition through a cloud-based API. Our customers use AlchemyAPI to transform their unstructured content such as blog posts, news articles, social media posts and images into much more useful structured data.
9+
10+
AlchemyAPI is a tech startup located in downtown Denver, Colorado. As the world’s most popular text analysis service, AlchemyAPI serves over 3.5 billion monthly API requests to over 35,000 developers. To enable our services, we use artificial intelligence, machine learning, neural networks, natural language processing and massive-scale web crawling. Our technology powers use cases in a variety of industry verticals, including social media monitoring, business intelligence, content recommendations, financial trading and targeted advertising.
11+
12+
More information at: http://www.alchemyapi.com
13+
14+
15+
16+
## API Key ##
17+
18+
To use AlchemyAPI, you'll need to obtain an API key and attach that key to all requests. If you do not already have a key, please visit: http://www.alchemyapi.com/api/register.html
19+
20+
21+
22+
## Getting Started with the Python SDK ##
23+
24+
To get started and run the example, simply:
25+
26+
git clone https://github.com/AlchemyAPI/alchemyapi_python.git
27+
cd alchemyapi_python
28+
python alchemyapi.py YOUR_API_KEY
29+
python example.py
30+
31+
32+
Just replace YOUR_API_KEY with your 40 character API key from AlchemyAPI, and you should be good to go.
33+
34+
35+

setup.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
from distutils.core import setup
2+
3+
setup(name='AlchemyAPI',
4+
version='1.0',
5+
description='AlchemyAPI Python bindings',
6+
author='AlchemyAPI',
7+
url='https://github.com/AlchemyAPI/alchemyapi_python',
8+
author_email='support@alchemyapi.com',
9+
py_modules=['alchemyapi'])

0 commit comments

Comments
 (0)
X Tutup