Metadata-Version: 1.1
Name: pug
Version: 0.0.1
Summary: UNKNOWN
Home-page: https://github.com/hobsonlane/pug
Author: Hobson Lane
Author-email: hobson@totalgood.com
License: UNKNOWN
Download-URL: https://github.com/hobsonlane/pug/archive/pug-0.0.1.tar.gz
Description: # Python User Group talk on Data Science
        
        ---
        
        # Tips
        
        1. Do things manually the first time
            
          a. Remind yourself, "This is productive EDA" not repetitive, mind-numbing Microsoft wrestling
        
          b. You'll know your data and databases better when your done
        
          c. You may discover things you didn't expect
        
        2. Dump scripts from ipython history command before exiting each session
        
            #/usr/bin/env python
            #~/src/pug/bin/save_hist
            ip = get_ipython()
            this_line = list(ip.history_manager.get_tail())[-1][1]
            ip.magic(u'save -r test.py 0-%d' % this_line - 1)
            ip.exit
        
        ---
        
        Dump bash commands using `history` or 
        
        ---
        
        # Modules/Files
        
        * nlp.db -- interracting with databases and migrating data
        * nlp.util -- format numbers & dates, importing of "pivots" in spreadsheets
        * nlp.strutil -- reformatting of strings
Keywords: agent,bot,ai,crawl,data,science,data science,math,machine-learning,statistics,database
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Database :: Front-Ends
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
