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

Added distutils files #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# file GENERATED by distutils, do NOT edit
README
alchemyapi.py
setup.py
35 changes: 35 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# alchemyapi_python #

A sdk for AlchemyAPI using Python


## AlchemyAPI ##

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.

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.

More information at: http://www.alchemyapi.com



## API Key ##

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



## Getting Started with the Python SDK ##

To get started and run the example, simply:

git clone https://github.com/AlchemyAPI/alchemyapi_python.git
cd alchemyapi_python
python alchemyapi.py YOUR_API_KEY
python example.py


Just replace YOUR_API_KEY with your 40 character API key from AlchemyAPI, and you should be good to go.



9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
from distutils.core import setup

setup(name='AlchemyAPI',
version='1.0',
description='AlchemyAPI Python bindings',
author='AlchemyAPI',
url='https://github.com/AlchemyAPI/alchemyapi_python',
author_email='support@alchemyapi.com',
py_modules=['alchemyapi'])